C# Class ScrewTurn.Wiki.SearchEngine.IndexChangedEventArgs

Contains arguments for the IndexChanged event of the IInMemoryIndex interface.
Inheritance: System.EventArgs
Mostrar archivo Open project: mono/ScrewTurnWiki Class Usage Examples

Public Methods

Method Description
IndexChangedEventArgs ( IDocument document, IndexChangeType change, DumpedChange changeData, object state ) : System

Initializes a new instance of the IndexChangedEventArgs class.

IndexChangedEventArgs ( IDocument document, IndexChangeType change, DumpedChange changeData, object state, IndexStorerResult result ) : System

Initializes a new instance of the IndexChangedEventArgs class.

Method Details

IndexChangedEventArgs() public method

Initializes a new instance of the IndexChangedEventArgs class.
If is not and or are null.
public IndexChangedEventArgs ( IDocument document, IndexChangeType change, DumpedChange changeData, object state ) : System
document IDocument The affected document.
change IndexChangeType The change performed.
changeData DumpedChange The dumped change data.
state object A state object that is passed to the IndexStorer SaveDate/DeleteData function.
return System

IndexChangedEventArgs() public method

Initializes a new instance of the IndexChangedEventArgs class.
If is not and or are null.
public IndexChangedEventArgs ( IDocument document, IndexChangeType change, DumpedChange changeData, object state, IndexStorerResult result ) : System
document IDocument The affected document.
change IndexChangeType The change performed.
changeData DumpedChange The dumped change data.
state object A state object that is passed to the IndexStorer SaveDate/DeleteData function.
result IndexStorerResult The storer result, if any.
return System