< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.Exposure
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\Exposure.cs
Covered lines:3
Uncovered lines:5
Coverable lines:8
Total lines:66
Line coverage:37.5% (3 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ExposureLevel()-100%100%
get_Value()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\Exposure.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    /// Properties describing exposure level of the image.
 18    /// </summary>
 19    public partial class Exposure
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the Exposure class.
 23        /// </summary>
 224        public Exposure()
 25        {
 26            CustomInit();
 227        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the Exposure class.
 31        /// </summary>
 32        /// <param name="exposureLevel">An enum value indicating level of
 33        /// exposure. Possible values include: 'UnderExposure', 'GoodExposure',
 34        /// 'OverExposure'</param>
 35        /// <param name="value">A number indicating level of exposure level
 36        /// ranging from 0 to 1. [0, 0.25) is under exposure. [0.25, 0.75) is
 37        /// good exposure. [0.75, 1] is over exposure.</param>
 038        public Exposure(ExposureLevel exposureLevel = default(ExposureLevel), double value = default(double))
 39        {
 040            ExposureLevel = exposureLevel;
 041            Value = value;
 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 an enum value indicating level of exposure. Possible
 52        /// values include: 'UnderExposure', 'GoodExposure', 'OverExposure'
 53        /// </summary>
 54        [JsonProperty(PropertyName = "exposureLevel")]
 655        public ExposureLevel ExposureLevel { get; set; }
 56
 57        /// <summary>
 58        /// Gets or sets a number indicating level of exposure level ranging
 59        /// from 0 to 1. [0, 0.25) is under exposure. [0.25, 0.75) is good
 60        /// exposure. [0.75, 1] is over exposure.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "value")]
 063        public double Value { get; set; }
 64
 65    }
 66}