Class OrQueryNode
A OrQueryNode represents an OR boolean operation performed on a list
of nodes.
Inheritance
System.Object
OrQueryNode
Assembly: Lucene.Net.QueryParser.dll
Syntax
public class OrQueryNode : BooleanQueryNode, IQueryNode
Constructors
|
Improve this Doc
View Source
OrQueryNode(IList<IQueryNode>)
Declaration
public OrQueryNode(IList<IQueryNode> clauses)
Parameters
Type |
Name |
Description |
IList<IQueryNode> |
clauses |
the query nodes to be or'ed
|
Methods
|
Improve this Doc
View Source
ToQueryString(IEscapeQuerySyntax)
Declaration
public override string ToQueryString(IEscapeQuerySyntax escapeSyntaxParser)
Parameters
Returns
Type |
Description |
System.String |
|
Overrides
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
Implements