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