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

Represents a change occurred to the index, structured for easy dumping to disk or database.
The class is not thread-safe.
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
document DumpedDocument
mappings List
words List

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

Метод Описание
DumpedChange ( DumpedDocument document, List words, List mappings ) : System

Initializes a new instance of the DumpedChange class.

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

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

Initializes a new instance of the DumpedChange class.
If , or are null.
public DumpedChange ( DumpedDocument document, List words, List mappings ) : System
document DumpedDocument The dumped document data.
words List The list of dumped words data.
mappings List The list of dumped mappings data.
Результат System

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

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

The dumped document data.
protected DumpedDocument,ScrewTurn.Wiki.SearchEngine document
Результат DumpedDocument

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

The list of dumped mappings data.
protected List mappings
Результат List

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

The list of dumped words data.
protected List words
Результат List