< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\ElisionTokenFilter.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    /// Removes elisions. For example, "l'avion" (the plane) will be converted
 20    /// to "avion" (plane). This token filter is implemented using Apache
 21    /// Lucene.
 22    /// <see
 23    /// href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html"
 24    /// />
 25    /// </summary>
 26    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.ElisionTokenFilter")]
 27    public partial class ElisionTokenFilter : TokenFilter
 28    {
 29        /// <summary>
 30        /// Initializes a new instance of the ElisionTokenFilter class.
 31        /// </summary>
 432        public ElisionTokenFilter()
 33        {
 34            CustomInit();
 435        }
 36
 37        /// <summary>
 38        /// Initializes a new instance of the ElisionTokenFilter class.
 39        /// </summary>
 40        /// <param name="name">The name of the token filter. It must only
 41        /// contain letters, digits, spaces, dashes or underscores, can only
 42        /// start and end with alphanumeric characters, and is limited to 128
 43        /// characters.</param>
 44        /// <param name="articles">The set of articles to remove.</param>
 45        public ElisionTokenFilter(string name, IList<string> articles = default(IList<string>))
 446            : base(name)
 47        {
 448            Articles = articles;
 49            CustomInit();
 450        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the set of articles to remove.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "articles")]
 2061        public IList<string> Articles { get; set; }
 62
 63        /// <summary>
 64        /// Validate the object.
 65        /// </summary>
 66        /// <exception cref="Rest.ValidationException">
 67        /// Thrown if validation fails
 68        /// </exception>
 69        public override void Validate()
 70        {
 471            base.Validate();
 472        }
 73    }
 74}