ScrewTurn.Wiki.SearchEngine.IndexStorerResult.IndexStorerResult C# (CSharp) Méthode

IndexStorerResult() public méthode

Initializes a new instance of the T:IndexStorerResult class.
public IndexStorerResult ( uint documentId, List wordIds ) : System
documentId uint The ID of the document just stored, if any.
wordIds List The IDs of the words just stored, if any.
Résultat System
        public IndexStorerResult(uint? documentId, List<WordId> wordIds)
        {
            this.documentId = documentId;
            this.wordIds = wordIds;
        }
IndexStorerResult