< Summary

Class:Microsoft.Azure.Search.Models.LanguageDetectionSkill
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\LanguageDetectionSkill.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:76
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
Validate()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\LanguageDetectionSkill.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.Search.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// A skill that detects the language of input text and reports a single
 20    /// language code for every document submitted on the request. The language
 21    /// code is paired with a score indicating the confidence of the analysis.
 22    /// <see
 23    /// href="https://docs.microsoft.com/azure/search/cognitive-search-skill-language-detection"
 24    /// />
 25    /// </summary>
 26    [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.LanguageDetectionSkill")]
 27    public partial class LanguageDetectionSkill : Skill
 28    {
 29        /// <summary>
 30        /// Initializes a new instance of the LanguageDetectionSkill class.
 31        /// </summary>
 232        public LanguageDetectionSkill()
 33        {
 34            CustomInit();
 235        }
 36
 37        /// <summary>
 38        /// Initializes a new instance of the LanguageDetectionSkill class.
 39        /// </summary>
 40        /// <param name="inputs">Inputs of the skills could be a column in the
 41        /// source data set, or the output of an upstream skill.</param>
 42        /// <param name="outputs">The output of a skill is either a field in a
 43        /// search index, or a value that can be consumed as an input by
 44        /// another skill.</param>
 45        /// <param name="name">The name of the skill which uniquely identifies
 46        /// it within the skillset. A skill with no name defined will be given
 47        /// a default name of its 1-based index in the skills array, prefixed
 48        /// with the character '#'.</param>
 49        /// <param name="description">The description of the skill which
 50        /// describes the inputs, outputs, and usage of the skill.</param>
 51        /// <param name="context">Represents the level at which operations take
 52        /// place, such as the document root or document content (for example,
 53        /// /document or /document/content). The default is /document.</param>
 54        public LanguageDetectionSkill(IList<InputFieldMappingEntry> inputs, IList<OutputFieldMappingEntry> outputs, stri
 255            : base(inputs, outputs, name, description, context)
 56        {
 57            CustomInit();
 258        }
 59
 60        /// <summary>
 61        /// An initialization method that performs custom operations like setting defaults
 62        /// </summary>
 63        partial void CustomInit();
 64
 65        /// <summary>
 66        /// Validate the object.
 67        /// </summary>
 68        /// <exception cref="Rest.ValidationException">
 69        /// Thrown if validation fails
 70        /// </exception>
 71        public override void Validate()
 72        {
 273            base.Validate();
 274        }
 75    }
 76}

Methods/Properties

.ctor()
.ctor(...)
Validate()