The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
SessionStateItemExpireCallback Delegate
.NET Framework (current version)
Represents the method that handles the End event of a session-state module.
Assembly: System.Web (in System.Web.dll)
public delegate void SessionStateItemExpireCallback( String^ id, SessionStateStoreData^ item )
Parameters
- id
-
Type:
System::String^
The SessionID parameter of the session that is ending.
- item
-
Type:
System.Web.SessionState::SessionStateStoreData^
A SessionStateStoreData object containing the session-state data for the session that is ending.
The SessionStateItemExpireCallback delegate is used to enable a SessionStateStoreProviderBase implementation to call the Session_OnEnd event from the Global.asax file.
For more information, see the remarks provided for the SetItemExpireCallback method.
.NET Framework
Available since 2.0
Available since 2.0
Show: