Microsoft.Identity.Client.AuthScheme.CredentialEvaluationContext
Runtime context that MSAL hands to an IAuthenticationOperation3
implementation once per token request, after MSAL has evaluated the credentials
that will be used for the request. The operation reads the properties it needs
and prepares to format the result.
namespace Microsoft.Identity.Client.AuthScheme
{
public sealed class CredentialEvaluationContext
{
public X509Certificate2 MtlsCertificate { get; }
public CredentialEvaluationContext(X509Certificate2 mtlsCertificate);
}
}