Microsoft.Identity.Client.Platforms.Android.Broker.AndroidAccountManagerBroker
namespace Microsoft.Identity.Client.Platforms.Android.Broker
{
internal class AndroidAccountManagerBroker : IBroker
{
public bool IsPopSupported { get; }
public AndroidAccountManagerBroker(CoreUIParent uiParent, ILoggerAdapter logger);
public bool IsBrokerInstalledAndInvokable(AuthorityType authorityType);
public Task<MsalTokenResponse> AcquireTokenInteractiveAsync(AuthenticationRequestParameters authenticationRequestParameters, AcquireTokenInteractiveParameters acquireTokenInteractiveParameters);
public Task<MsalTokenResponse> AcquireTokenSilentAsync(AuthenticationRequestParameters authenticationRequestParameters, AcquireTokenSilentParameters acquireTokenSilentParameters);
public void HandleInstallUrl(string appLink);
public Task<IReadOnlyList<IAccount>> GetAccountsAsync(string clientId, string redirectUri, AuthorityInfo authorityInfo, ICacheSessionManager cacheSessionManager, IInstanceDiscoveryManager instanceDiscoveryManager);
public Task RemoveAccountAsync(ApplicationConfiguration appConfig, IAccount account);
public Task InitiateBrokerHandshakeAsync();
public Task<MsalTokenResponse> AcquireTokenSilentDefaultUserAsync(AuthenticationRequestParameters authenticationRequestParameters, AcquireTokenSilentParameters acquireTokenSilentParameters);
public Task<MsalTokenResponse> AcquireTokenByUsernamePasswordAsync(AuthenticationRequestParameters authenticationRequestParameters, AcquireTokenByUsernamePasswordParameters acquireTokenByUsernamePasswordParameters);
public IReadOnlyDictionary<string, string> GetSsoPolicyHeaders();
}
}