ITicketStore.StoreAsync 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.
Overload
StoreAsync(AuthenticationTicket) |
Archiviare il ticket di identità e restituire la chiave associata. |
StoreAsync(AuthenticationTicket, CancellationToken) |
Archiviare il ticket di identità e restituire la chiave associata. |
StoreAsync(AuthenticationTicket, HttpContext, CancellationToken) |
Archiviare il ticket di identità e restituire la chiave associata. |
StoreAsync(AuthenticationTicket)
- Origine:
- ITicketStore.cs
Archiviare il ticket di identità e restituire la chiave associata.
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)
Parametri
- ticket
- AuthenticationTicket
Informazioni sull'identità da archiviare.
Restituisce
Chiave che può essere usata per recuperare l'identità in un secondo momento.
Si applica a
StoreAsync(AuthenticationTicket, CancellationToken)
- Origine:
- ITicketStore.cs
Archiviare il ticket di identità e restituire la chiave associata.
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)
Parametri
- ticket
- AuthenticationTicket
Informazioni sull'identità da archiviare.
- cancellationToken
- CancellationToken
Oggetto CancellationToken usato per propagare le notifiche di richiesta di annullamento dell'operazione.
Restituisce
Chiave che può essere usata per recuperare l'identità in un secondo momento.
Si applica a
StoreAsync(AuthenticationTicket, HttpContext, CancellationToken)
- Origine:
- ITicketStore.cs
Archiviare il ticket di identità e restituire la chiave associata.
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)
Parametri
- ticket
- AuthenticationTicket
Informazioni sull'identità da archiviare.
- httpContext
- HttpContext
Oggetto HttpContext associato alla richiesta corrente.
- cancellationToken
- CancellationToken
Oggetto CancellationToken usato per propagare le notifiche di richiesta di annullamento dell'operazione.
Restituisce
Chiave che può essere usata per recuperare l'identità in un secondo momento.