RoleManager<TRole>.ValidateRoleAsync(TRole) 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 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.