Microsoft.Identity.Client.AuthScheme.IAuthenticationOperation
Used to modify the experience depending on the type of token asked.
namespace Microsoft.Identity.Client.AuthScheme
{
public interface IAuthenticationOperation
{
int TelemetryTokenType { get; }
string AuthorizationHeaderPrefix { get; }
string KeyId { get; }
string AccessTokenType { get; }
IReadOnlyDictionary<string, string> GetTokenRequestParams();
void FormatResult(AuthenticationResult authenticationResult);
}
}