次の方法で共有


UserAuthenticationOperation.Completed プロパティ

定義

操作の完了時に呼び出されるハンドラーを取得または設定します。

Note

Windows 10以上の開発を行う場合は、代わりに Windows.Security.Authentication.Web.Core API を使用してください。 詳細については、「 Web アカウント マネージャー」を参照してください。

AsyncOperationCompletedHandler<UserIdentity> Completed();

void Completed(AsyncOperationCompletedHandler<UserIdentity> handler);
public AsyncOperationCompletedHandler<UserIdentity> Completed { get; set; }
var asyncOperationCompletedHandler = userAuthenticationOperation.completed;
userAuthenticationOperation.completed = asyncOperationCompletedHandler;
Public Property Completed As AsyncOperationCompletedHandler(Of UserIdentity)

プロパティ値

操作の完了時に呼び出されるメソッドまたは関数。

実装

適用対象