| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<IAuthenticationResult> |
IClientApplicationBase.acquireToken(AuthorizationCodeParameters parameters)
Acquires security token from the authority using an authorization code previously received.
|
CompletableFuture<IAuthenticationResult> |
ConfidentialClientApplication.acquireToken(ClientCredentialParameters parameters) |
CompletableFuture<IAuthenticationResult> |
IConfidentialClientApplication.acquireToken(ClientCredentialParameters parameters)
Acquires tokens from the authority configured in the application, for the confidential client
itself
|
CompletableFuture<IAuthenticationResult> |
IPublicClientApplication.acquireToken(DeviceCodeFlowParameters parameters)
Acquires security token from the authority using an device code flow.
|
CompletableFuture<IAuthenticationResult> |
PublicClientApplication.acquireToken(DeviceCodeFlowParameters parameters) |
CompletableFuture<IAuthenticationResult> |
IPublicClientApplication.acquireToken(IntegratedWindowsAuthenticationParameters parameters)
Acquires tokens from the authority configured in the application via Integrated Windows Authentication.
|
CompletableFuture<IAuthenticationResult> |
PublicClientApplication.acquireToken(IntegratedWindowsAuthenticationParameters parameters) |
CompletableFuture<IAuthenticationResult> |
ConfidentialClientApplication.acquireToken(OnBehalfOfParameters parameters) |
CompletableFuture<IAuthenticationResult> |
IConfidentialClientApplication.acquireToken(OnBehalfOfParameters parameters)
Acquires an access token for this application (usually a Web API) from the authority configured
in the application, in order to access another downstream protected Web API on behalf of a user
using the On-Behalf-Of flow.
|
CompletableFuture<IAuthenticationResult> |
IClientApplicationBase.acquireToken(RefreshTokenParameters parameters)
Acquires a security token from the authority using a refresh token previously received.
|
CompletableFuture<IAuthenticationResult> |
IPublicClientApplication.acquireToken(UserNamePasswordParameters parameters)
Acquires tokens from the authority configured in the application via Username/Password authentication.
|
CompletableFuture<IAuthenticationResult> |
PublicClientApplication.acquireToken(UserNamePasswordParameters parameters) |
CompletableFuture<IAuthenticationResult> |
IClientApplicationBase.acquireTokenSilently(SilentParameters parameters)
Returns tokens from cache if present and not expired or acquires new tokens from the authority
by using the refresh token present in cache.
|
Copyright © 2013–2019. All rights reserved.