Initializes a new instance of the BoostingQuery class

Namespace: Lucene.Net.Search
Assembly: Lucene.Net.Contrib.Queries (in Lucene.Net.Contrib.Queries.dll) Version: 2.9.2.0 (2.9.2)

Syntax

C#
public BoostingQuery(
	Query match,
	Query context,
	float boost
)
Visual Basic
Public Sub New ( _
	match As Query, _
	context As Query, _
	boost As Single _
)
Visual C++
public:
BoostingQuery(
	Query^ match, 
	Query^ context, 
	float boost
)

Parameters

match
Type: Lucene.Net.Search..::..Query

[Missing <param name="match"/> documentation for "M:Lucene.Net.Search.BoostingQuery.#ctor(Lucene.Net.Search.Query,Lucene.Net.Search.Query,System.Single)"]

context
Type: Lucene.Net.Search..::..Query

[Missing <param name="context"/> documentation for "M:Lucene.Net.Search.BoostingQuery.#ctor(Lucene.Net.Search.Query,Lucene.Net.Search.Query,System.Single)"]

boost
Type: System..::..Single

[Missing <param name="boost"/> documentation for "M:Lucene.Net.Search.BoostingQuery.#ctor(Lucene.Net.Search.Query,Lucene.Net.Search.Query,System.Single)"]

See Also