Checks if Nonce value is valid.

Namespace: MonoSoftware.Web.Security
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
protected virtual bool IsValidNonce(
	string nonce
)
Visual Basic
Protected Overridable Function IsValidNonce ( 
	nonce As String
) As Boolean
Visual C++
protected:
virtual bool IsValidNonce(
	String^ nonce
)
F#
abstract IsValidNonce : 
        nonce : string -> bool 
override IsValidNonce : 
        nonce : string -> bool 

Parameters

nonce
Type: System..::..String
Nonce value.

Return Value

Type: Boolean
True if nonce is valid, false otherwise.

See Also