ISessionStateItemCollection.Clear Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes all values and keys from the session-state collection.
public:
void Clear();
public void Clear ();
abstract member Clear : unit -> unit
Public Sub Clear ()
Examples
The following code example shows an implementation of the Clear method. For an example of a complete implementation of the ISessionStateItemCollection interface, see the example provided for the ISessionStateItemCollection interface overview.
public void Clear()
{
pItems.Clear();
pDirty = true;
}
Public Sub Clear() Implements ISessionStateItemCollection.Clear
pItems.Clear()
pDirty = True
End Sub
Remarks
In implementing the Clear method, you should set the Dirty property to true
to indicate that values in the ISessionStateItemCollection implementation have been modified.