< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.TranscriptModerationBodyItemTermsItem
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\TranscriptModerationBodyItemTermsItem.cs
Covered lines:4
Uncovered lines:7
Coverable lines:11
Total lines:68
Line coverage:36.3% (4 of 11)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-100%100%
get_Index()-0%100%
get_Term()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\TranscriptModerationBodyItemTermsItem.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 Microsoft.Rest;
 10    using Newtonsoft.Json;
 11    using System.Linq;
 12
 13    public partial class TranscriptModerationBodyItemTermsItem
 14    {
 15        /// <summary>
 16        /// Initializes a new instance of the
 17        /// TranscriptModerationBodyItemTermsItem class.
 18        /// </summary>
 019        public TranscriptModerationBodyItemTermsItem()
 20        {
 21            CustomInit();
 022        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the
 26        /// TranscriptModerationBodyItemTermsItem class.
 27        /// </summary>
 28        /// <param name="index">Index of the word</param>
 29        /// <param name="term">Detected word.</param>
 430        public TranscriptModerationBodyItemTermsItem(int index, string term)
 31        {
 432            Index = index;
 433            Term = term;
 34            CustomInit();
 435        }
 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 index of the word
 44        /// </summary>
 45        [JsonProperty(PropertyName = "Index")]
 046        public int Index { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets detected word.
 50        /// </summary>
 51        [JsonProperty(PropertyName = "Term")]
 052        public string Term { get; set; }
 53
 54        /// <summary>
 55        /// Validate the object.
 56        /// </summary>
 57        /// <exception cref="ValidationException">
 58        /// Thrown if validation fails
 59        /// </exception>
 60        public virtual void Validate()
 61        {
 062            if (Term == null)
 63            {
 064                throw new ValidationException(ValidationRules.CannotBeNull, "Term");
 65            }
 066        }
 67    }
 68}