Class TextSearchParameters.TextSearchKeywordCollection
Note, this class is declared inside the TextSearchParameters class, which means that the TextSearchParameters members can access the protected members in this class.
Inheritance
System.Object
TextSearchParameters.TextSearchKeywordCollection
Implements
System.Collections.Generic.IEnumerable<System.String>
System.Collections.IEnumerable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Core.Html
Assembly: EPiServer.dll
Version: 8.11.0Syntax
[Obsolete("This class is no longer used, indexing is now handled through the Indexing Service")]
public class TextSearchKeywordCollection : IEnumerable<string>, IEnumerable
Constructors
TextSearchKeywordCollection()
Declaration
public TextSearchKeywordCollection()
Properties
Count
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ExcludeWords
Declaration
public List<string> ExcludeWords { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Item[Int32]
Declaration
public string this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type | Description |
---|---|
System.String |
MandatoryWords
Declaration
public List<string> MandatoryWords { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
OptionalWords
Declaration
public List<string> OptionalWords { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Methods
GetEnumerator()
Declaration
public IEnumerator<string> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<System.String> |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable