Class Filter
Abstract base class for restricting which documents may be returned during searching.
Inheritance
System.Object
Filter
Namespace:
Assembly: Lucene.Net.NetCore.dll
Syntax
public abstract class Filter : object
Methods
Name | Description |
---|---|
GetDocIdSet(IndexReader) | Creates a DocIdSet enumerating the documents that should be permitted in search results. NOTE: null can be returned if no documents are accepted by this Filter.
Note: This method will be called once per segment in the index during searching. The returned DocIdSet must refer to document IDs for that segment, not for the top-level reader. |