diff --git a/src/client/Microsoft.Identity.Client/IPublicClientApplication.cs b/src/client/Microsoft.Identity.Client/IPublicClientApplication.cs index 3e2bbe4925..335a3fd4b6 100644 --- a/src/client/Microsoft.Identity.Client/IPublicClientApplication.cs +++ b/src/client/Microsoft.Identity.Client/IPublicClientApplication.cs @@ -31,21 +31,40 @@ public partial interface IPublicClientApplication : IClientApplicationBase /// A builder enabling you to add optional parameters before executing the token request /// The user will be signed-in interactively if needed, /// and will consent to scopes and do multi-factor authentication if such a policy was enabled in the Azure AD tenant. - /// /// You can also pass optional parameters by calling: - /// to specify the user experience - /// when signing-in, to specify - /// if you want to use the embedded web browser or the system default browser, - /// to configure - /// the user experience when using the Default browser, - /// or - /// to prevent the select account dialog from appearing in the case you want to sign-in a specific account, - /// if you want to let the - /// user pre-consent to additional scopes (which won't be returned in the access token), - /// to pass + /// + /// + /// + /// to specify the user experience + /// when signing-in + /// + /// + /// + /// to specify + /// if you want to use the embedded web browser or the system default browser + /// + /// + /// + /// to configure + /// the user experience when using the Default browser + /// + /// + /// or + /// to prevent the select account dialog from appearing in the case you want to sign-in a specific accounts + /// + /// + /// + /// if you want to let the + /// user pre-consent to additional scopes (which won't be returned in the access token) + /// + /// + /// + /// to pass /// additional query parameters to the STS, and one of the overrides of /// in order to override the default authority set at the application construction. Note that the overriding authority needs to be part - /// of the known authorities added to the application construction. + /// of the known authorities added to the application construction + /// + /// /// AcquireTokenInteractiveParameterBuilder AcquireTokenInteractive(IEnumerable scopes); #pragma warning restore CS1574 // XML comment has cref attribute that could not be resolved