Lucene.Net.Search.TestMatchAllDocsQuery.AddDoc C# (CSharp) Method

AddDoc() private method

private AddDoc ( System text, Lucene.Net.Index.IndexWriter iw, float boost ) : void
text System
iw Lucene.Net.Index.IndexWriter
boost float
return void
		private void  AddDoc(System.String text, IndexWriter iw, float boost)
		{
			Document doc = new Document();
			Field f = new Field("key", text, Field.Store.YES, Field.Index.ANALYZED);
			f.Boost = boost;
			doc.Add(f);
			iw.AddDocument(doc);
		}
	}