< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Page()-0%100%
get_Language()-0%100%
get_Angle()-0%100%
get_Width()-0%100%
get_Height()-0%100%
get_Unit()-0%100%
get_Lines()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ReadResult.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 Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// Text extracted from a page in the input document.
 21    /// </summary>
 22    public partial class ReadResult
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the ReadResult class.
 26        /// </summary>
 027        public ReadResult()
 28        {
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the ReadResult class.
 34        /// </summary>
 35        /// <param name="page">The 1-based page number of the recognition
 36        /// result.</param>
 37        /// <param name="angle">The orientation of the image in degrees in the
 38        /// clockwise direction. Range between [-180, 180).</param>
 39        /// <param name="width">The width of the image in pixels or the PDF in
 40        /// inches.</param>
 41        /// <param name="height">The height of the image in pixels or the PDF
 42        /// in inches.</param>
 43        /// <param name="unit">The unit used in the Width, Height and
 44        /// BoundingBox. For images, the unit is 'pixel'. For PDF, the unit is
 45        /// 'inch'. Possible values include: 'pixel', 'inch'</param>
 46        /// <param name="lines">A list of recognized text lines.</param>
 47        /// <param name="language">The BCP-47 language code of the recognized
 48        /// text page.</param>
 049        public ReadResult(int page, double angle, double width, double height, TextRecognitionResultDimensionUnit unit, 
 50        {
 051            Page = page;
 052            Language = language;
 053            Angle = angle;
 054            Width = width;
 055            Height = height;
 056            Unit = unit;
 057            Lines = lines;
 58            CustomInit();
 059        }
 60
 61        /// <summary>
 62        /// An initialization method that performs custom operations like setting defaults
 63        /// </summary>
 64        partial void CustomInit();
 65
 66        /// <summary>
 67        /// Gets or sets the 1-based page number of the recognition result.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "page")]
 070        public int Page { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets the BCP-47 language code of the recognized text page.
 74        /// </summary>
 75        [JsonProperty(PropertyName = "language")]
 076        public string Language { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets the orientation of the image in degrees in the
 80        /// clockwise direction. Range between [-180, 180).
 81        /// </summary>
 82        [JsonProperty(PropertyName = "angle")]
 083        public double Angle { get; set; }
 84
 85        /// <summary>
 86        /// Gets or sets the width of the image in pixels or the PDF in inches.
 87        /// </summary>
 88        [JsonProperty(PropertyName = "width")]
 089        public double Width { get; set; }
 90
 91        /// <summary>
 92        /// Gets or sets the height of the image in pixels or the PDF in
 93        /// inches.
 94        /// </summary>
 95        [JsonProperty(PropertyName = "height")]
 096        public double Height { get; set; }
 97
 98        /// <summary>
 99        /// Gets or sets the unit used in the Width, Height and BoundingBox.
 100        /// For images, the unit is 'pixel'. For PDF, the unit is 'inch'.
 101        /// Possible values include: 'pixel', 'inch'
 102        /// </summary>
 103        [JsonProperty(PropertyName = "unit")]
 0104        public TextRecognitionResultDimensionUnit Unit { get; set; }
 105
 106        /// <summary>
 107        /// Gets or sets a list of recognized text lines.
 108        /// </summary>
 109        [JsonProperty(PropertyName = "lines")]
 0110        public IList<Line> Lines { get; set; }
 111
 112        /// <summary>
 113        /// Validate the object.
 114        /// </summary>
 115        /// <exception cref="ValidationException">
 116        /// Thrown if validation fails
 117        /// </exception>
 118        public virtual void Validate()
 119        {
 0120            if (Lines == null)
 121            {
 0122                throw new ValidationException(ValidationRules.CannotBeNull, "Lines");
 123            }
 0124            if (Lines != null)
 125            {
 0126                foreach (var element in Lines)
 127                {
 0128                    if (element != null)
 129                    {
 0130                        element.Validate();
 131                    }
 132                }
 133            }
 0134        }
 135    }
 136}