Lucene.Net.Index.IndexReader.this C# (CSharp) Méthode

this() public méthode

Returns the stored fields of the nth Document in this index.

NOTE: for performance reasons, this method does not check if the requested document is deleted, and therefore asking for a deleted document may yield unspecified results. Usually this is not required, however you can call IsDeleted(int) with the requested document ID to verify the document is not deleted.

public this ( int doc ) : Lucene.Net.Documents.Document
doc int
Résultat Lucene.Net.Documents.Document
	    public Document this[int doc]
	    {
	        get { return Document(doc); }
	    }