C# Class 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.
Afficher le fichier Open project: mono/ScrewTurnWiki Class Usage Examples

Protected Properties

Свойство Type Description
document DumpedDocument
mappings List
words List

Méthodes publiques

Méthode Description
DumpedChange ( DumpedDocument document, List words, List mappings ) : System

Initializes a new instance of the DumpedChange class.

Method Details

DumpedChange() public méthode

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.
Résultat System

Property Details

document protected_oe property

The dumped document data.
protected DumpedDocument,ScrewTurn.Wiki.SearchEngine document
Résultat DumpedDocument

mappings protected_oe property

The list of dumped mappings data.
protected List mappings
Résultat List

words protected_oe property

The list of dumped words data.
protected List words
Résultat List