< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.Tag
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Tag.cs
Covered lines:0
Uncovered lines:8
Coverable lines:8
Total lines:55
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_Key()-0%100%
get_Value()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Tag.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.ContentModerator.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Linq;
 11
 12    /// <summary>
 13    /// Tag details.
 14    /// </summary>
 15    public partial class Tag
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Tag class.
 19        /// </summary>
 020        public Tag()
 21        {
 22            CustomInit();
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Tag class.
 27        /// </summary>
 28        /// <param name="key">The key parameter.</param>
 29        /// <param name="value">The value parameter.</param>
 030        public Tag(string key = default(string), string value = default(string))
 31        {
 032            Key = key;
 033            Value = value;
 34            CustomInit();
 035        }
 36
 37        /// <summary>
 38        /// An initialization method that performs custom operations like setting defaults
 39        /// </summary>
 40        partial void CustomInit();
 41
 42        /// <summary>
 43        /// Gets or sets the key parameter.
 44        /// </summary>
 45        [JsonProperty(PropertyName = "Key")]
 046        public string Key { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets the value parameter.
 50        /// </summary>
 51        [JsonProperty(PropertyName = "Value")]
 052        public string Value { get; set; }
 53
 54    }
 55}