AuthenticationContext.AcquireTokenAsync Method (String, ClientAssertionCertificate)

 

Applies to: Version: 2.19.208020213, Platform: .NET Desktop.

Acquires security token from the authority.

Namespace:   Microsoft.IdentityModel.Clients.ActiveDirectory
Assembly:  Microsoft.IdentityModel.Clients.ActiveDirectory (in Microsoft.IdentityModel.Clients.ActiveDirectory.dll)

Syntax

public Task<AuthenticationResult> AcquireTokenAsync(
    string resource,
    ClientAssertionCertificate clientCertificate
)

Parameters

  • resource
    Type: System.String

    Identifier of the target resource that is the recipient of the requested token.

Return Value

Type: System.Threading.Tasks.Task<AuthenticationResult>

It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.

See Also

AcquireTokenAsync Overload
AuthenticationContext Class
Microsoft.IdentityModel.Clients.ActiveDirectory Namespace

Return to top