RoleManager<TRole>.UpdateAsync(TRole) Method

Definition

Updates the specified role.

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

Parameters

role
TRole

The role to updated.

Returns

Task<IdentityResult>

The Task that represents the asynchronous operation, containing the IdentityResult for the update.

Applies to