pmMDA.NET

PagedListBase.Add Method 

[This is preliminary documentation and subject to change.]

Adds an value to the end of this list.

public int Add(
   object value
);

Parameters

value
The value to add to this list.

Return Value

The position into which the new value was inserted.

Implements

IList.Add

Remarks

Adding an item results in the same behaviour as inserting the value to the end of this list (myList.Insert(myList.Count, value);).

Exceptions

Exception Type Condition
ArgumentException The value is not of type IDataObject.
PagingException The value could not be added.

See Also

PagedListBase Class | PmMda.Net.Dog.Paging Namespace