Share via


Nonce Constructors

Definition

Overloads

Nonce()

Initializes a new instance of the Nonce class.

Nonce(Nullable<Boolean>, String)

Initializes a new instance of the Nonce class.

Nonce()

Initializes a new instance of the Nonce class.

public Nonce ();
Public Sub New ()

Applies to

Nonce(Nullable<Boolean>, String)

Initializes a new instance of the Nonce class.

public Nonce (bool? validateNonce = default, string nonceExpirationInterval = default);
new Microsoft.Azure.Management.WebSites.Models.Nonce : Nullable<bool> * string -> Microsoft.Azure.Management.WebSites.Models.Nonce
Public Sub New (Optional validateNonce As Nullable(Of Boolean) = Nothing, Optional nonceExpirationInterval As String = Nothing)

Parameters

validateNonce
Nullable<Boolean>

<code>false</code> if the nonce should not be validated while completing the login flow; otherwise, <code>true</code>.

nonceExpirationInterval
String

The time after the request is made when the nonce should expire.

Applies to