This documentation is archived and is not being maintained.
StateManagedCollection Methods
Visual Studio 2010
The StateManagedCollection type exposes the following members.
| Name | Description | |
|---|---|---|
|
Clear | Removes all items from the StateManagedCollection collection. |
|
CopyTo | Copies the elements of the StateManagedCollection collection to an array, starting at a particular array index. |
|
CreateKnownType | When overridden in a derived class, creates an instance of a class that implements IStateManager. The type of object created is based on the specified member of the collection returned by the GetKnownTypes method. |
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetEnumerator | Returns an iterator that iterates through the StateManagedCollection collection. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetKnownTypes | When overridden in a derived class, gets an array of IStateManager types that the StateManagedCollection collection can contain. |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
OnClear | When overridden in a derived class, performs additional work before the Clear method removes all items from the collection. |
|
OnClearComplete | When overridden in a derived class, performs additional work after the Clear method finishes removing all items from the collection. |
|
OnInsert | When overridden in a derived class, performs additional work before the Insert(Int32, Object) or Add(Object) method adds an item to the collection. |
|
OnInsertComplete | When overridden in a derived class, performs additional work after the Insert(Int32, Object) or Add(Object) method adds an item to the collection. |
|
OnRemove | When overridden in a derived class, performs additional work before the Remove(Object) or RemoveAt(Int32) method removes the specified item from the collection. |
|
OnRemoveComplete | When overridden in a derived class, performs additional work after the Remove(Object) or RemoveAt(Int32) method removes the specified item from the collection. |
|
OnValidate | When overridden in a derived class, validates an element of the StateManagedCollection collection. |
|
SetDirty | Forces the entire StateManagedCollection collection to be serialized into view state. |
|
SetDirtyObject | When overridden in a derived class, instructs an object contained by the collection to record its entire state to view state, rather than recording only change information. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
|
IEnumerable::GetEnumerator | Infrastructure. Returns an iterator that iterates through the StateManagedCollection collection. |
|
IList::Add | Adds an item to the StateManagedCollection collection. |
|
IList::Clear | Infrastructure. Removes all items from the StateManagedCollection collection. |
|
IList::Contains | Determines whether the StateManagedCollection collection contains a specific value. |
|
IList::IndexOf | Determines the index of a specified item in the StateManagedCollection collection. |
|
IList::Insert | Inserts an item into the StateManagedCollection collection at the specified index. |
|
IList::Remove | Removes the first occurrence of the specified object from the StateManagedCollection collection. |
|
IList::RemoveAt | Removes the IStateManager element at the specified index. |
|
IStateManager::LoadViewState | Restores the previously saved view state of the StateManagedCollection collection and the IStateManager items it contains. |
|
IStateManager::SaveViewState | Saves the changes to the StateManagedCollection collection and each IStateManager object it contains since the time the page was posted back to the server. |
|
IStateManager::TrackViewState | Causes the StateManagedCollection collection and each of the IStateManager objects it contains to track changes to their view state so they can be persisted across requests for the same page. |
Show: