| | 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 System.Text; |
| | 7 | |
|
| | 8 | | namespace Azure.Identity |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Options for configuring the <see cref="VisualStudioCodeCredential"/>. |
| | 12 | | /// </summary> |
| | 13 | | public class VisualStudioCodeCredentialOptions : TokenCredentialOptions |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// The tenant ID the user will be authenticated to. If not specified the user will be authenticated to the tena |
| | 17 | | /// </summary> |
| 198 | 18 | | public string TenantId { get; set; } |
| | 19 | | } |
| | 20 | | } |