< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.EntityLabel
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\EntityLabel.cs
Covered lines:3
Uncovered lines:20
Coverable lines:23
Total lines:120
Line coverage:13% (3 of 23)
Covered branches:0
Total branches:8
Branch coverage:0% (0 of 8)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_EntityName()-0%100%
get_StartTokenIndex()-0%100%
get_EndTokenIndex()-0%100%
get_Role()-0%100%
get_RoleId()-0%100%
get_Children()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\EntityLabel.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.Language.LUIS.Authoring.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    /// Defines the entity type and position of the extracted entity within the
 21    /// example.
 22    /// </summary>
 23    public partial class EntityLabel
 24    {
 25        /// <summary>
 26        /// Initializes a new instance of the EntityLabel class.
 27        /// </summary>
 328        public EntityLabel()
 29        {
 30            CustomInit();
 331        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the EntityLabel class.
 35        /// </summary>
 36        /// <param name="entityName">The entity type.</param>
 37        /// <param name="startTokenIndex">The index within the utterance where
 38        /// the extracted entity starts.</param>
 39        /// <param name="endTokenIndex">The index within the utterance where
 40        /// the extracted entity ends.</param>
 41        /// <param name="role">The role of the predicted entity.</param>
 42        /// <param name="roleId">The role id for the predicted entity.</param>
 043        public EntityLabel(string entityName, int startTokenIndex, int endTokenIndex, string role = default(string), Sys
 44        {
 045            EntityName = entityName;
 046            StartTokenIndex = startTokenIndex;
 047            EndTokenIndex = endTokenIndex;
 048            Role = role;
 049            RoleId = roleId;
 050            Children = children;
 51            CustomInit();
 052        }
 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 entity type.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "entityName")]
 063        public string EntityName { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets the index within the utterance where the extracted
 67        /// entity starts.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "startTokenIndex")]
 070        public int StartTokenIndex { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets the index within the utterance where the extracted
 74        /// entity ends.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "endTokenIndex")]
 077        public int EndTokenIndex { get; set; }
 78
 79        /// <summary>
 80        /// Gets or sets the role of the predicted entity.
 81        /// </summary>
 82        [JsonProperty(PropertyName = "role")]
 083        public string Role { get; set; }
 84
 85        /// <summary>
 86        /// Gets or sets the role id for the predicted entity.
 87        /// </summary>
 88        [JsonProperty(PropertyName = "roleId")]
 089        public System.Guid? RoleId { get; set; }
 90
 91        /// <summary>
 92        /// </summary>
 93        [JsonProperty(PropertyName = "children")]
 794        public IList<EntityLabel> Children { get; set; }
 95
 96        /// <summary>
 97        /// Validate the object.
 98        /// </summary>
 99        /// <exception cref="ValidationException">
 100        /// Thrown if validation fails
 101        /// </exception>
 102        public virtual void Validate()
 103        {
 0104            if (EntityName == null)
 105            {
 0106                throw new ValidationException(ValidationRules.CannotBeNull, "EntityName");
 107            }
 0108            if (Children != null)
 109            {
 0110                foreach (var element in Children)
 111                {
 0112                    if (element != null)
 113                    {
 0114                        element.Validate();
 115                    }
 116                }
 117            }
 0118        }
 119    }
 120}