Inheritance: Lucene.Net.Search.Query
 internal MatchNoDocsScorer(MatchNoDocsQuery enclosingInstance, IndexReader reader, Similarity similarity, Weight w, byte[] norms)
     : base(similarity)
 {
     this.InitBlock(enclosingInstance);
     this.termDocs = reader.TermDocs((Term)null);
     this.score    = w.Value;
     this.norms    = norms;
 }
 private void InitBlock(MatchNoDocsQuery enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
 public MatchNoDocsWeight(MatchNoDocsQuery enclosingInstance, Searcher searcher)
 {
     this.InitBlock(enclosingInstance);
     this.similarity = searcher.Similarity;
 }
 internal MatchNoDocsScorer(MatchNoDocsQuery enclosingInstance, IndexReader reader, Similarity similarity, Weight w, byte[] norms)
   : base(similarity)
 {
     this.InitBlock(enclosingInstance);
     this.termDocs = reader.TermDocs((Term)null);
     this.score = w.Value;
     this.norms = norms;
 }
 private void InitBlock(MatchNoDocsQuery enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
 public MatchNoDocsWeight(MatchNoDocsQuery enclosingInstance, Searcher searcher)
 {
     this.InitBlock(enclosingInstance);
     this.similarity = searcher.Similarity;
 }