| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using Azure.Core; |
| | 7 | | using Azure.Core.Pipeline; |
| | 8 | | using Azure.Identity; |
| | 9 | |
|
| | 10 | | namespace Microsoft.Extensions.Azure |
| | 11 | | { |
| | 12 | | internal class AzureClientsGlobalOptions |
| | 13 | | { |
| 130 | 14 | | public Func<IServiceProvider, TokenCredential> CredentialFactory { get; set; } = _ => new DefaultAzureCredential |
| 88 | 15 | | public List<Action<ClientOptions, IServiceProvider>> ConfigureOptionDelegates { get; } = new List<Action<ClientO |
| | 16 | | } |
| | 17 | | } |