RoleManager<TRole>.ValidateRoleAsync(TRole) Method

Definition

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

protected:
 virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ ValidateRoleAsync(TRole role);
protected virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> ValidateRoleAsync (TRole role);
abstract member ValidateRoleAsync : 'Role -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.ValidateRoleAsync : 'Role -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Protected Overridable Function ValidateRoleAsync (role As TRole) As Task(Of IdentityResult)

Parameters

role
TRole

The role

Returns

A IdentityResult representing whether validation was successful.

Applies to