This repository was archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
AuthenticationResult
Mika Berglund edited this page Jan 31, 2021
·
1 revision
Container class for access tokens and identity tokens and related information. Returned by most of the methods on the BlazoradeMsalService service class.
| Name | Type | Description |
|---|---|---|
| Authority | string | The URI of the authority that issued the token. |
| UniqueId | string | The unique ID for the account. |
| TenantId | string | The ID of the tenant that issued the token. |
| TokenType | string | The type of token. Typically Bearer. |
| IdToken | string | The ID token. |
| IdTokenClaims | Dictionary<string, object> | The claims included in the IdToken. |
| AccessToken | string | The access token. |
| Scopes | List<string> | A list of scopes that are included in the access token. |
| ExpiresOn | DateTimeOffset | An expiration timestamp for the token. |
| Account | Account | The account represented by the ID token. |
| FromCache | bool | Specifies whether the token was acquired from cache. |