ITicketStore.RetrieveAsync Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
RetrieveAsync(String) |
Pobiera tożsamość z magazynu dla danego klucza. |
RetrieveAsync(String, CancellationToken) |
Pobiera tożsamość z magazynu dla danego klucza. |
RetrieveAsync(String, HttpContext, CancellationToken) |
Pobiera tożsamość z magazynu dla danego klucza. |
RetrieveAsync(String)
- Źródło:
- ITicketStore.cs
Pobiera tożsamość z magazynu dla danego klucza.
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)
Parametry
- key
- String
Klucz skojarzony z tożsamością.
Zwraca
Tożsamość skojarzona z danym kluczem lub null
jeśli nie zostanie znaleziona.
Dotyczy
RetrieveAsync(String, CancellationToken)
- Źródło:
- ITicketStore.cs
Pobiera tożsamość z magazynu dla danego klucza.
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)
Parametry
- key
- String
Klucz skojarzony z tożsamością.
- cancellationToken
- CancellationToken
Używane CancellationToken do propagowania powiadomień, które należy anulować operacji.
Zwraca
Tożsamość skojarzona z danym kluczem lub null
jeśli nie zostanie znaleziona.
Dotyczy
RetrieveAsync(String, HttpContext, CancellationToken)
- Źródło:
- ITicketStore.cs
Pobiera tożsamość z magazynu dla danego klucza.
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)
Parametry
- key
- String
Klucz skojarzony z tożsamością.
- httpContext
- HttpContext
Element HttpContext skojarzony z bieżącym żądaniem.
- cancellationToken
- CancellationToken
Używane CancellationToken do propagowania powiadomień, które należy anulować operacji.
Zwraca
Tożsamość skojarzona z danym kluczem lub null
jeśli nie zostanie znaleziona.