< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.CropArea
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVisualSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\CropArea.cs
Covered lines:10
Uncovered lines:3
Coverable lines:13
Total lines:106
Line coverage:76.9% (10 of 13)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-100%100%
get_Top()-100%100%
get_Bottom()-100%100%
get_Left()-100%100%
get_Right()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\CropArea.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.Search.VisualSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Linq;
 11
 12    /// <summary>
 13    /// A JSON object consisting of coordinates specifying the four corners of
 14    /// a cropped rectangle within the input image.
 15    /// </summary>
 16    public partial class CropArea
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the CropArea class.
 20        /// </summary>
 021        public CropArea()
 22        {
 23            CustomInit();
 024        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the CropArea class.
 28        /// </summary>
 29        /// <param name="top">The top coordinate of the region to be cropped.
 30        /// The coordinate is a fractional value of the original image's height
 31        /// and is measured from the top edge of the image. Specify the
 32        /// coordinate as a value from 0.0 through 1.0.</param>
 33        /// <param name="bottom">The bottom coordinate of the region to be
 34        /// cropped. The coordinate is a fractional value of the original
 35        /// image's height and is measured from the top edge of the image.
 36        /// Specify the coordinate as a value from 0.0 through 1.0.</param>
 37        /// <param name="left">The left coordinate of the region to be cropped.
 38        /// The coordinate is a fractional value of the original image's width
 39        /// and is measured from the left edge of the image. Specify the
 40        /// coordinate as a value from 0.0 through 1.0.</param>
 41        /// <param name="right">The right coordinate of the region to be
 42        /// cropped. The coordinate is a fractional value of the original
 43        /// image's width and is measured from the left edge of the image.
 44        /// Specify the coordinate as a value from 0.0 through 1.0.</param>
 845        public CropArea(double top, double bottom, double left, double right)
 46        {
 847            Top = top;
 848            Bottom = bottom;
 849            Left = left;
 850            Right = right;
 51            CustomInit();
 852        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets or sets the top coordinate of the region to be cropped. The
 61        /// coordinate is a fractional value of the original image's height and
 62        /// is measured from the top edge of the image. Specify the coordinate
 63        /// as a value from 0.0 through 1.0.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "top")]
 1466        public double Top { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the bottom coordinate of the region to be cropped. The
 70        /// coordinate is a fractional value of the original image's height and
 71        /// is measured from the top edge of the image. Specify the coordinate
 72        /// as a value from 0.0 through 1.0.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "bottom")]
 1475        public double Bottom { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets the left coordinate of the region to be cropped. The
 79        /// coordinate is a fractional value of the original image's width and
 80        /// is measured from the left edge of the image. Specify the coordinate
 81        /// as a value from 0.0 through 1.0.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "left")]
 1484        public double Left { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets the right coordinate of the region to be cropped. The
 88        /// coordinate is a fractional value of the original image's width and
 89        /// is measured from the left edge of the image. Specify the coordinate
 90        /// as a value from 0.0 through 1.0.
 91        /// </summary>
 92        [JsonProperty(PropertyName = "right")]
 1493        public double Right { get; set; }
 94
 95        /// <summary>
 96        /// Validate the object.
 97        /// </summary>
 98        /// <exception cref="Rest.ValidationException">
 99        /// Thrown if validation fails
 100        /// </exception>
 101        public virtual void Validate()
 102        {
 103            //Nothing to validate
 0104        }
 105    }
 106}