AuthenticationContext.AcquireToken Method (String, String, Uri)

 

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 AuthenticationResult AcquireToken(
    string resource,
    string clientId,
    Uri redirectUri
)

Parameters

  • resource
    Type: System.String

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

  • clientId
    Type: System.String

    Identifier of the client requesting the token.

  • redirectUri
    Type: System.Uri

    Address to return to upon receiving a response from the authority.

Return Value

Type: Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult

It contains Access Token, Refresh Token and the Access Token's expiration time.

See Also

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

Return to top