你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DeviceCodeCredential.AuthenticateAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AuthenticateAsync(CancellationToken) |
通过默认浏览器以交互方式对用户进行身份验证。 |
AuthenticateAsync(TokenRequestContext, CancellationToken) |
通过默认浏览器以交互方式对用户进行身份验证。 |
AuthenticateAsync(CancellationToken)
- Source:
- DeviceCodeCredential.cs
- Source:
- DeviceCodeCredential.cs
通过默认浏览器以交互方式对用户进行身份验证。
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)
参数
- cancellationToken
- CancellationToken
控制 CancellationToken 请求生存期的 。
返回
, AuthenticationRecord 可用于在将来使用相同的持久令牌缓存执行凭据时以无提示方式对帐户进行身份验证。
适用于
AuthenticateAsync(TokenRequestContext, CancellationToken)
- Source:
- DeviceCodeCredential.cs
- Source:
- DeviceCodeCredential.cs
通过默认浏览器以交互方式对用户进行身份验证。
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)
参数
- requestContext
- TokenRequestContext
身份验证请求的详细信息。
- cancellationToken
- CancellationToken
控制 CancellationToken 请求生存期的 。
返回
AuthenticationRecord经过身份验证的帐户的 。