TokenRequest Constructors

Definition

Overloads

TokenRequest()

Initializes a new instance of the TokenRequest class.

TokenRequest(String, IDictionary<String,Object>)

Initializes a new instance of the TokenRequest class.

TokenRequest()

Initializes a new instance of the TokenRequest class.

public TokenRequest ();
Public Sub New ()

Applies to

TokenRequest(String, IDictionary<String,Object>)

Initializes a new instance of the TokenRequest class.

public TokenRequest (string provider = default, System.Collections.Generic.IDictionary<string,object> settings = default);
new Microsoft.Bot.Schema.TokenRequest : string * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Bot.Schema.TokenRequest
Public Sub New (Optional provider As String = Nothing, Optional settings As IDictionary(Of String, Object) = Nothing)

Parameters

provider
String

The provider to request a user token from.

settings
IDictionary<String,Object>

A collection of settings for the specific provider for this request.

Applies to