ISessionIDManager.Validate Method (String)
.NET Framework (current version)
Confirms that the supplied session identifier is valid.
Assembly: System.Web (in System.Web.dll)
Parameters
- id
-
Type:
System.String
The session identifier to validate.
The Validate method verifies that the supplied id is a valid session identifier.
Your ISessionIDManager implementation should call the Validate method from the GetSessionID method when retrieving a session identifier from an HTTP request to ensure that the supplied session identifier is properly formatted.
The following code example implements the Validate method and ensures the session-identifier value is a valid Guid.
.NET Framework
Available since 2.0
Available since 2.0
Show: