< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.VerifyResult
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\VerifyResult.cs
Covered lines:4
Uncovered lines:5
Coverable lines:9
Total lines:81
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_IsIdentical()-100%100%
get_Confidence()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\VerifyResult.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    /// Result of the verify operation.
 18    /// </summary>
 19    public partial class VerifyResult
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the VerifyResult class.
 23        /// </summary>
 1224        public VerifyResult()
 25        {
 26            CustomInit();
 1227        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the VerifyResult class.
 31        /// </summary>
 32        /// <param name="isIdentical">True if the two faces belong to the same
 33        /// person or the face belongs to the person, otherwise false.</param>
 34        /// <param name="confidence">A number indicates the similarity
 35        /// confidence of whether two faces belong to the same person, or
 36        /// whether the face belongs to the person. By default, isIdentical is
 37        /// set to True if similarity confidence is greater than or equal to
 38        /// 0.5. This is useful for advanced users to override "isIdentical"
 39        /// and fine-tune the result on their own data.</param>
 040        public VerifyResult(bool isIdentical, double confidence)
 41        {
 042            IsIdentical = isIdentical;
 043            Confidence = confidence;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets true if the two faces belong to the same person or the
 54        /// face belongs to the person, otherwise false.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "isIdentical")]
 2457        public bool IsIdentical { get; set; }
 58
 59        /// <summary>
 60        /// Gets or sets a number indicates the similarity confidence of
 61        /// whether two faces belong to the same person, or whether the face
 62        /// belongs to the person. By default, isIdentical is set to True if
 63        /// similarity confidence is greater than or equal to 0.5. This is
 64        /// useful for advanced users to override "isIdentical" and fine-tune
 65        /// the result on their own data.
 66        /// </summary>
 67        [JsonProperty(PropertyName = "confidence")]
 2468        public double Confidence { get; set; }
 69
 70        /// <summary>
 71        /// Validate the object.
 72        /// </summary>
 73        /// <exception cref="Rest.ValidationException">
 74        /// Thrown if validation fails
 75        /// </exception>
 76        public virtual void Validate()
 77        {
 78            //Nothing to validate
 079        }
 80    }
 81}