C# Class ScrewTurn.Wiki.SearchEngine.DumpedWord

Represents a word 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
id uint
text string

Méthodes publiques

Méthode Description
DumpedWord ( Word word ) : System

Initializes a new instance of the DumpedWord class.

DumpedWord ( uint id, string text ) : System

Initializes a new instance of the DumpedWord class.

Method Details

DumpedWord() public méthode

Initializes a new instance of the DumpedWord class.
If is null.
public DumpedWord ( Word word ) : System
word Word The word to extract the information from.
Résultat System

DumpedWord() public méthode

Initializes a new instance of the DumpedWord class.
If is null. If is empty.
public DumpedWord ( uint id, string text ) : System
id uint The unique word ID.
text string The word culture-invariant lowercase text.
Résultat System

Property Details

id protected_oe property

The word unique ID.
protected uint id
Résultat uint

text protected_oe property

The word culture-invariant lowercase text.
protected string text
Résultat string