Microsoft.Identity.Client.IClientApplicationBase
Details on the configuration of the ClientApplication for debugging purposes.
Gets the URL of the authority, or the security token service (STS) from which MSAL.NET will acquire security tokens.
The return value of this property is either the value provided by the developer in the constructor of the application, or otherwise
the value of the DefaultAuthority static member (that is https://login.microsoftonline.com/common/)
User token cache which holds ID tokens, access tokens, and refresh tokens for accounts. It's used
and updated silently if needed when calling AcquireTokenSilent
It is updated by each acquire token method, with the exception of AcquireTokenForClient which only uses the application
cache (see AppTokenCache).
Attempts to acquire an access token for the account from the user token cache,
with advanced parameters controlling the network call. See Acquire tokens silently.
Attempts to acquire an access token for the loginHint from the user token cache,
with advanced parameters controlling the network call. See Acquire tokens silently.
Get the IAccount by its identifier among the accounts available in the token cache and of the same
environment (authority host) as Authority.
Returns all the available IAccountaccounts in the user token cache for the application.
Only for Azure AD B2C scenarios, get the IAccount collection by its identifier
among the accounts available in the token cache based on the user flow.
Removes all tokens in the cache for the specified account.