Share via


WebTokenResponse Constructors

Definition

Overloads

WebTokenResponse()

Initializes a new instance of the WebTokenResponse class.

WebTokenResponse(String)

Initializes a new instance of the WebTokenResponse class with one input.

WebTokenResponse(String, WebAccount)

Initializes a new instance of the WebTokenResponse class with two inputs.

WebTokenResponse(String, WebAccount, WebProviderError)

Initializes a new instance of the WebTokenResponse class with three inputs.

WebTokenResponse()

Initializes a new instance of the WebTokenResponse class.

public:
 WebTokenResponse();
 WebTokenResponse();
public WebTokenResponse();
function WebTokenResponse()
Public Sub New ()

See also

Applies to

WebTokenResponse(String)

Initializes a new instance of the WebTokenResponse class with one input.

public:
 WebTokenResponse(Platform::String ^ token);
 WebTokenResponse(winrt::hstring const& token);
public WebTokenResponse(string token);
function WebTokenResponse(token)
Public Sub New (token As String)

Parameters

token
String

Platform::String

winrt::hstring

The token.

See also

Applies to

WebTokenResponse(String, WebAccount)

Initializes a new instance of the WebTokenResponse class with two inputs.

public:
 WebTokenResponse(Platform::String ^ token, WebAccount ^ webAccount);
 WebTokenResponse(winrt::hstring const& token, WebAccount const& webAccount);
public WebTokenResponse(string token, WebAccount webAccount);
function WebTokenResponse(token, webAccount)
Public Sub New (token As String, webAccount As WebAccount)

Parameters

token
String

Platform::String

winrt::hstring

The token.

webAccount
WebAccount

The WebAccount.

See also

Applies to

WebTokenResponse(String, WebAccount, WebProviderError)

Initializes a new instance of the WebTokenResponse class with three inputs.

public:
 WebTokenResponse(Platform::String ^ token, WebAccount ^ webAccount, WebProviderError ^ error);
 WebTokenResponse(winrt::hstring const& token, WebAccount const& webAccount, WebProviderError const& error);
public WebTokenResponse(string token, WebAccount webAccount, WebProviderError error);
function WebTokenResponse(token, webAccount, error)
Public Sub New (token As String, webAccount As WebAccount, error As WebProviderError)

Parameters

token
String

Platform::String

winrt::hstring

The token.

webAccount
WebAccount

The WebAccount.

error
WebProviderError

The web provider error.

See also

Applies to