Microsoft.Identity.Client.ConfidentialClientApplicationOptions
Configuration options for a confidential client application
(web app / web API / daemon app). See https://aka.ms/msal-net/application-configuration
namespace Microsoft.Identity.Client
{
public class ConfidentialClientApplicationOptions : ApplicationOptions
{
public string ClientSecret { get; set; }
public string AzureRegion { get; set; }
public bool EnableCacheSynchronization { get; set; }
public ConfidentialClientApplicationOptions();
}
}