Class AllDeletedFilterReader
Filters the incoming reader and makes all documents appear deleted.
Implements
Inherited Members
      FilterAtomicReader.Unwrap(AtomicReader)
    
    
      FilterAtomicReader.m_input
    
    
      FilterAtomicReader.FieldInfos
    
    
    
      FilterAtomicReader.MaxDoc
    
    
    
      FilterAtomicReader.DoClose()
    
    
      FilterAtomicReader.Fields
    
    
      FilterAtomicReader.ToString()
    
    
    
    
    
    
    
    
      FilterAtomicReader.CheckIntegrity()
    
    
      AtomicReader.Context
    
    
      AtomicReader.AtomicContext
    
    
    
      AtomicReader.DocFreq(Term)
    
    
      AtomicReader.TotalTermFreq(Term)
    
    
    
    
    
    
      AtomicReader.GetTermDocsEnum(Term)
    
    
      AtomicReader.GetTermPositionsEnum(Term)
    
    
      IndexReader.AddReaderDisposedListener(IReaderDisposedListener)
    
    
      IndexReader.RemoveReaderDisposedListener(IReaderDisposedListener)
    
    
      IndexReader.RegisterParentReader(IndexReader)
    
    
      IndexReader.RefCount
    
    
      IndexReader.IncRef()
    
    
      IndexReader.TryIncRef()
    
    
      IndexReader.DecRef()
    
    
      IndexReader.EnsureOpen()
    
    
    
      IndexReader.GetHashCode()
    
    
      IndexReader.Open(Directory)
    
    
    
    
      IndexReader.Open(IndexCommit)
    
    
    
    
      IndexReader.NumDeletedDocs
    
    
    
    
      IndexReader.HasDeletions
    
    
      IndexReader.Dispose()
    
    
    
      IndexReader.Leaves
    
    
      IndexReader.CoreCacheKey
    
    
      IndexReader.CombinedCoreAndDeletesKey
    
    
    
    
    
  Namespace: Lucene.Net.Index
Assembly: Lucene.Net.TestFramework.dll
Syntax
public class AllDeletedFilterReader : FilterAtomicReader, IDisposable
  Constructors
AllDeletedFilterReader(AtomicReader)
Filters the incoming reader and makes all documents appear deleted.
Declaration
public AllDeletedFilterReader(AtomicReader @in)
  Parameters
| Type | Name | Description | 
|---|---|---|
| AtomicReader | in | 
Properties
LiveDocs
Returns the Lucene.Net.Util.IBits representing live (not
deleted) docs.  A set bit indicates the doc ID has not
been deleted.  If this method returns null it means
there are no deleted documents (all documents are
live).
Declaration
public override IBits LiveDocs { get; }
  Property Value
| Type | Description | 
|---|---|
| IBits | 
Overrides
Lucene.Net.Index.FilterAtomicReader.LiveDocs
  
  NumDocs
Returns the number of documents in this index.
Declaration
public override int NumDocs { get; }
  Property Value
| Type | Description | 
|---|---|
| int | 
Overrides
Lucene.Net.Index.FilterAtomicReader.NumDocs