Syntax

C#
public class ARPager

The type exposes the following members.

Public Constructors

  NameDescription
Public methodARPagerARPagerNew

Public Methods

  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetEnumerator (Overrides AbstractPage..::GetEnumerator()().)
Public methodGetHashCode
Serves as a hash function for a particular type. GetHashCode()() is suitable for use in hashing algorithms and data structures like a hash table.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasPage
Checks whether the specified page exists. Useful for Google-like pagination.
(Inherited from AbstractPage.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)

Protected Methods

  NameDescription
Protected methodCalculatePaginationInfo
Calculate the values of all properties based on the specified parameters
(Inherited from AbstractPage.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)

Public Properties

  NameDescription
Public propertyCurrentIndex
The index this page represents
(Inherited from AbstractPage.)
Public propertyFirstIndex
The first index
(Inherited from AbstractPage.)
Public propertyFirstItem
The first element (index + 1)
(Inherited from AbstractPage.)
Public propertyHasFirst
Returns true if a first page exists
(Inherited from AbstractPage.)
Public propertyHasLast
Returns true if a last page exists
(Inherited from AbstractPage.)
Public propertyHasNext
Returns true if a next page is accessible from this page
(Inherited from AbstractPage.)
Public propertyHasPrevious
Returns true if a previous page is accessible from this page
(Inherited from AbstractPage.)
Public propertyLastIndex
The last index available on the set
(Inherited from AbstractPage.)
Public propertyLastItem
The last element in the page (count)
(Inherited from AbstractPage.)
Public propertyNextIndex
The next index (from this page)
(Inherited from AbstractPage.)
Public propertyPageSize
Gets the size of the page.
(Inherited from AbstractPage.)
Public propertyPreviousIndex
The previous index (from this page)
(Inherited from AbstractPage.)
Public propertyTotalItems
The count of all elements on the set
(Inherited from AbstractPage.)

See Also