SessionStateStoreProviderBase::RemoveItem Method (HttpContext^, String^, Object^, SessionStateStoreData^)
Deletes item data from the session data store.
Assembly: System.Web (in System.Web.dll)
public: virtual void RemoveItem( HttpContext^ context, String^ id, Object^ lockId, SessionStateStoreData^ item ) abstract
Parameters
- context
-
Type:
System.Web::HttpContext^
The HttpContext for the current request.
- id
-
Type:
System::String^
The session identifier for the current request.
- lockId
-
Type:
System::Object^
The lock identifier for the current request.
- item
-
Type:
System.Web.SessionState::SessionStateStoreData^
The SessionStateStoreData that represents the item to delete from the data store.
The SessionStateModule object calls the RemoveItem method at the end of a request, during the ReleaseRequestState event, to delete the data for a session item from the session data store if the Abandon method has been called. Only session data for the current application that matches the supplied session id and lockId values is deleted. For more information about locking and details about the lock identifier, see "Locking Session-Store Data" in the SessionStateStoreProviderBase class overview.
For an example of a session-state store provider implementation, see Implementing a Session-State Store Provider.
Available since 2.0