pmMDA.NET

PagedListBase.Item Property

[This is preliminary documentation and subject to change.]

Gets or sets the item at a specified index.

public object this[
   int index
] {get; set;}

Parameters

index
The zero-based index of the item to get or set.

Implements

IList.Item

Remarks

This property provides the ability to access a specific item in this list by using the following syntax: myList[index].

Setting this property results in the same behaviour as removing the current item and inserting the new item at the specified index.

Exceptions

Exception TypeCondition
ArgumentOutOfRangeException Index is not a valid index in the paged list.
ArgumentException If this property is set and the value is not of type IDataObject.
PagingException If the item at the specified index could not be get or set.

See Also

PagedListBase Class | PmMda.Net.Dog.Paging Namespace