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
Пример #1
0
 protected override bool Match(int docid)
 {
     return(outerInstance.Match(docid));
 }
Пример #2
0
 public virtual bool Get(int docid)
 {
     return(bits.Get(docid) && outerInstance.Match(docid));
 }
Пример #3
0
 protected internal override bool Match(int docid)
 {
     return(OuterInstance.Match(docid));
 }