DeviceCodeCredential.AuthenticateAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
AuthenticateAsync(CancellationToken) |
Authentifiziert einen Benutzer interaktiv über den Standardbrowser. |
AuthenticateAsync(TokenRequestContext, CancellationToken) |
Authentifiziert einen Benutzer interaktiv über den Standardbrowser. |
AuthenticateAsync(CancellationToken)
- Quelle:
- DeviceCodeCredential.cs
- Quelle:
- DeviceCodeCredential.cs
Authentifiziert einen Benutzer interaktiv über den Standardbrowser.
public virtual System.Threading.Tasks.Task<Azure.Identity.AuthenticationRecord> AuthenticateAsync (System.Threading.CancellationToken cancellationToken = default);
abstract member AuthenticateAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Identity.AuthenticationRecord>
override this.AuthenticateAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Identity.AuthenticationRecord>
Public Overridable Function AuthenticateAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of AuthenticationRecord)
Parameter
- cancellationToken
- CancellationToken
Ein CancellationToken , der die Lebensdauer der Anforderung steuert.
Gibt zurück
Die AuthenticationRecord , die verwendet werden kann, um das Konto bei zukünftiger Ausführung von Anmeldeinformationen mithilfe desselben persistenten Tokencaches im Hintergrund zu authentifizieren.
Gilt für:
AuthenticateAsync(TokenRequestContext, CancellationToken)
- Quelle:
- DeviceCodeCredential.cs
- Quelle:
- DeviceCodeCredential.cs
Authentifiziert einen Benutzer interaktiv über den Standardbrowser.
public virtual System.Threading.Tasks.Task<Azure.Identity.AuthenticationRecord> AuthenticateAsync (Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default);
abstract member AuthenticateAsync : Azure.Core.TokenRequestContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Identity.AuthenticationRecord>
override this.AuthenticateAsync : Azure.Core.TokenRequestContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Identity.AuthenticationRecord>
Public Overridable Function AuthenticateAsync (requestContext As TokenRequestContext, Optional cancellationToken As CancellationToken = Nothing) As Task(Of AuthenticationRecord)
Parameter
- requestContext
- TokenRequestContext
Die Details der Authentifizierungsanforderung.
- cancellationToken
- CancellationToken
Ein CancellationToken , der die Lebensdauer der Anforderung steuert.
Gibt zurück
Die AuthenticationRecord des authentifizierten Kontos.
Gilt für:
Azure SDK for .NET