UserManager<TUser>.AddClaimAsync(TUser, Claim) 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.
Adds the specified claim
to the user
.
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ AddClaimAsync(TUser user, System::Security::Claims::Claim ^ claim);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> AddClaimAsync (TUser user, System.Security.Claims.Claim claim);
abstract member AddClaimAsync : 'User * System.Security.Claims.Claim -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.AddClaimAsync : 'User * System.Security.Claims.Claim -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function AddClaimAsync (user As TUser, claim As Claim) As Task(Of IdentityResult)
Parameters
- user
- TUser
The user to add the claim to.
- claim
- Claim
The claim to add.
Returns
The Task that represents the asynchronous operation, containing the IdentityResult of the operation.