TokenResponse Constructors

Definition

Overloads

TokenResponse()

Initializes a new instance of the TokenResponse class.

TokenResponse(String, String, String, String)

Initializes a new instance of the TokenResponse class.

TokenResponse()

Initializes a new instance of the TokenResponse class.

public TokenResponse ();
Public Sub New ()

Applies to

TokenResponse(String, String, String, String)

Initializes a new instance of the TokenResponse class.

public TokenResponse (string channelId = default, string connectionName = default, string token = default, string expiration = default);
new Microsoft.Bot.Schema.TokenResponse : string * string * string * string -> Microsoft.Bot.Schema.TokenResponse
Public Sub New (Optional channelId As String = Nothing, Optional connectionName As String = Nothing, Optional token As String = Nothing, Optional expiration As String = Nothing)

Parameters

channelId
String

The channel ID.

connectionName
String

The connection name.

token
String

The token.

expiration
String

The expiration.

Applies to