ITicketStore.RenewAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
RenewAsync(String, AuthenticationTicket) |
Indica al almacén que se debe actualizar la identidad especificada. |
RenewAsync(String, AuthenticationTicket, CancellationToken) |
Indica al almacén que se debe actualizar la identidad especificada. |
RenewAsync(String, AuthenticationTicket, HttpContext, CancellationToken) |
Indica al almacén que se debe actualizar la identidad especificada. |
RenewAsync(String, AuthenticationTicket)
- Source:
- ITicketStore.cs
Indica al almacén que se debe actualizar la identidad especificada.
public:
System::Threading::Tasks::Task ^ RenewAsync(System::String ^ key, Microsoft::AspNetCore::Authentication::AuthenticationTicket ^ ticket);
public System.Threading.Tasks.Task RenewAsync (string key, Microsoft.AspNetCore.Authentication.AuthenticationTicket ticket);
abstract member RenewAsync : string * Microsoft.AspNetCore.Authentication.AuthenticationTicket -> System.Threading.Tasks.Task
Public Function RenewAsync (key As String, ticket As AuthenticationTicket) As Task
Parámetros
- key
- String
- ticket
- AuthenticationTicket
Devoluciones
Se aplica a
RenewAsync(String, AuthenticationTicket, CancellationToken)
- Source:
- ITicketStore.cs
Indica al almacén que se debe actualizar la identidad especificada.
public virtual System.Threading.Tasks.Task RenewAsync (string key, Microsoft.AspNetCore.Authentication.AuthenticationTicket ticket, System.Threading.CancellationToken cancellationToken);
abstract member RenewAsync : string * Microsoft.AspNetCore.Authentication.AuthenticationTicket * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.RenewAsync : string * Microsoft.AspNetCore.Authentication.AuthenticationTicket * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function RenewAsync (key As String, ticket As AuthenticationTicket, cancellationToken As CancellationToken) As Task
Parámetros
- key
- String
- ticket
- AuthenticationTicket
- cancellationToken
- CancellationToken
El objeto CancellationToken que se usa para propagar notificaciones de que se debe cancelar la operación.
Devoluciones
Se aplica a
RenewAsync(String, AuthenticationTicket, HttpContext, CancellationToken)
- Source:
- ITicketStore.cs
Indica al almacén que se debe actualizar la identidad especificada.
public virtual System.Threading.Tasks.Task RenewAsync (string key, Microsoft.AspNetCore.Authentication.AuthenticationTicket ticket, Microsoft.AspNetCore.Http.HttpContext httpContext, System.Threading.CancellationToken cancellationToken);
abstract member RenewAsync : string * Microsoft.AspNetCore.Authentication.AuthenticationTicket * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.RenewAsync : string * Microsoft.AspNetCore.Authentication.AuthenticationTicket * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function RenewAsync (key As String, ticket As AuthenticationTicket, httpContext As HttpContext, cancellationToken As CancellationToken) As Task
Parámetros
- key
- String
- ticket
- AuthenticationTicket
- httpContext
- HttpContext
- cancellationToken
- CancellationToken
El objeto CancellationToken que se usa para propagar notificaciones de que se debe cancelar la operación.