Skip to content

Commit 013a5dd

Browse files
authored
Adding a note for default values (Azure#23619)
* Adding a note for default values
1 parent 10f7a9e commit 013a5dd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sdk/identity/Azure.Identity/src/DefaultAzureCredentialOptions.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,14 @@ public class DefaultAzureCredentialOptions : TokenCredentialOptions
7171
/// <summary>
7272
/// Specifies whether the <see cref="SharedTokenCacheCredential"/> will be excluded from the <see cref="DefaultAzureCredential"/> authentication flow.
7373
/// Setting to true disables single sign on authentication with development tools which write to the shared token cache.
74+
/// The default is <c>true</c>.
7475
/// </summary>
7576
public bool ExcludeSharedTokenCacheCredential { get; set; } = true;
7677

7778
/// <summary>
7879
/// Specifies whether the <see cref="InteractiveBrowserCredential"/> will be excluded from the <see cref="DefaultAzureCredential"/> authentication flow.
7980
/// Setting to true disables launching the default system browser to authenticate in development environments.
81+
/// The default is <c>true</c>.
8082
/// </summary>
8183
public bool ExcludeInteractiveBrowserCredential { get; set; } = true;
8284

0 commit comments

Comments
 (0)