IsValidNonce Method

HttpServer.dll

determines if the nonce is valid or has expired.

Namespace:  HttpServer.Authentication
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
protected virtual bool IsValidNonce(
	string nonce
)
Visual Basic (Declaration)
Protected Overridable Function IsValidNonce ( _
	nonce As String _
) As Boolean
Visual C++
protected:
virtual bool IsValidNonce(
	String^ nonce
)

Parameters

nonce
Type: System..::.String
nonce value (check wikipedia for info)

Return Value

true if the nonce has not expired.

See Also