Share via


TokenStore Constructors

Definition

Overloads

TokenStore()

Initializes a new instance of the TokenStore class.

TokenStore(Nullable<Boolean>, Nullable<Double>, FileSystemTokenStore, BlobStorageTokenStore)

Initializes a new instance of the TokenStore class.

TokenStore()

Initializes a new instance of the TokenStore class.

public TokenStore ();
Public Sub New ()

Applies to

TokenStore(Nullable<Boolean>, Nullable<Double>, FileSystemTokenStore, BlobStorageTokenStore)

Initializes a new instance of the TokenStore class.

public TokenStore (bool? enabled = default, double? tokenRefreshExtensionHours = default, Microsoft.Azure.Management.WebSites.Models.FileSystemTokenStore fileSystem = default, Microsoft.Azure.Management.WebSites.Models.BlobStorageTokenStore azureBlobStorage = default);
new Microsoft.Azure.Management.WebSites.Models.TokenStore : Nullable<bool> * Nullable<double> * Microsoft.Azure.Management.WebSites.Models.FileSystemTokenStore * Microsoft.Azure.Management.WebSites.Models.BlobStorageTokenStore -> Microsoft.Azure.Management.WebSites.Models.TokenStore
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional tokenRefreshExtensionHours As Nullable(Of Double) = Nothing, Optional fileSystem As FileSystemTokenStore = Nothing, Optional azureBlobStorage As BlobStorageTokenStore = Nothing)

Parameters

enabled
Nullable<Boolean>

<code>true</code> to durably store platform-specific security tokens that are obtained during login flows; otherwise, <code>false</code>. The default is <code>false</code>.

tokenRefreshExtensionHours
Nullable<Double>

The number of hours after session token expiration that a session token can be used to call the token refresh API. The default is 72 hours.

fileSystem
FileSystemTokenStore

The configuration settings of the storage of the tokens if a file system is used.

azureBlobStorage
BlobStorageTokenStore

The configuration settings of the storage of the tokens if blob storage is used.

Applies to