< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Age()-0%100%
get_Gender()-0%100%
get_FaceRectangle()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\FaceDescription.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.ComputerVision.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// An object describing a face identified in the image.
 18    /// </summary>
 19    public partial class FaceDescription
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the FaceDescription class.
 23        /// </summary>
 024        public FaceDescription()
 25        {
 26            CustomInit();
 027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the FaceDescription class.
 31        /// </summary>
 32        /// <param name="age">Possible age of the face.</param>
 33        /// <param name="gender">Possible gender of the face. Possible values
 34        /// include: 'Male', 'Female'</param>
 35        /// <param name="faceRectangle">Rectangle in the image containing the
 36        /// identified face.</param>
 037        public FaceDescription(int age = default(int), Gender? gender = default(Gender?), FaceRectangle faceRectangle = 
 38        {
 039            Age = age;
 040            Gender = gender;
 041            FaceRectangle = faceRectangle;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets possible age of the face.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "age")]
 054        public int Age { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets possible gender of the face. Possible values include:
 58        /// 'Male', 'Female'
 59        /// </summary>
 60        [JsonProperty(PropertyName = "gender")]
 061        public Gender? Gender { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets rectangle in the image containing the identified face.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "faceRectangle")]
 067        public FaceRectangle FaceRectangle { get; set; }
 68
 69    }
 70}