< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyCandidate
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\IdentifyCandidate.cs
Covered lines:4
Uncovered lines:5
Coverable lines:9
Total lines:74
Line coverage:44.4% (4 of 9)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_PersonId()-100%100%
get_Confidence()-100%100%
Validate()-0%100%

File(s)

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

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Vision.Face.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// All possible faces that may qualify.
 18    /// </summary>
 19    public partial class IdentifyCandidate
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the IdentifyCandidate class.
 23        /// </summary>
 424        public IdentifyCandidate()
 25        {
 26            CustomInit();
 427        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the IdentifyCandidate class.
 31        /// </summary>
 32        /// <param name="personId">Id of candidate</param>
 33        /// <param name="confidence">Confidence threshold of identification,
 34        /// used to judge whether one face belong to one person. The range of
 35        /// confidenceThreshold is [0, 1] (default specified by
 36        /// algorithm).</param>
 037        public IdentifyCandidate(System.Guid personId, double confidence)
 38        {
 039            PersonId = personId;
 040            Confidence = confidence;
 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 id of candidate
 51        /// </summary>
 52        [JsonProperty(PropertyName = "personId")]
 853        public System.Guid PersonId { get; set; }
 54
 55        /// <summary>
 56        /// Gets or sets confidence threshold of identification, used to judge
 57        /// whether one face belong to one person. The range of
 58        /// confidenceThreshold is [0, 1] (default specified by algorithm).
 59        /// </summary>
 60        [JsonProperty(PropertyName = "confidence")]
 861        public double Confidence { get; set; }
 62
 63        /// <summary>
 64        /// Validate the object.
 65        /// </summary>
 66        /// <exception cref="Rest.ValidationException">
 67        /// Thrown if validation fails
 68        /// </exception>
 69        public virtual void Validate()
 70        {
 71            //Nothing to validate
 072        }
 73    }
 74}