3 implementations of ValidateAsync
Microsoft.AspNetCore.Identity.Specification.Tests (1)
IdentitySpecificationTestBase.cs (1)
148public Task<IdentityResult> ValidateAsync(RoleManager<TRole> manager, TRole role)
Microsoft.AspNetCore.Identity.Test (1)
IdentityBuilderTest.cs (1)
368public Task<IdentityResult> ValidateAsync(RoleManager<PocoRole> manager, PocoRole role)
Microsoft.Extensions.Identity.Core (1)
RoleValidator.cs (1)
34public virtual async Task<IdentityResult> ValidateAsync(RoleManager<TRole> manager, TRole role)
1 reference to ValidateAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
402var result = await v.ValidateAsync(this, role).ConfigureAwait(false);