Lucene.Net.Search.FilteredDocIdSet.Match C# (CSharp) 메소드

Match() 보호된 추상적인 메소드

Validation method to determine whether a docid should be in the result set.
protected abstract Match ( int docid ) : bool
docid int docid to be tested
리턴 bool
        protected abstract bool Match(int docid);

Usage Example

예제 #1
0
 protected override bool Match(int docid)
 {
     return(outerInstance.Match(docid));
 }
All Usage Examples Of Lucene.Net.Search.FilteredDocIdSet::Match