<PackageReference Include="Microsoft.Identity.Client" Version="4.83.0" />

Microsoft.Identity.Client.IAppConfig

public interface IAppConfig
Configuration properties used to build a public or confidential client application.

Microsoft Identity specific OIDC extension that allows resource challenges to be resolved without interaction. Allows configuration of one or more client capabilities, e.g. "llt"

string ClientId { get; }

Client ID (also known as App ID) of the application as registered in the application registration portal (https://aka.ms/msal-net-register-app).

string ClientName { get; }

The name of the calling application for telemetry purposes.

string ClientSecret { get; }

string ClientVersion { get; }

The version of the calling application for telemetry purposes.

bool EnablePiiLogging { get; }

Flag telling if logging of Personally Identifiable Information (PII) is enabled/disabled for the application. See https://aka.ms/msal-net-logging.

Allows usage of features that are experimental and would otherwise throw a specific exception. Use of experimental features in production is not recommended and are subject to be removed between builds. For details see https://aka.ms/msal-net-experimental-features.

IDictionary<string, string> ExtraQueryParameters { get; }

Extra query parameters that will be applied to every acquire token operation. See WithExtraQueryParameters

IMsalHttpClientFactory used to get HttpClient instances to communicate with the identity provider.

bool IsBrokerEnabled { get; }

Indicates whether or not the current application object is configured to use brokered authentication.

Flag telling if logging to platform defaults is enabled/disabled for the app. In Desktop, Event Tracing is used. In iOS, NSLog is used. In Android, logcat is used. See https://aka.ms/msal-net-logging.

Enables legacy ADAL cache serialization and deserialization.

Callback used for logging. It was set with WithLogging See https://aka.ms/msal-net-logging

LogLevel LogLevel { get; }

Level of logging requested for the app. See https://aka.ms/msal-net-logging.

string RedirectUri { get; }

Redirect URI for the application. See RedirectUri

string TenantId { get; }

Audience for the application. See TenantId