pmMDA.NET

DataObjectImpl.ResetPaging Method 

[This is preliminary documentation and subject to change.]

Resets the data of the paged collection to the persistent state of this data object.

public virtual void ResetPaging();

Implements

IDataObject.ResetPaging

Remarks

This method is called by the pmMDA.NET framework. No need to call this method from your code.

Note to implementers:
Every paged indexed property must be reset by calling the IPagedCollection.ResetPaging method.
Example:

if (m_myManualPagedProperty is IPagedCollection)
{
  ((IPagedCollection) ${m_myManualPagedProperty}).ResetPaging();
}

Exceptions

Exception TypeCondition
PagingException The count of persistent items of at least one indexed property cannot be found.
- or -
The items of a paged collection could not be reloaded.
- or -
This data object has been modified by another transaction and an exception is thrown as a result. Note that this exception is only thrown in special cases. See the DefaultOwnerModifiedAction property for further information.

See Also

DataObjectImpl Class | PmMda.Net.Dog Namespace