Class IndexReaderContext
A struct like class that represents a hierarchical relationship between IndexReader instances.
Inheritance
Assembly: DistributedLucene.Net.dll
Syntax
public abstract class IndexReaderContext : object
Properties
Name | Description |
---|---|
Children | Returns the context's children iff this context is a composite context
otherwise |
DocBaseInParent | the doc base for this reader in the parent, |
IsTopLevel |
|
Leaves | Returns the context's leaves if this context is a top-level context. For convenience, if this is an AtomicReaderContext this returns itself as the only leaf. Note: this is convenience method since leaves can always be obtained by walking the context tree using Children. |
OrdInParent | the ord for this reader in the parent, |
Parent | The reader context for this reader's immediate parent, or null if none |
Reader | Returns the IndexReader, this context represents. |