WebTokenResponse 构造函数

定义

重载

WebTokenResponse()

初始化 WebTokenResponse 类的新实例。

WebTokenResponse(String)

使用一个输入初始化 WebTokenResponse 类的新实例。

WebTokenResponse(String, WebAccount)

使用两个输入初始化 WebTokenResponse 类的新实例。

WebTokenResponse(String, WebAccount, WebProviderError)

使用三个输入初始化 WebTokenResponse 类的新实例。

WebTokenResponse()

初始化 WebTokenResponse 类的新实例。

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

另请参阅

适用于

WebTokenResponse(String)

使用一个输入初始化 WebTokenResponse 类的新实例。

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

参数

token
String

Platform::String

winrt::hstring

令牌。

另请参阅

适用于

WebTokenResponse(String, WebAccount)

使用两个输入初始化 WebTokenResponse 类的新实例。

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)

参数

token
String

Platform::String

winrt::hstring

令牌。

webAccount
WebAccount

WebAccount

另请参阅

适用于

WebTokenResponse(String, WebAccount, WebProviderError)

使用三个输入初始化 WebTokenResponse 类的新实例。

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)

参数

token
String

Platform::String

winrt::hstring

令牌。

webAccount
WebAccount

WebAccount

error
WebProviderError

Web 提供程序错误。

另请参阅

适用于