UserManager<TUser>.SetLockoutEndDateAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Blocca un utente fino al superamento della data di fine specificata. L'impostazione di una data di fine nel passato sblocca immediatamente un utente.
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ SetLockoutEndDateAsync(TUser user, Nullable<DateTimeOffset> lockoutEnd);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> SetLockoutEndDateAsync (TUser user, DateTimeOffset? lockoutEnd);
abstract member SetLockoutEndDateAsync : 'User * Nullable<DateTimeOffset> -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.SetLockoutEndDateAsync : 'User * Nullable<DateTimeOffset> -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function SetLockoutEndDateAsync (user As TUser, lockoutEnd As Nullable(Of DateTimeOffset)) As Task(Of IdentityResult)
Parametri
- user
- TUser
L'utente la cui data di blocco deve essere impostata.
- lockoutEnd
- Nullable<DateTimeOffset>
Oggetto DateTimeOffset dopo il quale il user
blocco dell'oggetto deve terminare.
Restituisce
Oggetto Task che rappresenta l'operazione asincrona contenente l'oggetto IdentityResult dell'operazione.