The `MaxDoc` property in Lucene.Net's `IndexWriter` class represents the maximum number of documents that have been added to the index, including deleted documents. It indicates the total number of documents that can be accessed in the index, regardless of whether they are deleted or not. This property is useful when performing operations that involve the entire index, such as calculating statistics or estimating the size of the index.
C# (CSharp) Lucene.Net.Index IndexWriter.MaxDoc - 42 examples found. These are the top rated real world C# (CSharp) examples of Lucene.Net.Index.IndexWriter.MaxDoc extracted from open source projects. You can rate examples to help us improve the quality of examples.