< Summary

Class:Microsoft.Azure.Search.Models.KeywordMarkerTokenFilter
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\KeywordMarkerTokenFilter.cs
Covered lines:11
Uncovered lines:1
Coverable lines:12
Total lines:89
Line coverage:91.6% (11 of 12)
Covered branches:1
Total branches:2
Branch coverage:50% (1 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_Keywords()-100%100%
get_IgnoreCase()-100%100%
Validate()-75%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\KeywordMarkerTokenFilter.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 Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// Marks terms as keywords. 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/miscellaneous/KeywordMark
 24    /// />
 25    /// </summary>
 26    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.KeywordMarkerTokenFilter")]
 27    public partial class KeywordMarkerTokenFilter : TokenFilter
 28    {
 29        /// <summary>
 30        /// Initializes a new instance of the KeywordMarkerTokenFilter class.
 31        /// </summary>
 432        public KeywordMarkerTokenFilter()
 33        {
 34            CustomInit();
 435        }
 36
 37        /// <summary>
 38        /// Initializes a new instance of the KeywordMarkerTokenFilter 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="keywords">A list of words to mark as keywords.</param>
 45        /// <param name="ignoreCase">A value indicating whether to ignore case.
 46        /// If true, all words are converted to lower case first. Default is
 47        /// false.</param>
 48        public KeywordMarkerTokenFilter(string name, IList<string> keywords, bool? ignoreCase = default(bool?))
 449            : base(name)
 50        {
 451            Keywords = keywords;
 452            IgnoreCase = ignoreCase;
 53            CustomInit();
 454        }
 55
 56        /// <summary>
 57        /// An initialization method that performs custom operations like setting defaults
 58        /// </summary>
 59        partial void CustomInit();
 60
 61        /// <summary>
 62        /// Gets or sets a list of words to mark as keywords.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "keywords")]
 2465        public IList<string> Keywords { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets a value indicating whether to ignore case. If true,
 69        /// all words are converted to lower case first. Default is false.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "ignoreCase")]
 2072        public bool? IgnoreCase { get; set; }
 73
 74        /// <summary>
 75        /// Validate the object.
 76        /// </summary>
 77        /// <exception cref="ValidationException">
 78        /// Thrown if validation fails
 79        /// </exception>
 80        public override void Validate()
 81        {
 482            base.Validate();
 483            if (Keywords == null)
 84            {
 085                throw new ValidationException(ValidationRules.CannotBeNull, "Keywords");
 86            }
 487        }
 88    }
 89}