Table of Contents

Struct NewTokenAndFrequency

Namespace
Microsoft.WindowsAzure.Storage.Auth
Assembly
Microsoft.WindowsAzure.Storage.dll

This is the return type of RenewTokenFuncAsync. A new token and a new frequency is expected.

public struct NewTokenAndFrequency
Inherited Members

Constructors

NewTokenAndFrequency(string, TimeSpan?)

Create a new instance of NewTokenAndFrequency.

public NewTokenAndFrequency(string newToken, TimeSpan? newFrequency = null)

Parameters

newToken string

The new token credential.

newFrequency TimeSpan?

The new frequency to wait before calling RenewTokenFuncAsync again.

Properties

Frequency

The new frequency to wait before calling RenewTokenFuncAsync again.

public TimeSpan? Frequency { get; set; }

Property Value

TimeSpan?

Token

The new token credential.

public string Token { get; set; }

Property Value

string