blob: 8d071463a395fe302ecd0f51af77c0539bae3db0 [file] [log] [blame]
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class QueryParser
| Apache Lucene.NET 4.8.0-beta00010 Documentation </title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class QueryParser
| Apache Lucene.NET 4.8.0-beta00010 Documentation ">
<meta name="generator" content="docfx 2.56.0.0">
<link rel="shortcut icon" href="https://lucenenet.apache.org/docs/4.8.0-beta00009/logo/favicon.ico">
<link rel="stylesheet" href="https://lucenenet.apache.org/docs/4.8.0-beta00009/styles/docfx.vendor.css">
<link rel="stylesheet" href="https://lucenenet.apache.org/docs/4.8.0-beta00009/styles/docfx.css">
<link rel="stylesheet" href="https://lucenenet.apache.org/docs/4.8.0-beta00009/styles/main.css">
<meta property="docfx:navrel" content="toc.html">
<meta property="docfx:tocrel" content="queryparser/toc.html">
<meta property="docfx:rel" content="https://lucenenet.apache.org/docs/4.8.0-beta00009/">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img id="logo" class="svg" src="https://lucenenet.apache.org/docs/4.8.0-beta00009/logo/lucene-net-color.png" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search">
<ul class="level0 breadcrumb">
<li>
<a href="https://lucenenet.apache.org/docs/4.8.0-beta00009/">API</a>
<span id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</span>
</li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list"></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser">
<h1 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser" class="text-break">Class QueryParser
</h1>
<div class="markdown level0 summary"><p>This class is generated by JavaCC. The only method that clients should need
to call is <a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.html#Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse_System_String_">Parse(String)</a>.</p>
<p>
This parser generates queries that make use of position information
(Span queries). It provides positional operators (<code>w</code> and
<code>n</code>) that accept a numeric distance, as well as boolean
operators (<code>and</code>, <code>or</code>, and <code>not</code>,
wildcards (<code>///</code> and <code>?</code>), quoting (with
<code>&quot;</code>), and boosting (via <code>^</code>).
</p>
<p>
The operators (W, N, AND, OR, NOT) can be expressed lower-cased or
upper-cased, and the non-unary operators (everything but NOT) support
both infix <code>(a AND b AND c)</code> and prefix <code>AND(a, b,
c)</code> notation.
</p>
<p>
The W and N operators express a positional relationship among their
operands. N is ordered, and W is unordered. The distance is 1 by
default, meaning the operands are adjacent, or may be provided as a
prefix from 2-99. So, for example, 3W(a, b) means that terms a and b
must appear within three positions of each other, or in other words, up
to two terms may appear between a and b.
</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">QueryParser</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.html">Lucene.Net.QueryParsers.Surround.Parser</a></h6>
<h6><strong>Assembly</strong>: Lucene.Net.QueryParser.dll</h6>
<h5 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class QueryParser</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L78">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.#ctor*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.#ctor">QueryParser()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public QueryParser()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_Lucene_Net_QueryParsers_Surround_Parser_ICharStream_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.%23ctor(Lucene.Net.QueryParsers.Surround.Parser.ICharStream)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L625">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.#ctor*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_Lucene_Net_QueryParsers_Surround_Parser_ICharStream_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.#ctor(Lucene.Net.QueryParsers.Surround.Parser.ICharStream)">QueryParser(ICharStream)</h4>
<div class="markdown level1 summary"><p>Constructor with user supplied <a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.ICharStream.html">ICharStream</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public QueryParser(ICharStream stream)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.ICharStream.html">ICharStream</a></td>
<td><span class="parametername">stream</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_Lucene_Net_QueryParsers_Surround_Parser_QueryParserTokenManager_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.%23ctor(Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L647">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.#ctor*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser__ctor_Lucene_Net_QueryParsers_Surround_Parser_QueryParserTokenManager_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.#ctor(Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager)">QueryParser(QueryParserTokenManager)</h4>
<div class="markdown level1 summary"><p>Constructor with generated Token Manager.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public QueryParser(QueryParserTokenManager tm)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager.html">QueryParserTokenManager</a></td>
<td><span class="parametername">tm</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Jj_nt.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Jj_nt%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L602">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Jj_nt_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Jj_nt*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Jj_nt" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Jj_nt">Jj_nt</h4>
<div class="markdown level1 summary"><p>Next token.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Token Jj_nt { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Token.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Token%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L600">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Token_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Token*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Token" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Token">Token</h4>
<div class="markdown level1 summary"><p>Current token.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Token Token { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_TokenSource.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.TokenSource%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L598">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_TokenSource_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.TokenSource*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_TokenSource" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.TokenSource">TokenSource</h4>
<div class="markdown level1 summary"><p>Generated Token Manager.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public QueryParserTokenManager TokenSource { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager.html">QueryParserTokenManager</a></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AllowedSuffix_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AllowedSuffix(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L158">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AllowedSuffix_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AllowedSuffix*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AllowedSuffix_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AllowedSuffix(System.String)">AllowedSuffix(String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual bool AllowedSuffix(string suffixed)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">suffixed</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AllowedTruncation_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AllowedTruncation(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L169">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AllowedTruncation_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AllowedTruncation*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AllowedTruncation_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AllowedTruncation(System.String)">AllowedTruncation(String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual bool AllowedTruncation(string truncated)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">truncated</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AndQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AndQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L270">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AndQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AndQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_AndQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.AndQuery">AndQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery AndQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_CheckDistanceSubQueries_Lucene_Net_QueryParsers_Surround_Query_DistanceQuery_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.CheckDistanceSubQueries(Lucene.Net.QueryParsers.Surround.Query.DistanceQuery%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L128">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_CheckDistanceSubQueries_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.CheckDistanceSubQueries*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_CheckDistanceSubQueries_Lucene_Net_QueryParsers_Surround_Query_DistanceQuery_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.CheckDistanceSubQueries(Lucene.Net.QueryParsers.Surround.Query.DistanceQuery,System.String)">CheckDistanceSubQueries(DistanceQuery, String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected static void CheckDistanceSubQueries(DistanceQuery distq, string opName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.DistanceQuery.html">DistanceQuery</a></td>
<td><span class="parametername">distq</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">opName</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Disable_tracing.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Disable_tracing%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L872">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Disable_tracing_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Disable_tracing*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Disable_tracing" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Disable_tracing">Disable_tracing()</h4>
<div class="markdown level1 summary"><p>Disable tracing. </p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void Disable_tracing()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Enable_tracing.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Enable_tracing%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L867">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Enable_tracing_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Enable_tracing*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Enable_tracing" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Enable_tracing">Enable_tracing()</h4>
<div class="markdown level1 summary"><p>Enable tracing. </p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void Enable_tracing()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_FieldsQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.FieldsQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L198">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_FieldsQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.FieldsQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_FieldsQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.FieldsQuery">FieldsQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery FieldsQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_FieldsQueryList.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.FieldsQueryList%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L470">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_FieldsQueryList_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.FieldsQueryList*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_FieldsQueryList" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.FieldsQueryList">FieldsQueryList()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IList&lt;SrndQuery&gt; FieldsQueryList()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a>&gt;</td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GenerateParseException.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GenerateParseException%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L824">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GenerateParseException_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GenerateParseException*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GenerateParseException" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GenerateParseException">GenerateParseException()</h4>
<div class="markdown level1 summary"><p>Generate ParseException.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual ParseException GenerateParseException()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.ParseException.html">ParseException</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetAndQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__System_Boolean_Lucene_Net_QueryParsers_Surround_Parser_Token_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetAndQuery(System.Collections.Generic.IList%7BLucene.Net.QueryParsers.Surround.Query.SrndQuery%7D%2CSystem.Boolean%2CLucene.Net.QueryParsers.Surround.Parser.Token)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L110">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetAndQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetAndQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetAndQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__System_Boolean_Lucene_Net_QueryParsers_Surround_Parser_Token_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetAndQuery(System.Collections.Generic.IList{Lucene.Net.QueryParsers.Surround.Query.SrndQuery},System.Boolean,Lucene.Net.QueryParsers.Surround.Parser.Token)">GetAndQuery(IList&lt;SrndQuery&gt;, Boolean, Token)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetAndQuery(IList&lt;SrndQuery&gt; queries, bool infix, Token andToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a>&gt;</td>
<td><span class="parametername">queries</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">infix</span></td>
<td></td>
</tr>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td><span class="parametername">andToken</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetDistanceQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__System_Boolean_Lucene_Net_QueryParsers_Surround_Parser_Token_System_Boolean_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetDistanceQuery(System.Collections.Generic.IList%7BLucene.Net.QueryParsers.Surround.Query.SrndQuery%7D%2CSystem.Boolean%2CLucene.Net.QueryParsers.Surround.Parser.Token%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L137">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetDistanceQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetDistanceQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetDistanceQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__System_Boolean_Lucene_Net_QueryParsers_Surround_Parser_Token_System_Boolean_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetDistanceQuery(System.Collections.Generic.IList{Lucene.Net.QueryParsers.Surround.Query.SrndQuery},System.Boolean,Lucene.Net.QueryParsers.Surround.Parser.Token,System.Boolean)">GetDistanceQuery(IList&lt;SrndQuery&gt;, Boolean, Token, Boolean)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetDistanceQuery(IList&lt;SrndQuery&gt; queries, bool infix, Token dToken, bool ordered)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a>&gt;</td>
<td><span class="parametername">queries</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">infix</span></td>
<td></td>
</tr>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td><span class="parametername">dToken</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">ordered</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetFieldsQuery_Lucene_Net_QueryParsers_Surround_Query_SrndQuery_System_Collections_Generic_IList_System_String__.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetFieldsQuery(Lucene.Net.QueryParsers.Surround.Query.SrndQuery%2CSystem.Collections.Generic.IList%7BSystem.String%7D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L96">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetFieldsQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetFieldsQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetFieldsQuery_Lucene_Net_QueryParsers_Surround_Query_SrndQuery_System_Collections_Generic_IList_System_String__" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetFieldsQuery(Lucene.Net.QueryParsers.Surround.Query.SrndQuery,System.Collections.Generic.IList{System.String})">GetFieldsQuery(SrndQuery, IList&lt;String&gt;)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetFieldsQuery(SrndQuery q, IList&lt;string&gt; fieldNames)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td><span class="parametername">q</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td><span class="parametername">fieldNames</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetNextToken.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetNextToken%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L753">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetNextToken_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetNextToken*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetNextToken" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetNextToken">GetNextToken()</h4>
<div class="markdown level1 summary"><p>Get the next Token.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Token GetNextToken()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetNotQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__Lucene_Net_QueryParsers_Surround_Parser_Token_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetNotQuery(System.Collections.Generic.IList%7BLucene.Net.QueryParsers.Surround.Query.SrndQuery%7D%2CLucene.Net.QueryParsers.Surround.Parser.Token)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L115">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetNotQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetNotQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetNotQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__Lucene_Net_QueryParsers_Surround_Parser_Token_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetNotQuery(System.Collections.Generic.IList{Lucene.Net.QueryParsers.Surround.Query.SrndQuery},Lucene.Net.QueryParsers.Surround.Parser.Token)">GetNotQuery(IList&lt;SrndQuery&gt;, Token)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetNotQuery(IList&lt;SrndQuery&gt; queries, Token notToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a>&gt;</td>
<td><span class="parametername">queries</span></td>
<td></td>
</tr>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td><span class="parametername">notToken</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetOpDistance_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetOpDistance(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L120">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetOpDistance_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetOpDistance*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetOpDistance_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetOpDistance(System.String)">GetOpDistance(String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected static int GetOpDistance(string distanceOp)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">distanceOp</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetOrQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__System_Boolean_Lucene_Net_QueryParsers_Surround_Parser_Token_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetOrQuery(System.Collections.Generic.IList%7BLucene.Net.QueryParsers.Surround.Query.SrndQuery%7D%2CSystem.Boolean%2CLucene.Net.QueryParsers.Surround.Parser.Token)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L105">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetOrQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetOrQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetOrQuery_System_Collections_Generic_IList_Lucene_Net_QueryParsers_Surround_Query_SrndQuery__System_Boolean_Lucene_Net_QueryParsers_Surround_Parser_Token_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetOrQuery(System.Collections.Generic.IList{Lucene.Net.QueryParsers.Surround.Query.SrndQuery},System.Boolean,Lucene.Net.QueryParsers.Surround.Parser.Token)">GetOrQuery(IList&lt;SrndQuery&gt;, Boolean, Token)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetOrQuery(IList&lt;SrndQuery&gt; queries, bool infix, Token orToken)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a>&gt;</td>
<td><span class="parametername">queries</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">infix</span></td>
<td></td>
</tr>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td><span class="parametername">orToken</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetPrefixQuery_System_String_System_Boolean_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetPrefixQuery(System.String%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L163">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetPrefixQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetPrefixQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetPrefixQuery_System_String_System_Boolean_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetPrefixQuery(System.String,System.Boolean)">GetPrefixQuery(String, Boolean)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetPrefixQuery(string prefix, bool quoted)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">prefix</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">quoted</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetTermQuery_System_String_System_Boolean_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetTermQuery(System.String%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L152">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetTermQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetTermQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetTermQuery_System_String_System_Boolean_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetTermQuery(System.String,System.Boolean)">GetTermQuery(String, Boolean)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetTermQuery(string term, bool quoted)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">term</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">quoted</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetToken_System_Int32_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetToken(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L763">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetToken_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetToken*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetToken_System_Int32_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetToken(System.Int32)">GetToken(Int32)</h4>
<div class="markdown level1 summary"><p>Get the specific Token.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Token GetToken(int index)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">index</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.Token.html">Token</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetTruncQuery_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetTruncQuery(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L184">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetTruncQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetTruncQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_GetTruncQuery_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.GetTruncQuery(System.String)">GetTruncQuery(String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual SrndQuery GetTruncQuery(string truncated)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">truncated</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_NotQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.NotQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L303">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_NotQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.NotQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_NotQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.NotQuery">NotQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery NotQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_NQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.NQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L336">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_NQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.NQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_NQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.NQuery">NQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery NQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OptionalFields.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OptionalFields%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L208">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OptionalFields_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OptionalFields*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OptionalFields" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OptionalFields">OptionalFields()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IList&lt;string&gt; OptionalFields()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span>&lt;<span class="xref">System.String</span>&gt;</td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OptionalWeights_Lucene_Net_QueryParsers_Surround_Query_SrndQuery_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OptionalWeights(Lucene.Net.QueryParsers.Surround.Query.SrndQuery)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L547">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OptionalWeights_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OptionalWeights*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OptionalWeights_Lucene_Net_QueryParsers_Surround_Query_SrndQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OptionalWeights(Lucene.Net.QueryParsers.Surround.Query.SrndQuery)">OptionalWeights(SrndQuery)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void OptionalWeights(SrndQuery q)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td><span class="parametername">q</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OrQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OrQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L237">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OrQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OrQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_OrQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.OrQuery">OrQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery OrQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Parse(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L72">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Parse*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Parse(System.String)">Parse(String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static SrndQuery Parse(string query)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">query</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse2_System_String_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Parse2(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L83">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse2_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Parse2*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_Parse2_System_String_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.Parse2(System.String)">Parse2(String)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual SrndQuery Parse2(string query)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">query</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_PrefixOperatorQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.PrefixOperatorQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L432">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_PrefixOperatorQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.PrefixOperatorQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_PrefixOperatorQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.PrefixOperatorQuery">PrefixOperatorQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery PrefixOperatorQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_PrimaryQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.PrimaryQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L398">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_PrimaryQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.PrimaryQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_PrimaryQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.PrimaryQuery">PrimaryQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery PrimaryQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_ReInit_Lucene_Net_QueryParsers_Surround_Parser_ICharStream_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.ReInit(Lucene.Net.QueryParsers.Surround.Parser.ICharStream)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L636">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_ReInit_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.ReInit*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_ReInit_Lucene_Net_QueryParsers_Surround_Parser_ICharStream_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.ReInit(Lucene.Net.QueryParsers.Surround.Parser.ICharStream)">ReInit(ICharStream)</h4>
<div class="markdown level1 summary"><p>Reinitialize.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual void ReInit(ICharStream stream)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.ICharStream.html">ICharStream</a></td>
<td><span class="parametername">stream</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_ReInit_Lucene_Net_QueryParsers_Surround_Parser_QueryParserTokenManager_.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.ReInit(Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L658">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_ReInit_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.ReInit*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_ReInit_Lucene_Net_QueryParsers_Surround_Parser_QueryParserTokenManager_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.ReInit(Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager)">ReInit(QueryParserTokenManager)</h4>
<div class="markdown level1 summary"><p>Reinitialize.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual void ReInit(QueryParserTokenManager tm)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Parser.QueryParserTokenManager.html">QueryParserTokenManager</a></td>
<td><span class="parametername">tm</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_SimpleTerm.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.SimpleTerm%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L499">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_SimpleTerm_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.SimpleTerm*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_SimpleTerm" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.SimpleTerm">SimpleTerm()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery SimpleTerm()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_TopSrndQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.TopSrndQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L189">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_TopSrndQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.TopSrndQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_TopSrndQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.TopSrndQuery">TopSrndQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery TopSrndQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser_WQuery.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser.WQuery%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/NightOwl888/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L367">View Source</a>
</span>
<a id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_WQuery_" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.WQuery*"></a>
<h4 id="Lucene_Net_QueryParsers_Surround_Parser_QueryParser_WQuery" data-uid="Lucene.Net.QueryParsers.Surround.Parser.QueryParser.WQuery">WQuery()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SrndQuery WQuery()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Lucene.Net.QueryParsers.Surround.Query.SrndQuery.html">SrndQuery</a></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/apache/lucenenet/new/docs/4.8.0-beta00010/websites/apidocs/apiSpec/new?filename=Lucene_Net_QueryParsers_Surround_Parser_QueryParser.md&amp;value=---%0Auid%3A%20Lucene.Net.QueryParsers.Surround.Parser.QueryParser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/apache/lucenenet/blob/release/Lucene.Net_4_8_0_beta00010/src/Lucene.Net.QueryParser/Surround/Parser/QueryParser.cs/#L57" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
Copyright © 2020 Licensed to the Apache Software Foundation (ASF)
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="https://lucenenet.apache.org/docs/4.8.0-beta00009/styles/docfx.vendor.js"></script>
<script type="text/javascript" src="https://lucenenet.apache.org/docs/4.8.0-beta00009/styles/docfx.js"></script>
<script type="text/javascript" src="https://lucenenet.apache.org/docs/4.8.0-beta00009/styles/main.js"></script>
</body>
</html>