UserManager<TUser>.ValidateUserAsync(TUser) Method
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.
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.