UserManager<TUser>.ValidateUserAsync(TUser) Method

Definition

Should return Success if validation is successful. This is called before saving the user via Create or Update.

protected:
 System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ ValidateUserAsync(TUser user);
protected System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> ValidateUserAsync (TUser user);
member this.ValidateUserAsync : 'User -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Protected Function ValidateUserAsync (user As TUser) As Task(Of IdentityResult)

Parameters

user
TUser

The user

Returns

A IdentityResult representing whether validation was successful.

Applies to