< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.Email
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Email.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:75
Line coverage:0% (0 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Detected()-0%100%
get_SubType()-0%100%
get_Text()-0%100%
get_Index()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Email.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    /// Email Address details.
 14    /// </summary>
 15    public partial class Email
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Email class.
 19        /// </summary>
 020        public Email()
 21        {
 22            CustomInit();
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Email class.
 27        /// </summary>
 28        /// <param name="detected">Detected Email Address from the input text
 29        /// content.</param>
 30        /// <param name="subType">Subtype of the detected Email
 31        /// Address.</param>
 32        /// <param name="text">Email Address in the input text content.</param>
 33        /// <param name="index">Index(Location) of the Email address in the
 34        /// input text content.</param>
 035        public Email(string detected = default(string), string subType = default(string), string text = default(string),
 36        {
 037            Detected = detected;
 038            SubType = subType;
 039            Text = text;
 040            Index = index;
 41            CustomInit();
 042        }
 43
 44        /// <summary>
 45        /// An initialization method that performs custom operations like setting defaults
 46        /// </summary>
 47        partial void CustomInit();
 48
 49        /// <summary>
 50        /// Gets or sets detected Email Address from the input text content.
 51        /// </summary>
 52        [JsonProperty(PropertyName = "Detected")]
 053        public string Detected { get; set; }
 54
 55        /// <summary>
 56        /// Gets or sets subtype of the detected Email Address.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "SubType")]
 059        public string SubType { get; set; }
 60
 61        /// <summary>
 62        /// Gets or sets email Address in the input text content.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "Text")]
 065        public string Text { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets index(Location) of the Email address in the input text
 69        /// content.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "Index")]
 072        public int? Index { get; set; }
 73
 74    }
 75}