ITicketStore.RetrieveAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
RetrieveAsync(String) |
Recupera uma identidade do repositório para a chave fornecida. |
RetrieveAsync(String, CancellationToken) |
Recupera uma identidade do repositório para a chave fornecida. |
RetrieveAsync(String, HttpContext, CancellationToken) |
Recupera uma identidade do repositório para a chave fornecida. |
RetrieveAsync(String)
- Origem:
- ITicketStore.cs
Recupera uma identidade do repositório para a chave fornecida.
public:
System::Threading::Tasks::Task<Microsoft::AspNetCore::Authentication::AuthenticationTicket ^> ^ RetrieveAsync(System::String ^ key);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket> RetrieveAsync (string key);
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket?> RetrieveAsync (string key);
abstract member RetrieveAsync : string -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
Public Function RetrieveAsync (key As String) As Task(Of AuthenticationTicket)
Parâmetros
- key
- String
A chave associada à identidade.
Retornos
A identidade associada à chave especificada ou null
, se não for encontrada.
Aplica-se a
RetrieveAsync(String, CancellationToken)
- Origem:
- ITicketStore.cs
Recupera uma identidade do repositório para a chave fornecida.
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket?> RetrieveAsync (string key, System.Threading.CancellationToken cancellationToken);
abstract member RetrieveAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
override this.RetrieveAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
Public Overridable Function RetrieveAsync (key As String, cancellationToken As CancellationToken) As Task(Of AuthenticationTicket)
Parâmetros
- key
- String
A chave associada à identidade.
- cancellationToken
- CancellationToken
O CancellationToken usado para propagar notificações de que a operação deve ser cancelada.
Retornos
A identidade associada à chave especificada ou null
, se não for encontrada.
Aplica-se a
RetrieveAsync(String, HttpContext, CancellationToken)
- Origem:
- ITicketStore.cs
Recupera uma identidade do repositório para a chave fornecida.
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket?> RetrieveAsync (string key, Microsoft.AspNetCore.Http.HttpContext httpContext, System.Threading.CancellationToken cancellationToken);
abstract member RetrieveAsync : string * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
override this.RetrieveAsync : string * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Authentication.AuthenticationTicket>
Public Overridable Function RetrieveAsync (key As String, httpContext As HttpContext, cancellationToken As CancellationToken) As Task(Of AuthenticationTicket)
Parâmetros
- key
- String
A chave associada à identidade.
- httpContext
- HttpContext
O HttpContext associado à solicitação atual.
- cancellationToken
- CancellationToken
O CancellationToken usado para propagar notificações de que a operação deve ser cancelada.
Retornos
A identidade associada à chave especificada ou null
, se não for encontrada.