pmMDA.NET

PagingHelper Constructor 

[This is preliminary documentation and subject to change.]

Initializes a new instance of the PagingHelper class.

public PagingHelper(
   IDataObject owner,
   Type itemType,
   string fieldName,
   OwnerModifiedErrorDelegate errorCallback
);

Parameters

owner
The owner of the paged collections this helper is made for.
itemType
The type of items of the paged collections this helper is made for.
fieldName
The name of the field which represents the paged collection this helper is made for.
errorCallback
Represents a method which will be called if the owner was modified. It is allowed but not essential to throw a PagingException within that method. See the DefaultOwnerModifiedAction property for further information.

Exceptions

Exception Type Condition
ArgumentNullException owner is null.
- or -

itemType is null.
- or -
fieldName is null.
- or -
errorCallback is null.

See Also

PagingHelper Class | PmMda.Net.Dog.Paging Namespace