< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageRegion
Assembly:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\ImageRegion.cs
Covered lines:6
Uncovered lines:15
Coverable lines:21
Total lines:109
Line coverage:28.5% (6 of 21)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_RegionId()-0%100%
get_TagName()-0%100%
get_Created()-0%100%
get_TagId()-0%100%
get_Left()-100%100%
get_Top()-100%100%
get_Width()-100%100%
get_Height()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\ImageRegion.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.CustomVision.Training.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    public partial class ImageRegion
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the ImageRegion class.
 20        /// </summary>
 16621        public ImageRegion()
 22        {
 23            CustomInit();
 16624        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the ImageRegion class.
 28        /// </summary>
 29        /// <param name="tagId">Id of the tag associated with this
 30        /// region.</param>
 31        /// <param name="left">Coordinate of the left boundary.</param>
 32        /// <param name="top">Coordinate of the top boundary.</param>
 33        /// <param name="width">Width.</param>
 34        /// <param name="height">Height.</param>
 035        public ImageRegion(System.Guid tagId, double left, double top, double width, double height, System.Guid regionId
 36        {
 037            RegionId = regionId;
 038            TagName = tagName;
 039            Created = created;
 040            TagId = tagId;
 041            Left = left;
 042            Top = top;
 043            Width = width;
 044            Height = height;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// </summary>
 55        [JsonProperty(PropertyName = "regionId")]
 056        public System.Guid RegionId { get; private set; }
 57
 58        /// <summary>
 59        /// </summary>
 60        [JsonProperty(PropertyName = "tagName")]
 061        public string TagName { get; private set; }
 62
 63        /// <summary>
 64        /// </summary>
 65        [JsonProperty(PropertyName = "created")]
 066        public System.DateTime Created { get; private set; }
 67
 68        /// <summary>
 69        /// Gets or sets id of the tag associated with this region.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "tagId")]
 072        public System.Guid TagId { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets coordinate of the left boundary.
 76        /// </summary>
 77        [JsonProperty(PropertyName = "left")]
 24678        public double Left { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets coordinate of the top boundary.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "top")]
 24684        public double Top { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets width.
 88        /// </summary>
 89        [JsonProperty(PropertyName = "width")]
 24690        public double Width { get; set; }
 91
 92        /// <summary>
 93        /// Gets or sets height.
 94        /// </summary>
 95        [JsonProperty(PropertyName = "height")]
 24696        public double Height { get; set; }
 97
 98        /// <summary>
 99        /// Validate the object.
 100        /// </summary>
 101        /// <exception cref="Rest.ValidationException">
 102        /// Thrown if validation fails
 103        /// </exception>
 104        public virtual void Validate()
 105        {
 106            //Nothing to validate
 0107        }
 108    }
 109}