你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
IAuthenticator.Authenticate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Authenticate(AuthenticationParameters) |
Apply this authenticator to the given authentication parameters |
Authenticate(AuthenticationParameters, CancellationToken) |
Apply this authenticator to the given authentication parameters |
Authenticate(AuthenticationParameters)
Apply this authenticator to the given authentication parameters
public System.Threading.Tasks.Task<Microsoft.Azure.Commands.Common.Authentication.IAccessToken> Authenticate (Microsoft.Azure.Commands.Common.Authentication.AuthenticationParameters parameters);
abstract member Authenticate : Microsoft.Azure.Commands.Common.Authentication.AuthenticationParameters -> System.Threading.Tasks.Task<Microsoft.Azure.Commands.Common.Authentication.IAccessToken>
Public Function Authenticate (parameters As AuthenticationParameters) As Task(Of IAccessToken)
Parameters
- parameters
- AuthenticationParameters
The complex object containing authentication specific information (e.g., tenant, token cache, etc.)
Returns
Applies to
Authenticate(AuthenticationParameters, CancellationToken)
Apply this authenticator to the given authentication parameters
public System.Threading.Tasks.Task<Microsoft.Azure.Commands.Common.Authentication.IAccessToken> Authenticate (Microsoft.Azure.Commands.Common.Authentication.AuthenticationParameters parameters, System.Threading.CancellationToken cancellationToken);
abstract member Authenticate : Microsoft.Azure.Commands.Common.Authentication.AuthenticationParameters * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Commands.Common.Authentication.IAccessToken>
Public Function Authenticate (parameters As AuthenticationParameters, cancellationToken As CancellationToken) As Task(Of IAccessToken)
Parameters
- parameters
- AuthenticationParameters
The complex object containing authentication specific information (e.g., tenant, token cache, etc.)
- cancellationToken
- CancellationToken
The cancellation token provided from the cmdlet to halt authentication.