Microsoft.Identity.Client.AssertionRequestOptions
Information about the client assertion that need to be generated See https://aka.ms/msal-net-client-assertion
namespace Microsoft.Identity.Client
{
public class AssertionRequestOptions
{
public CancellationToken CancellationToken { get; set; }
public string ClientID { get; set; }
public string TenantId { get; set; }
public string Authority { get; set; }
public string TokenEndpoint { get; set; }
public string Claims { get; set; }
public IEnumerable<string> ClientCapabilities { get; set; }
public string ClientAssertionFmiPath { get; set; }
public Guid CorrelationId { get; set; }
public AssertionRequestOptions();
}
}