< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\LimitTokenFilter.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.Linq;
 15
 16    /// <summary>
 17    /// Limits the number of tokens while indexing. This token filter is
 18    /// implemented using Apache Lucene.
 19    /// <see
 20    /// href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenC
 21    /// />
 22    /// </summary>
 23    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.LimitTokenFilter")]
 24    public partial class LimitTokenFilter : TokenFilter
 25    {
 26        /// <summary>
 27        /// Initializes a new instance of the LimitTokenFilter class.
 28        /// </summary>
 429        public LimitTokenFilter()
 30        {
 31            CustomInit();
 432        }
 33
 34        /// <summary>
 35        /// Initializes a new instance of the LimitTokenFilter class.
 36        /// </summary>
 37        /// <param name="name">The name of the token filter. It must only
 38        /// contain letters, digits, spaces, dashes or underscores, can only
 39        /// start and end with alphanumeric characters, and is limited to 128
 40        /// characters.</param>
 41        /// <param name="maxTokenCount">The maximum number of tokens to
 42        /// produce. Default is 1.</param>
 43        /// <param name="consumeAllTokens">A value indicating whether all
 44        /// tokens from the input must be consumed even if maxTokenCount is
 45        /// reached. Default is false.</param>
 46        public LimitTokenFilter(string name, int? maxTokenCount = default(int?), bool? consumeAllTokens = default(bool?)
 647            : base(name)
 48        {
 649            MaxTokenCount = maxTokenCount;
 650            ConsumeAllTokens = consumeAllTokens;
 51            CustomInit();
 652        }
 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 maximum number of tokens to produce. Default is 1.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "maxTokenCount")]
 2263        public int? MaxTokenCount { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets a value indicating whether all tokens from the input
 67        /// must be consumed even if maxTokenCount is reached. Default is
 68        /// false.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "consumeAllTokens")]
 2271        public bool? ConsumeAllTokens { get; set; }
 72
 73        /// <summary>
 74        /// Validate the object.
 75        /// </summary>
 76        /// <exception cref="Rest.ValidationException">
 77        /// Thrown if validation fails
 78        /// </exception>
 79        public override void Validate()
 80        {
 481            base.Validate();
 482        }
 83    }
 84}