< Summary

Class:Azure.Identity.VisualStudioCredentialOptions
Assembly:Azure.Identity
File(s):C:\Git\azure-sdk-for-net\sdk\identity\Azure.Identity\src\VisualStudioCredentialOptions.cs
Covered lines:0
Uncovered lines:1
Coverable lines:1
Total lines:16
Line coverage:0% (0 of 1)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_TenantId()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\identity\Azure.Identity\src\VisualStudioCredentialOptions.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.Identity
 5{
 6    /// <summary>
 7    /// Options for configuring the <see cref="VisualStudioCredential"/>.
 8    /// </summary>
 9    public class VisualStudioCredentialOptions : TokenCredentialOptions
 10    {
 11        /// <summary>
 12        /// The tenant ID the user will be authenticated to. If not specified the user will be authenticated to their ho
 13        /// </summary>
 014        public string TenantId { get; set; }
 15    }
 16}

Methods/Properties

get_TenantId()