<PackageReference Include="Azure.Core" Version="1.53.0" />

Azure.Identity.InteractiveBrowserCredentialOptions

Options to configure the InteractiveBrowserCredential.
namespace Azure.Identity { public class InteractiveBrowserCredentialOptions : TokenCredentialOptions, ISupportsTokenCachePersistenceOptions, ISupportsDisableInstanceDiscovery, ISupportsAdditionallyAllowedTenants, ISupportsTenantId { public bool DisableAutomaticAuthentication { get; set; } public string TenantId { get; set; } public IList<string> AdditionallyAllowedTenants { get; } public string ClientId { get; set; } public TokenCachePersistenceOptions TokenCachePersistenceOptions { get; set; } public Uri RedirectUri { get; set; } public AuthenticationRecord AuthenticationRecord { get; set; } public string LoginHint { get; set; } public bool DisableInstanceDiscovery { get; set; } public BrowserCustomizationOptions BrowserCustomization { get; set; } public InteractiveBrowserCredentialOptions(); } }