共用方式為


RoleManager<TRole>.AddClaimAsync(TRole, Claim) 方法

定義

將宣告新增至角色。

public:
 virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ AddClaimAsync(TRole role, System::Security::Claims::Claim ^ claim);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> AddClaimAsync (TRole role, System.Security.Claims.Claim claim);
abstract member AddClaimAsync : 'Role * System.Security.Claims.Claim -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.AddClaimAsync : 'Role * System.Security.Claims.Claim -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function AddClaimAsync (role As TRole, claim As Claim) As Task(Of IdentityResult)

參數

role
TRole

要加入宣告的角色。

claim
Claim

要加入的宣告。

傳回

Task 表示非同步作業,包含 IdentityResult 作業的 。

適用於