< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.Candidate
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Candidate.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_Text()-0%100%
get_Confidence()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\Candidate.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    /// OCR candidate text.
 14    /// </summary>
 15    public partial class Candidate
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the Candidate class.
 19        /// </summary>
 020        public Candidate()
 21        {
 22            CustomInit();
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the Candidate class.
 27        /// </summary>
 28        /// <param name="text">The text found.</param>
 29        /// <param name="confidence">The confidence level.</param>
 030        public Candidate(string text = default(string), double? confidence = default(double?))
 31        {
 032            Text = text;
 033            Confidence = confidence;
 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 text found.
 44        /// </summary>
 45        [JsonProperty(PropertyName = "Text")]
 046        public string Text { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets the confidence level.
 50        /// </summary>
 51        [JsonProperty(PropertyName = "Confidence")]
 052        public double? Confidence { get; set; }
 53
 54    }
 55}