WebAuthenticationCoreManager.GetTokenSilentlyAsync メソッド

定義

オーバーロード

GetTokenSilentlyAsync(WebTokenRequest)

UI を表示せずにトークンの取得を非同期的に試みます。 ユーザーに資格情報の入力を求められることはありません。

GetTokenSilentlyAsync(WebTokenRequest, WebAccount)

UI を表示せずにトークンの取得を非同期的に試みます。 ユーザーに資格情報の入力を求められることはありません。

GetTokenSilentlyAsync(WebTokenRequest)

UI を表示せずにトークンの取得を非同期的に試みます。 ユーザーに資格情報の入力を求められることはありません。

public:
 static IAsyncOperation<WebTokenRequestResult ^> ^ GetTokenSilentlyAsync(WebTokenRequest ^ request);
/// [Windows.Foundation.Metadata.Overload("GetTokenSilentlyAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebTokenRequestResult> GetTokenSilentlyAsync(WebTokenRequest const& request);
[Windows.Foundation.Metadata.Overload("GetTokenSilentlyAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebTokenRequestResult> GetTokenSilentlyAsync(WebTokenRequest request);
function getTokenSilentlyAsync(request)
Public Shared Function GetTokenSilentlyAsync (request As WebTokenRequest) As IAsyncOperation(Of WebTokenRequestResult)

パラメーター

request
WebTokenRequest

Web トークン要求。

戻り値

非同期要求操作。 正常に完了すると、Web トークン要求の結果を表す WebTokenRequestResult オブジェクトが含まれます。

属性

注釈

RequestTokenAsync とは異なり、バックグラウンド スレッドからこのメソッドを呼び出すこともできます。

こちらもご覧ください

適用対象

GetTokenSilentlyAsync(WebTokenRequest, WebAccount)

UI を表示せずにトークンの取得を非同期的に試みます。 ユーザーに資格情報の入力を求められることはありません。

public:
 static IAsyncOperation<WebTokenRequestResult ^> ^ GetTokenSilentlyAsync(WebTokenRequest ^ request, WebAccount ^ webAccount);
/// [Windows.Foundation.Metadata.Overload("GetTokenSilentlyWithWebAccountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebTokenRequestResult> GetTokenSilentlyAsync(WebTokenRequest const& request, WebAccount const& webAccount);
[Windows.Foundation.Metadata.Overload("GetTokenSilentlyWithWebAccountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebTokenRequestResult> GetTokenSilentlyAsync(WebTokenRequest request, WebAccount webAccount);
function getTokenSilentlyAsync(request, webAccount)
Public Shared Function GetTokenSilentlyAsync (request As WebTokenRequest, webAccount As WebAccount) As IAsyncOperation(Of WebTokenRequestResult)

パラメーター

request
WebTokenRequest

Web トークン要求。

webAccount
WebAccount

Web アカウント。

戻り値

非同期要求操作。 正常に完了すると、Web トークン要求の結果を表す WebTokenRequestResult オブジェクトが含まれます。

属性

こちらもご覧ください

適用対象