Share via


TokenStatus Constructors

Definition

Overloads

TokenStatus()

Initializes a new instance of the TokenStatus class.

TokenStatus(String, String, Nullable<Boolean>, String)

Initializes a new instance of the TokenStatus class.

TokenStatus()

Initializes a new instance of the TokenStatus class.

public TokenStatus ();
Public Sub New ()

Applies to

TokenStatus(String, String, Nullable<Boolean>, String)

Initializes a new instance of the TokenStatus class.

public TokenStatus (string channelId = default, string connectionName = default, bool? hasToken = default, string serviceProviderDisplayName = default);
new Microsoft.Bot.Schema.TokenStatus : string * string * Nullable<bool> * string -> Microsoft.Bot.Schema.TokenStatus
Public Sub New (Optional channelId As String = Nothing, Optional connectionName As String = Nothing, Optional hasToken As Nullable(Of Boolean) = Nothing, Optional serviceProviderDisplayName As String = Nothing)

Parameters

channelId
String

The channelId of the token status pertains to.

connectionName
String

The name of the connection the token status pertains to.

hasToken
Nullable<Boolean>

True if a token is stored for this ConnectionName.

serviceProviderDisplayName
String

The display name of the service provider for which this Token belongs to.

Applies to