UserAuthenticationOperation.Completed Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.