< Summary

Class:Microsoft.Azure.Search.Models.KeywordTokenizer
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Customizations\Indexes\Models\KeywordTokenizer.cs
Covered lines:0
Uncovered lines:7
Coverable lines:7
Total lines:59
Line coverage:0% (0 of 7)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Customizations\Indexes\Models\KeywordTokenizer.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for
 3// license information.
 4//
 5// Code generated by Microsoft (R) AutoRest Code Generator.
 6// Changes may cause incorrect behavior and will be lost if the code is
 7// regenerated.
 8
 9namespace Microsoft.Azure.Search.Models
 10{
 11    using System;
 12    using System.Linq;
 13    using System.Collections.Generic;
 14    using Newtonsoft.Json;
 15    using Microsoft.Rest;
 16    using Microsoft.Rest.Serialization;
 17    using Microsoft.Rest.Azure;
 18
 19    /// <summary>
 20    /// Emits the entire input as a single token. This tokenizer is
 21    /// implemented using Apache Lucene.
 22    /// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenize
 23    /// </summary>
 24    [JsonObject("#Microsoft.Azure.Search.KeywordTokenizer")]
 25    [Obsolete("This type is obsolete. Please use KeywordTokenizerV2 instead.")]
 26    public partial class KeywordTokenizer : Tokenizer
 27    {
 28        /// <summary>
 29        /// Initializes a new instance of the KeywordTokenizer class.
 30        /// </summary>
 031        public KeywordTokenizer() { }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the KeywordTokenizer class.
 35        /// </summary>
 36        public KeywordTokenizer(string name, int? bufferSize = default(int?))
 037            : base(name)
 38        {
 039            BufferSize = bufferSize;
 040        }
 41
 42        /// <summary>
 43        /// Gets or sets the read buffer size in bytes. Default is 256.
 44        /// </summary>
 45        [JsonProperty(PropertyName = "bufferSize")]
 046        public int? BufferSize { get; set; }
 47
 48        /// <summary>
 49        /// Validate the object.
 50        /// </summary>
 51        /// <exception cref="ValidationException">
 52        /// Thrown if validation fails
 53        /// </exception>
 54        public override void Validate()
 55        {
 056            base.Validate();
 057        }
 58    }
 59}