SaaS CMS has officially launched! Learn more now.

Class TextSearchResults

Collection for storing and passing around search results.

Inheritance
System.Object
TextSearchResults
Implements
System.Collections.Generic.IEnumerable<PageRank>
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.0
Syntax
[Obsolete("This class is no longer being used, indexing is now handled through the Indexing Service")]
public class TextSearchResults : IEnumerable<PageRank>, IEnumerable

Constructors

TextSearchResults()

Declaration
public TextSearchResults()

Properties

Count

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Methods

Add(PageData, Int32)

Declaration
public void Add(PageData pageData, int pageRank)
Parameters
Type Name Description
PageData pageData
System.Int32 pageRank

GetEnumerator()

Retrive a PageRank enumerator.

Declaration
public IEnumerator<PageRank> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<PageRank>

ToList()

Declaration
public List<PageRank> ToList()
Returns
Type Description
System.Collections.Generic.List<PageRank>

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable

Extension Methods