< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Text;
 7
 8namespace 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>
 19818        public string TenantId { get; set; }
 19    }
 20}

Methods/Properties

get_TenantId()