C# Класс ScrewTurn.Wiki.SearchEngine.SearchResult

Represents a search result.
Instance and static members are not thread-safe.
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
document IDocument
matches WordInfoCollection
relevance Relevance

Открытые методы

Метод Описание
SearchResult ( IDocument document ) : System

Initializes a new instance of the SearchResult class.

The relevance is initially set to 0.

ToString ( ) : string

Gets a string representation of the current instance.

Описание методов

SearchResult() публичный Метод

Initializes a new instance of the SearchResult class.
The relevance is initially set to 0.
If is null.
public SearchResult ( IDocument document ) : System
document IDocument The document the result refers to.
Результат System

ToString() публичный Метод

Gets a string representation of the current instance.
public ToString ( ) : string
Результат string

Описание свойств

document защищенное свойство

The document the result refers to.
protected IDocument document
Результат IDocument

matches защищенное свойство

The matches in the document.
protected WordInfoCollection matches
Результат WordInfoCollection

relevance защищенное свойство

The result relevance.
protected Relevance,ScrewTurn.Wiki.SearchEngine relevance
Результат Relevance