UserAuthenticationOperation.Completed Property

Definition

Gets or sets a handler that's called when the operation completes.

Note

If you are developing for Windows 10 or greater, use the Windows.Security.Authentication.Web.Core APIs instead. For more information, see Web account manager.

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)

Property Value

The method or function that is called when the operation completes.

Implements

Applies to