C# Класс Bamboo.Prevalence.Indexing.FullText.Postings

Наследование: System.Collections.IEnumerable
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Add ( IRecord record, IndexedField field, int position ) : void

Adds a new occurrence of the term. The occurrence information (field and position) will be added to an existing Posting object whenever possible.

GetEnumerator ( ) : System.Collections.IEnumerator

Enumerates through all the Posting objects.

Postings ( string term ) : System

Creates a new Postings object for a term.

Remove ( IRecord record ) : void

Removes all information related to a specific record from this object.

ToString ( ) : string

Builds a readable representation of this object.

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

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

Adds a new occurrence of the term. The occurrence information (field and position) will be added to an existing Posting object whenever possible.
public Add ( IRecord record, IndexedField field, int position ) : void
record IRecord the record where the term was found
field IndexedField the field where the term was found
position int the position in the field where the term was found
Результат void

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

Enumerates through all the Posting objects.
public GetEnumerator ( ) : System.Collections.IEnumerator
Результат System.Collections.IEnumerator

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

Creates a new Postings object for a term.
public Postings ( string term ) : System
term string the term
Результат System

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

Removes all information related to a specific record from this object.
public Remove ( IRecord record ) : void
record IRecord the record to be removed
Результат void

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

Builds a readable representation of this object.
public ToString ( ) : string
Результат string