StateManagedCollection.SetDirtyObject Method
.NET Framework 2.0
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.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The SetDirtyObject method is called internally by the System.Web.UI.IStateManager.SaveViewState, System.Collections.IList.Add, and System.Collections.IList.Insert methods.
The following code example demonstrates how a strongly typed StateManagedCollection class implements the abstract SetDirtyObject method. The CycleCollection uses a StateBag object to store its view-state information, and simply delegates the call to the SetDirty method of the StateBag object. This code example is part of a larger example provided for the StateManagedCollection class.
Community Additions
ADD
Show: