Lucene.Net.Search.FilteredDocIdSet.Match C# (CSharp) Method

Match() protected abstract method

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
return 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