共用方式為


IWebAuthenticationCoreManagerInterop::RequestTokenWithWebAccountForWindowAsync 方法 (webauthenticationcoremanagerinterop.h)

以異步方式向 Web 帳戶提供者要求令牌。 如有必要,系統會提示使用者輸入其認證。

語法

HRESULT RequestTokenWithWebAccountForWindowAsync(
  HWND         appWindow,
  IInspectable *request,
  IInspectable *webAccount,
  REFIID       riid,
  void         **asyncInfo
);

參數

appWindow

類型: HWND

當視窗提示使用者輸入認證時,要用來作為窗口擁有者的視窗,以防需要這類視窗。

request

類型: IInspectable*

Web 令牌要求,指定為 WebTokenRequest 類別類型的實例,並轉換成 IInspectable 介面。

webAccount

類型: IInspectable*

要求的 Web 帳戶,指定為轉換成 IInspectable 介面之 WebAccount 類別類型的實例。

riid

類型: REFIID

必須參考介面 IAsyncOperation<WebTokenRequestResult> 的介面標識碼 (IID)

此 IID 會自動產生,您可以使用類似以下的程式代碼來取得它:

using winrt::Windows::Foundation::IAsyncOperation;
using winrt::Windows::Security::Authentication::Web::Core::WebTokenRequestResult;

constexpr winrt::guid iidAsyncRequestResult{ winrt::guid_of<IAsyncOperation<WebTokenRequestResult>>() };

asyncInfo

類型: void**

IAsyncOperation<WebTokenRequestResult> 指標的位址。 從這個方法成功傳回時,指標會設定為剛啟動要求作業的異步要求作業物件。

傳回值

類型: HRESULT

嘗試啟動異步要求作業的狀態代碼。

備註

這個方法相當於 WebAuthenticationCoreManager.RequestTokenAsync (WebTokenRequest、WebAccount) 桌面應用程式。

規格需求

需求
最低支援的用戶端 Windows 10 組建 20348
最低支援的伺服器 Windows 10 組建 20348
標頭 webauthenticationcoremanagerinterop.h

另請參閱