ISessionStateItemCollection.Remove(String) 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.
Deletes an item from the collection.
public:
void Remove(System::String ^ name);
public void Remove (string name);
abstract member Remove : string -> unit
Public Sub Remove (name As String)
Parameters
- name
- String
The name of the item to delete from the collection.
Examples
The following code example shows an implementation of the Remove method. For an example of a complete implementation of the ISessionStateItemCollection interface, see the example provided in the ISessionStateItemCollection interface overview.
public void Remove(string name)
{
pItems.Remove(name);
pDirty = true;
}
Public Sub Remove(name As String) Implements ISessionStateItemCollection.Remove
pItems.Remove(name)
pDirty = True
End Sub
Remarks
In implementing the Remove method, you should set the Dirty property to true
to indicate values in the ISessionStateItemCollection implementation have been modified.
If the ISessionStateItemCollection implementation does not contain an element with the specified name
, the collection should remain unchanged and no exception be thrown.