Class OpaqueQueryNode
A OpaqueQueryNode is used for specify values that are not supposed to
be parsed by the parser. For example: and XPATH query in the middle of a
query string a b @xpath:'/bookstore/book[1]/title' c d
Inheritance
System.Object
OpaqueQueryNode
Assembly: Lucene.Net.QueryParser.dll
Syntax
public class OpaqueQueryNode : QueryNode, IQueryNode
Constructors
|
Improve this Doc
View Source
OpaqueQueryNode(String, String)
Declaration
public OpaqueQueryNode(string schema, string value)
Parameters
Type |
Name |
Description |
System.String |
schema |
schema identifier
|
System.String |
value |
value that was not parsed
|
Properties
|
Improve this Doc
View Source
Schema
Declaration
public virtual string Schema { get; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Value
Declaration
public virtual string Value { get; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
CloneTree()
Declaration
public override IQueryNode CloneTree()
Returns
Overrides
|
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