< Summary

Class:Azure.ResourceManager.Resources.Models.ResourceGroupFilter
Assembly:Azure.ResourceManager.Resources
File(s):C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\ResourceGroupFilter.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:32
Line coverage:0% (0 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_TagName()-0%100%
get_TagValue()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\ResourceGroupFilter.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.ResourceManager.Resources.Models
 9{
 10    /// <summary> Resource group filter. </summary>
 11    internal partial class ResourceGroupFilter
 12    {
 13        /// <summary> Initializes a new instance of ResourceGroupFilter. </summary>
 014        internal ResourceGroupFilter()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of ResourceGroupFilter. </summary>
 19        /// <param name="tagName"> The tag name. </param>
 20        /// <param name="tagValue"> The tag value. </param>
 021        internal ResourceGroupFilter(string tagName, string tagValue)
 22        {
 023            TagName = tagName;
 024            TagValue = tagValue;
 025        }
 26
 27        /// <summary> The tag name. </summary>
 028        public string TagName { get; }
 29        /// <summary> The tag value. </summary>
 030        public string TagValue { get; }
 31    }
 32}