你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DeviceCodeCredential.Authenticate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Authenticate(CancellationToken) |
通过默认浏览器以交互方式对用户进行身份验证。 |
Authenticate(TokenRequestContext, CancellationToken) |
通过默认浏览器以交互方式对用户进行身份验证。 |
Authenticate(CancellationToken)
- Source:
- DeviceCodeCredential.cs
- Source:
- DeviceCodeCredential.cs
通过默认浏览器以交互方式对用户进行身份验证。
public virtual Azure.Identity.AuthenticationRecord Authenticate (System.Threading.CancellationToken cancellationToken = default);
abstract member Authenticate : System.Threading.CancellationToken -> Azure.Identity.AuthenticationRecord
override this.Authenticate : System.Threading.CancellationToken -> Azure.Identity.AuthenticationRecord
Public Overridable Function Authenticate (Optional cancellationToken As CancellationToken = Nothing) As AuthenticationRecord
参数
- cancellationToken
- CancellationToken
控制 CancellationToken 请求生存期的 。
返回
身份验证请求的结果,包含获取的 AccessToken和 AuthenticationRecord 可用于以无提示方式对帐户进行身份验证的 。
适用于
Authenticate(TokenRequestContext, CancellationToken)
- Source:
- DeviceCodeCredential.cs
- Source:
- DeviceCodeCredential.cs
通过默认浏览器以交互方式对用户进行身份验证。
public virtual Azure.Identity.AuthenticationRecord Authenticate (Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default);
abstract member Authenticate : Azure.Core.TokenRequestContext * System.Threading.CancellationToken -> Azure.Identity.AuthenticationRecord
override this.Authenticate : Azure.Core.TokenRequestContext * System.Threading.CancellationToken -> Azure.Identity.AuthenticationRecord
Public Overridable Function Authenticate (requestContext As TokenRequestContext, Optional cancellationToken As CancellationToken = Nothing) As AuthenticationRecord
参数
- requestContext
- TokenRequestContext
身份验证请求的详细信息。
- cancellationToken
- CancellationToken
控制 CancellationToken 请求生存期的 。
返回
AuthenticationRecord经过身份验证的帐户的 。