ISessionIDManager.Validate Method

Confirms that the supplied session identifier is valid.

Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)

bool Validate (
	String^ id
)
boolean Validate (
	String id
)
function Validate (
	id : String
) : boolean
Not applicable.

Parameters

id

The session identifier to validate.

Return Value

true if the session identifier is valid; otherwise, false.

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.

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: