Microsoft.Identity.Client.Extensibility.ExternalBoundTokenScheme
namespace Microsoft.Identity.Client.Extensibility
{
internal class ExternalBoundTokenScheme : IAuthenticationOperation2, IAuthenticationOperation
{
public int TelemetryTokenType { get; }
public string AuthorizationHeaderPrefix { get; }
public string KeyId { get; }
public string AccessTokenType { get; }
public ExternalBoundTokenScheme(string keyId, string expectedTokenTypeFromEsts = "Bearer");
public Task FormatResultAsync(AuthenticationResult authenticationResult, CancellationToken cancellationToken = default(CancellationToken));
public void FormatResult(AuthenticationResult authenticationResult);
public IReadOnlyDictionary<string, string> GetTokenRequestParams();
public Task<bool> ValidateCachedTokenAsync(MsalCacheValidationData cachedTokenData);
}
}