Freigeben über


ITicketStore.StoreAsync Methode

Definition

Überlädt

StoreAsync(AuthenticationTicket)

Speichern Sie das Identitätsticket, und geben Sie den zugeordneten Schlüssel zurück.

StoreAsync(AuthenticationTicket, CancellationToken)

Speichern Sie das Identitätsticket, und geben Sie den zugeordneten Schlüssel zurück.

StoreAsync(AuthenticationTicket, HttpContext, CancellationToken)

Speichern Sie das Identitätsticket, und geben Sie den zugeordneten Schlüssel zurück.

StoreAsync(AuthenticationTicket)

Quelle:
ITicketStore.cs

Speichern Sie das Identitätsticket, und geben Sie den zugeordneten Schlüssel zurück.

public:
 System::Threading::Tasks::Task<System::String ^> ^ StoreAsync(Microsoft::AspNetCore::Authentication::AuthenticationTicket ^ ticket);
public System.Threading.Tasks.Task<string> StoreAsync (Microsoft.AspNetCore.Authentication.AuthenticationTicket ticket);
abstract member StoreAsync : Microsoft.AspNetCore.Authentication.AuthenticationTicket -> System.Threading.Tasks.Task<string>
Public Function StoreAsync (ticket As AuthenticationTicket) As Task(Of String)

Parameter

ticket
AuthenticationTicket

Die zu speichernden Identitätsinformationen.

Gibt zurück

Der Schlüssel, mit dem die Identität später abgerufen werden kann.

Gilt für:

StoreAsync(AuthenticationTicket, CancellationToken)

Quelle:
ITicketStore.cs

Speichern Sie das Identitätsticket, und geben Sie den zugeordneten Schlüssel zurück.

public virtual System.Threading.Tasks.Task<string> StoreAsync (Microsoft.AspNetCore.Authentication.AuthenticationTicket ticket, System.Threading.CancellationToken cancellationToken);
abstract member StoreAsync : Microsoft.AspNetCore.Authentication.AuthenticationTicket * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.StoreAsync : Microsoft.AspNetCore.Authentication.AuthenticationTicket * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function StoreAsync (ticket As AuthenticationTicket, cancellationToken As CancellationToken) As Task(Of String)

Parameter

ticket
AuthenticationTicket

Die zu speichernden Identitätsinformationen.

cancellationToken
CancellationToken

Die CancellationToken-Struktur, mit der Benachrichtigungen verteilt werden, dass der Vorgang abgebrochen werden muss.

Gibt zurück

Der Schlüssel, mit dem die Identität später abgerufen werden kann.

Gilt für:

StoreAsync(AuthenticationTicket, HttpContext, CancellationToken)

Quelle:
ITicketStore.cs

Speichern Sie das Identitätsticket, und geben Sie den zugeordneten Schlüssel zurück.

public virtual System.Threading.Tasks.Task<string> StoreAsync (Microsoft.AspNetCore.Authentication.AuthenticationTicket ticket, Microsoft.AspNetCore.Http.HttpContext httpContext, System.Threading.CancellationToken cancellationToken);
abstract member StoreAsync : Microsoft.AspNetCore.Authentication.AuthenticationTicket * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
override this.StoreAsync : Microsoft.AspNetCore.Authentication.AuthenticationTicket * Microsoft.AspNetCore.Http.HttpContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Overridable Function StoreAsync (ticket As AuthenticationTicket, httpContext As HttpContext, cancellationToken As CancellationToken) As Task(Of String)

Parameter

ticket
AuthenticationTicket

Die zu speichernden Identitätsinformationen.

httpContext
HttpContext

Die HttpContext , die der aktuellen Anforderung zugeordnet ist.

cancellationToken
CancellationToken

Die CancellationToken-Struktur, mit der Benachrichtigungen verteilt werden, dass der Vorgang abgebrochen werden muss.

Gibt zurück

Der Schlüssel, mit dem die Identität später abgerufen werden kann.

Gilt für: