commit 564e156ce202785c1b96cf581f0f4db3b19b85ac Author: editor <@51Aspx.com> Date: Sun Jul 30 19:19:57 2023 +0800 初始化 diff --git a/51aspx源码必读.txt b/51aspx源码必读.txt new file mode 100644 index 0000000..7af05de --- /dev/null +++ b/51aspx源码必读.txt @@ -0,0 +1,32 @@ +DotLucene演示源码 + +DotLucene演示源码 +DotLucene实际是Lucene的Asp.net版本,也称为lucene.net该项目的原型为DotLuceneAPISearchDemo-1.1,后经51aspx升级为Asp.net2.0版本并改为WebApplication类型 +该demo演示了Lucene的常用功能(智能分词、关键字高亮等) +在测试自定义添加数据后点击建立索引按钮才能生效(此功能由51aspx添加),原版只检索目录下的html文件,51Aspx改为了检索所有文件 +1) Indexer文件夹:索引命令源码其下包括文件目录- Indexer- lib +2) Searcher文件夹:示例演示目录- 1.4 文件夹下为相关的英文文档(同时也是索引测试数据源)- index 索引数据存放目录 +该示例中DotLucene版本为 1.3,Highlighter版本为1.3.2.1,如果下载最新的lucene(Lucene.Net-2.0-004)源码及Dll文件请打开:http://www.51aspx.com/CV/LuceneSql +  + + +作者: DotLucene + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/DotLucene +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/Indexer/AssemblyInfo.cs b/Indexer/AssemblyInfo.cs new file mode 100644 index 0000000..b80359f --- /dev/null +++ b/Indexer/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] diff --git a/Indexer/Go.cs b/Indexer/Go.cs new file mode 100644 index 0000000..ca6b2ca --- /dev/null +++ b/Indexer/Go.cs @@ -0,0 +1,15 @@ +/* + * Copyright 2005 dotlucene.net + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/Indexer/Indexer.csproj b/Indexer/Indexer.csproj new file mode 100644 index 0000000..975c6e0 --- /dev/null +++ b/Indexer/Indexer.csproj @@ -0,0 +1,15 @@ + + + Local + 8.0.50727 + 2.0 + {A7A4AC24-88E7-4995-AFEA-09BDE634C115} + Debug + AnyCPU + App.ico + + + Indexer + + + JScript diff --git a/Indexer/IntranetIndexer.cs b/Indexer/IntranetIndexer.cs new file mode 100644 index 0000000..f8fcd03 --- /dev/null +++ b/Indexer/IntranetIndexer.cs @@ -0,0 +1,15 @@ +/* + * Copyright 2005 dotlucene.net + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * 51-aspx + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/Indexer/obj/Indexer.csproj.FileListAbsolute.txt b/Indexer/obj/Indexer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..311b02e --- /dev/null +++ b/Indexer/obj/Indexer.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +E:\downcode\DotLuceneAPISearchDemo-1.1\Indexer\bin\Debug\Indexer.exe +E:\downcode\DotLuceneAPISearchDemo-1.1\Indexer\bin\Debug\Indexer.pdb +E:\downcode\DotLuceneAPISearchDemo-1.1\Indexer\bin\Debug\Lucene.Net.dll +E:\downcode\DotLuceneAPISearchDemo-1.1\Indexer\obj\Debug\ResolveAssemblyReference.cache +E:\downcode\DotLuceneAPISearchDemo-1.1\Indexer\obj\Debug\Indexer.exe +E:\downcode\DotLuceneAPISearchDemo-1.1\Indexer\obj\Debug\Indexer.pdb diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..6512e69 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,15 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..c01bf70 --- /dev/null +++ b/README.txt @@ -0,0 +1,15 @@ +DotLucene API Search Demo 1.0 +http://lucene.51aspx.com +--------------------------------------------------- + +Dependencies: +- DotLucene 1.3 +- Highlighter 1.3.2.1 + +There are two projects in the solution: + +1) Indexer + +Console application that creates the index. + +Consists of these directories: diff --git a/wwwroot/Searcher/1.4/(global).html b/wwwroot/Searcher/1.4/(global).html new file mode 100644 index 0000000..e8e8843 --- /dev/null +++ b/wwwroot/Searcher/1.4/(global).html @@ -0,0 +1,15 @@ + + + + + (global) + + + + + +
+
+ + + diff --git a/wwwroot/Searcher/1.4/(global)Hierarchy.html b/wwwroot/Searcher/1.4/(global)Hierarchy.html new file mode 100644 index 0000000..913fa5b --- /dev/null +++ b/wwwroot/Searcher/1.4/(global)Hierarchy.html @@ -0,0 +1,15 @@ + + + + + (global)Hierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/51aspx.txt b/wwwroot/Searcher/1.4/51aspx.txt new file mode 100644 index 0000000..56ab2b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/51aspx.txt @@ -0,0 +1,15 @@ +DotLucene��ʾԴ�� + +DotLuceneʵ����Lucene��Asp.net�汾��Ҳ��Ϊlucene.net +����Ŀ��ԭ��ΪDotLuceneAPISearchDemo-1.1����51aspx����ΪAsp.net2.0�汾����ΪWebApplication���� +1) Indexer�ļ��У���������Ŀ¼ +���°����ļ�Ŀ¼ +- Indexer +- lib + +2) Searcher�ļ��У�ʾ����ʾĿ¼��1.4�ļ�����Ϊ��ص�Ӣ���ĵ� +��ʾ����DotLucene�汾Ϊ 1.3��Highlighter�汾Ϊ1.3.2.1������������µ�lucence��Lucene.Net-2.0-004��Դ�뼰Dll�ļ���򿪣�http://www.51aspx.com/CV/LuceneSql + +���ߣ�DotLucene +Դ�����ؼ����۵�ַ��http://www.51aspx.com/CV/DotLucene + diff --git a/wwwroot/Searcher/1.4/IThreadRunnable.Run.html b/wwwroot/Searcher/1.4/IThreadRunnable.Run.html new file mode 100644 index 0000000..468edbd --- /dev/null +++ b/wwwroot/Searcher/1.4/IThreadRunnable.Run.html @@ -0,0 +1,15 @@ + + + + + IThreadRunnable.Run Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/IThreadRunnable.html b/wwwroot/Searcher/1.4/IThreadRunnable.html new file mode 100644 index 0000000..d754b58 --- /dev/null +++ b/wwwroot/Searcher/1.4/IThreadRunnable.html @@ -0,0 +1,15 @@ + + + + + IThreadRunnable Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/IThreadRunnableMembers.html b/wwwroot/Searcher/1.4/IThreadRunnableMembers.html new file mode 100644 index 0000000..364d0d9 --- /dev/null +++ b/wwwroot/Searcher/1.4/IThreadRunnableMembers.html @@ -0,0 +1,15 @@ + + + + + IThreadRunnable Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/IThreadRunnableMethods.html b/wwwroot/Searcher/1.4/IThreadRunnableMethods.html new file mode 100644 index 0000000..7d2dc66 --- /dev/null +++ b/wwwroot/Searcher/1.4/IThreadRunnableMethods.html @@ -0,0 +1,15 @@ + + + + + IThreadRunnable Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overload_1.html new file mode 100644 index 0000000..8cc70d2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overload_1.html @@ -0,0 +1,15 @@ + + + + + Analyzer.TokenStream Method (TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..4585c89 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + Analyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.html new file mode 100644 index 0000000..4a88810 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Analyzer.html @@ -0,0 +1,15 @@ + + + + + Analyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerConstructor.html new file mode 100644 index 0000000..7c98cac --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + Analyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerHierarchy.html new file mode 100644 index 0000000..f001674 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerHierarchy.html @@ -0,0 +1,15 @@ + + + + + Analyzer Hierarchy + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerMembers.html new file mode 100644 index 0000000..6730608 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + Analyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerMethods.html new file mode 100644 index 0000000..f8a1aec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.AnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + Analyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.IsTokenChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.IsTokenChar.html new file mode 100644 index 0000000..e25173b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.IsTokenChar.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer.IsTokenChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.Next.html new file mode 100644 index 0000000..fce62a6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.Next.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.Normalize.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.Normalize.html new file mode 100644 index 0000000..9f02a91 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.Normalize.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer.Normalize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.html new file mode 100644 index 0000000..be70a8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizer.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerConstructor.html new file mode 100644 index 0000000..b672fbd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerMembers.html new file mode 100644 index 0000000..e3de106 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerMethods.html new file mode 100644 index 0000000..c0f4eda --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.CharTokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + CharTokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_1.html new file mode 100644 index 0000000..9d99712 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_1.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer.SetStemExclusionTable Method (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_2.html new file mode 100644 index 0000000..a080347 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_2.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer.SetStemExclusionTable Method (Hashtable) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_3.html new file mode 100644 index 0000000..0ce23f9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overload_3.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer.SetStemExclusionTable Method (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overloads.html new file mode 100644 index 0000000..8dae9d5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.SetStemExclusionTable_overloads.html @@ -0,0 +1,15 @@ + + + + + SetStemExclusionTable Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..23e2f99 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.html new file mode 100644 index 0000000..b0bc60c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzer.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor.html new file mode 100644 index 0000000..1038911 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor1.html new file mode 100644 index 0000000..a5adfaf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor1.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor2.html new file mode 100644 index 0000000..1373675 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor2.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Constructor (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor3.html new file mode 100644 index 0000000..08bbfd9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor3.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Constructor (Hashtable) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor4.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor4.html new file mode 100644 index 0000000..11acd23 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerConstructor4.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Constructor (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerMembers.html new file mode 100644 index 0000000..8c5fedc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerMethods.html new file mode 100644 index 0000000..74157ba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanAnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + GermanAnalyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.Next.html new file mode 100644 index 0000000..c8895cc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.Next.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetExclusionSet.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetExclusionSet.html new file mode 100644 index 0000000..ea217cd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetExclusionSet.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter.SetExclusionSet Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetExclusionTable.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetExclusionTable.html new file mode 100644 index 0000000..45d4d39 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetExclusionTable.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter.SetExclusionTable Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetStemmer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetStemmer.html new file mode 100644 index 0000000..81d86fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.SetStemmer.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter.SetStemmer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.html new file mode 100644 index 0000000..a948617 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilter.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor.html new file mode 100644 index 0000000..d061b78 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor1.html new file mode 100644 index 0000000..8851098 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor1.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter Constructor (TokenStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor2.html new file mode 100644 index 0000000..d23f76e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterConstructor2.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter Constructor (TokenStream, Hashtable) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterMembers.html new file mode 100644 index 0000000..da4d2f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterMembers.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterMethods.html new file mode 100644 index 0000000..b15d4ce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemFilterMethods.html @@ -0,0 +1,15 @@ + + + + + GermanStemFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmer.Stem.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmer.Stem.html new file mode 100644 index 0000000..afbe345 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmer.Stem.html @@ -0,0 +1,15 @@ + + + + + GermanStemmer.Stem Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmer.html new file mode 100644 index 0000000..6b0ea81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmer.html @@ -0,0 +1,15 @@ + + + + + GermanStemmer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerConstructor.html new file mode 100644 index 0000000..92bc27b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerConstructor.html @@ -0,0 +1,15 @@ + + + + + GermanStemmer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerMembers.html new file mode 100644 index 0000000..6dce412 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerMembers.html @@ -0,0 +1,15 @@ + + + + + GermanStemmer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerMethods.html new file mode 100644 index 0000000..52cb961 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.GermanStemmerMethods.html @@ -0,0 +1,15 @@ + + + + + GermanStemmer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordSet.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordSet.html new file mode 100644 index 0000000..af88a49 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordSet.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader.GetWordSet Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_1.html new file mode 100644 index 0000000..0386682 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_1.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader.GetWordtable Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_2.html new file mode 100644 index 0000000..2f2c426 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_2.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader.GetWordtable Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_3.html new file mode 100644 index 0000000..cb382d9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overload_3.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader.GetWordtable Method (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overloads.html new file mode 100644 index 0000000..f0425ec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.GetWordtable_overloads.html @@ -0,0 +1,15 @@ + + + + + GetWordtable Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.html new file mode 100644 index 0000000..fe80279 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoader.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderConstructor.html new file mode 100644 index 0000000..f150ccc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderConstructor.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderMembers.html new file mode 100644 index 0000000..70d605c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderMembers.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderMethods.html new file mode 100644 index 0000000..81a4d47 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.WordlistLoaderMethods.html @@ -0,0 +1,15 @@ + + + + + WordlistLoader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.html new file mode 100644 index 0000000..d987d19 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DE.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis.DE + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DEHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DEHierarchy.html new file mode 100644 index 0000000..e396910 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.DEHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis.DEHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizer.IsTokenChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizer.IsTokenChar.html new file mode 100644 index 0000000..efbf541 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizer.IsTokenChar.html @@ -0,0 +1,15 @@ + + + + + LetterTokenizer.IsTokenChar Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizer.html new file mode 100644 index 0000000..e5d1263 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizer.html @@ -0,0 +1,15 @@ + + + + + LetterTokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerConstructor.html new file mode 100644 index 0000000..0796675 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + LetterTokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerMembers.html new file mode 100644 index 0000000..1ef8150 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + LetterTokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerMethods.html new file mode 100644 index 0000000..8074e5a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LetterTokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + LetterTokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilter.Next.html new file mode 100644 index 0000000..29324d9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilter.Next.html @@ -0,0 +1,15 @@ + + + + + LowerCaseFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilter.html new file mode 100644 index 0000000..48ab103 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilter.html @@ -0,0 +1,15 @@ + + + + + LowerCaseFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterConstructor.html new file mode 100644 index 0000000..c814c46 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + LowerCaseFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterMembers.html new file mode 100644 index 0000000..389c28b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterMembers.html @@ -0,0 +1,15 @@ + + + + + LowerCaseFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterMethods.html new file mode 100644 index 0000000..00ca30d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseFilterMethods.html @@ -0,0 +1,15 @@ + + + + + LowerCaseFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizer.Normalize.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizer.Normalize.html new file mode 100644 index 0000000..e344efd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizer.Normalize.html @@ -0,0 +1,15 @@ + + + + + LowerCaseTokenizer.Normalize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizer.html new file mode 100644 index 0000000..b482a07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizer.html @@ -0,0 +1,15 @@ + + + + + LowerCaseTokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerConstructor.html new file mode 100644 index 0000000..ec17533 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + LowerCaseTokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerMembers.html new file mode 100644 index 0000000..ff2d3a0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + LowerCaseTokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerMethods.html new file mode 100644 index 0000000..dcfb6c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.LowerCaseTokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + LowerCaseTokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.AddAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.AddAnalyzer.html new file mode 100644 index 0000000..e2be4d7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.AddAnalyzer.html @@ -0,0 +1,15 @@ + + + + + PerFieldAnalyzerWrapper.AddAnalyzer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.TokenStream_overload_2.html new file mode 100644 index 0000000..6532511 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + PerFieldAnalyzerWrapper.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.html new file mode 100644 index 0000000..3da0ab1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapper.html @@ -0,0 +1,15 @@ + + + + + PerFieldAnalyzerWrapper Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperConstructor.html new file mode 100644 index 0000000..6a45d8a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperConstructor.html @@ -0,0 +1,15 @@ + + + + + PerFieldAnalyzerWrapper Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperMembers.html new file mode 100644 index 0000000..614c1ae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperMembers.html @@ -0,0 +1,15 @@ + + + + + PerFieldAnalyzerWrapper Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperMethods.html new file mode 100644 index 0000000..79c792f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PerFieldAnalyzerWrapperMethods.html @@ -0,0 +1,15 @@ + + + + + PerFieldAnalyzerWrapper Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilter.Next.html new file mode 100644 index 0000000..322853e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilter.Next.html @@ -0,0 +1,15 @@ + + + + + PorterStemFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilter.html new file mode 100644 index 0000000..e4fdbb9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilter.html @@ -0,0 +1,15 @@ + + + + + PorterStemFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterConstructor.html new file mode 100644 index 0000000..efd5986 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + PorterStemFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterMembers.html new file mode 100644 index 0000000..7459c3f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterMembers.html @@ -0,0 +1,15 @@ + + + + + PorterStemFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterMethods.html new file mode 100644 index 0000000..b13b6d6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.PorterStemFilterMethods.html @@ -0,0 +1,15 @@ + + + + + PorterStemFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..988681e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.html new file mode 100644 index 0000000..9f44943 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzer.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor.html new file mode 100644 index 0000000..393b917 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor1.html new file mode 100644 index 0000000..192d7ad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor1.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor2.html new file mode 100644 index 0000000..906a3dd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor2.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Constructor (Char[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor3.html new file mode 100644 index 0000000..6e1f7d0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor3.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Constructor (Char[], String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor4.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor4.html new file mode 100644 index 0000000..770fcbc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerConstructor4.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Constructor (Char[], Hashtable) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerMembers.html new file mode 100644 index 0000000..015b9b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerMethods.html new file mode 100644 index 0000000..1830945 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianAnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + RussianAnalyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.CP1251.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.CP1251.html new file mode 100644 index 0000000..72e938e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.CP1251.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets.CP1251 Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.KOI8.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.KOI8.html new file mode 100644 index 0000000..90dbb08 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.KOI8.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets.KOI8 Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.ToLowerCase.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.ToLowerCase.html new file mode 100644 index 0000000..416d52b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.ToLowerCase.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets.ToLowerCase Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.UnicodeRussian.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.UnicodeRussian.html new file mode 100644 index 0000000..ec4966f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.UnicodeRussian.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets.UnicodeRussian Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.html new file mode 100644 index 0000000..446f98b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsets.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsConstructor.html new file mode 100644 index 0000000..636d1d5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsConstructor.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsFields.html new file mode 100644 index 0000000..1be5ade --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsFields.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsMembers.html new file mode 100644 index 0000000..d5c2b4a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsMembers.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsMethods.html new file mode 100644 index 0000000..396a838 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianCharsetsMethods.html @@ -0,0 +1,15 @@ + + + + + RussianCharsets Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizer.IsTokenChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizer.IsTokenChar.html new file mode 100644 index 0000000..7f0927d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizer.IsTokenChar.html @@ -0,0 +1,15 @@ + + + + + RussianLetterTokenizer.IsTokenChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizer.html new file mode 100644 index 0000000..1772af0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizer.html @@ -0,0 +1,15 @@ + + + + + RussianLetterTokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerConstructor.html new file mode 100644 index 0000000..738056c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + RussianLetterTokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerMembers.html new file mode 100644 index 0000000..2831ec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + RussianLetterTokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerMethods.html new file mode 100644 index 0000000..9a06963 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLetterTokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + RussianLetterTokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilter.Next.html new file mode 100644 index 0000000..5500b84 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilter.Next.html @@ -0,0 +1,15 @@ + + + + + RussianLowerCaseFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilter.html new file mode 100644 index 0000000..e2682c8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilter.html @@ -0,0 +1,15 @@ + + + + + RussianLowerCaseFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterConstructor.html new file mode 100644 index 0000000..062d1da --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + RussianLowerCaseFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterMembers.html new file mode 100644 index 0000000..97cf3e2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterMembers.html @@ -0,0 +1,15 @@ + + + + + RussianLowerCaseFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterMethods.html new file mode 100644 index 0000000..e0a3333 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianLowerCaseFilterMethods.html @@ -0,0 +1,15 @@ + + + + + RussianLowerCaseFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.Next.html new file mode 100644 index 0000000..7b13502 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.Next.html @@ -0,0 +1,15 @@ + + + + + RussianStemFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.SetStemmer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.SetStemmer.html new file mode 100644 index 0000000..157c4b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.SetStemmer.html @@ -0,0 +1,15 @@ + + + + + RussianStemFilter.SetStemmer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.html new file mode 100644 index 0000000..169ae9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilter.html @@ -0,0 +1,15 @@ + + + + + RussianStemFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterConstructor.html new file mode 100644 index 0000000..4db9a3b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + RussianStemFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterMembers.html new file mode 100644 index 0000000..4a57300 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterMembers.html @@ -0,0 +1,15 @@ + + + + + RussianStemFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterMethods.html new file mode 100644 index 0000000..9453ab8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemFilterMethods.html @@ -0,0 +1,15 @@ + + + + + RussianStemFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.SetCharset.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.SetCharset.html new file mode 100644 index 0000000..307f5e1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.SetCharset.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer.SetCharset Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overload_1.html new file mode 100644 index 0000000..37c61ce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overload_1.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer.Stem Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overload_2.html new file mode 100644 index 0000000..1ff63a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overload_2.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer.Stem Method (String, Char[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overloads.html new file mode 100644 index 0000000..09a368f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.Stem_overloads.html @@ -0,0 +1,15 @@ + + + + + Stem Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.html new file mode 100644 index 0000000..87b8653 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmer.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor.html new file mode 100644 index 0000000..d00c975 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor1.html new file mode 100644 index 0000000..d0e3f25 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor1.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor2.html new file mode 100644 index 0000000..3c0c2ad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerConstructor2.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer Constructor (Char[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerMembers.html new file mode 100644 index 0000000..bfebbcd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerMembers.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerMethods.html new file mode 100644 index 0000000..9befd33 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.RussianStemmerMethods.html @@ -0,0 +1,15 @@ + + + + + RussianStemmer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.html new file mode 100644 index 0000000..5887e5c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RU.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis.RU + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RUHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RUHierarchy.html new file mode 100644 index 0000000..f3b5bc9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.RUHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis.RUHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..258c7e7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + SimpleAnalyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.html new file mode 100644 index 0000000..a8e9971 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzer.html @@ -0,0 +1,15 @@ + + + + + SimpleAnalyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerConstructor.html new file mode 100644 index 0000000..a7d6cec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + SimpleAnalyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerMembers.html new file mode 100644 index 0000000..71bd0c8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + SimpleAnalyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerMethods.html new file mode 100644 index 0000000..97e5835 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.SimpleAnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + SimpleAnalyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.Backup.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.Backup.html new file mode 100644 index 0000000..82f3845 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.Backup.html @@ -0,0 +1,15 @@ + + + + + CharStream.Backup Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.BeginToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.BeginToken.html new file mode 100644 index 0000000..67cc3f2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.BeginToken.html @@ -0,0 +1,15 @@ + + + + + CharStream.BeginToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.Done.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.Done.html new file mode 100644 index 0000000..a28f46d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.Done.html @@ -0,0 +1,15 @@ + + + + + CharStream.Done Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetBeginColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetBeginColumn.html new file mode 100644 index 0000000..4ddf774 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetBeginColumn.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetBeginColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetBeginLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetBeginLine.html new file mode 100644 index 0000000..c9d341f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetBeginLine.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetBeginLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetColumn.html new file mode 100644 index 0000000..eb178dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetColumn.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetEndColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetEndColumn.html new file mode 100644 index 0000000..c879a47 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetEndColumn.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetEndColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetEndLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetEndLine.html new file mode 100644 index 0000000..8bc2d24 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetEndLine.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetEndLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetImage.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetImage.html new file mode 100644 index 0000000..1f1a3c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetImage.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetImage Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetLine.html new file mode 100644 index 0000000..623ec3d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetLine.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetSuffix.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetSuffix.html new file mode 100644 index 0000000..bc6e319 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.GetSuffix.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetSuffix Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.ReadChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.ReadChar.html new file mode 100644 index 0000000..f98f63e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.ReadChar.html @@ -0,0 +1,15 @@ + + + + + CharStream.ReadChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.html new file mode 100644 index 0000000..7f26840 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStream.html @@ -0,0 +1,15 @@ + + + + + CharStream Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStreamMembers.html new file mode 100644 index 0000000..dd4486f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStreamMembers.html @@ -0,0 +1,15 @@ + + + + + CharStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStreamMethods.html new file mode 100644 index 0000000..5f4af07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.CharStreamMethods.html @@ -0,0 +1,15 @@ + + + + + CharStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.Backup.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.Backup.html new file mode 100644 index 0000000..eed32aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.Backup.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.Backup Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.BeginToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.BeginToken.html new file mode 100644 index 0000000..cf6c89e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.BeginToken.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.BeginToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.Done.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.Done.html new file mode 100644 index 0000000..ea0bc6c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.Done.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.Done Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetBeginColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetBeginColumn.html new file mode 100644 index 0000000..6678f81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetBeginColumn.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetBeginColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetBeginLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetBeginLine.html new file mode 100644 index 0000000..33d13bc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetBeginLine.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetBeginLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetColumn.html new file mode 100644 index 0000000..1f6c81c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetColumn.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetEndColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetEndColumn.html new file mode 100644 index 0000000..432f10c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetEndColumn.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetEndColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetEndLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetEndLine.html new file mode 100644 index 0000000..507f49e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetEndLine.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetEndLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetImage.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetImage.html new file mode 100644 index 0000000..a5e9d90 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetImage.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetImage Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetLine.html new file mode 100644 index 0000000..81524f8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetLine.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetSuffix.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetSuffix.html new file mode 100644 index 0000000..797cf07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.GetSuffix.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetSuffix Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.ReadChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.ReadChar.html new file mode 100644 index 0000000..6d329f6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.ReadChar.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.ReadChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.html new file mode 100644 index 0000000..02efbda --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStream.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamConstructor.html new file mode 100644 index 0000000..1b2287c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamConstructor.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamMembers.html new file mode 100644 index 0000000..3ee3476 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamMembers.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamMethods.html new file mode 100644 index 0000000..cde13df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.FastCharStreamMethods.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.Add_escapes.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.Add_escapes.html new file mode 100644 index 0000000..3dbfa5b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.Add_escapes.html @@ -0,0 +1,15 @@ + + + + + ParseException.Add_escapes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.Message.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.Message.html new file mode 100644 index 0000000..0eab4a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.Message.html @@ -0,0 +1,15 @@ + + + + + ParseException.Message Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.currentToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.currentToken.html new file mode 100644 index 0000000..dd1778c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.currentToken.html @@ -0,0 +1,15 @@ + + + + + ParseException.currentToken Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.eol.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.eol.html new file mode 100644 index 0000000..2b52f01 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.eol.html @@ -0,0 +1,15 @@ + + + + + ParseException.eol Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.expectedTokenSequences.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.expectedTokenSequences.html new file mode 100644 index 0000000..09d866d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.expectedTokenSequences.html @@ -0,0 +1,15 @@ + + + + + ParseException.expectedTokenSequences Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.html new file mode 100644 index 0000000..941ac8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.html @@ -0,0 +1,15 @@ + + + + + ParseException Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.specialConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.specialConstructor.html new file mode 100644 index 0000000..8406ddd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.specialConstructor.html @@ -0,0 +1,15 @@ + + + + + ParseException.specialConstructor Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.tokenImage.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.tokenImage.html new file mode 100644 index 0000000..6510fe5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseException.tokenImage.html @@ -0,0 +1,15 @@ + + + + + ParseException.tokenImage Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor.html new file mode 100644 index 0000000..ce1ab61 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor1.html new file mode 100644 index 0000000..4d451e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor1.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor (Token, Int32[][], String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor2.html new file mode 100644 index 0000000..744c35a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor2.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor3.html new file mode 100644 index 0000000..2e5c7ae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionConstructor3.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionFields.html new file mode 100644 index 0000000..16e543f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionFields.html @@ -0,0 +1,15 @@ + + + + + ParseException Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionMembers.html new file mode 100644 index 0000000..04ac64d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionMembers.html @@ -0,0 +1,15 @@ + + + + + ParseException Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionMethods.html new file mode 100644 index 0000000..5562e77 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionMethods.html @@ -0,0 +1,15 @@ + + + + + ParseException Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionProperties.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionProperties.html new file mode 100644 index 0000000..211dc6e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.ParseExceptionProperties.html @@ -0,0 +1,15 @@ + + + + + ParseException Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.STOP_WORDS.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.STOP_WORDS.html new file mode 100644 index 0000000..d1e2cf7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.STOP_WORDS.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer.STOP_WORDS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..ebc448a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.html new file mode 100644 index 0000000..d2af05d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzer.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor.html new file mode 100644 index 0000000..bfc7618 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor1.html new file mode 100644 index 0000000..441a7b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor1.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor2.html new file mode 100644 index 0000000..b008bd8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerConstructor2.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Constructor (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerFields.html new file mode 100644 index 0000000..fb2e621 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerFields.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerMembers.html new file mode 100644 index 0000000..284ffc3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerMethods.html new file mode 100644 index 0000000..99d676a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardAnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + StandardAnalyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilter.Next.html new file mode 100644 index 0000000..47dd318 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilter.Next.html @@ -0,0 +1,15 @@ + + + + + StandardFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilter.html new file mode 100644 index 0000000..46d76a7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilter.html @@ -0,0 +1,15 @@ + + + + + StandardFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterConstructor.html new file mode 100644 index 0000000..2e74e4d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + StandardFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterMembers.html new file mode 100644 index 0000000..e815b7e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterMembers.html @@ -0,0 +1,15 @@ + + + + + StandardFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterMethods.html new file mode 100644 index 0000000..5ba387e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardFilterMethods.html @@ -0,0 +1,15 @@ + + + + + StandardFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Disable_tracing.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Disable_tracing.html new file mode 100644 index 0000000..0e4e205 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Disable_tracing.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.Disable_tracing Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Enable_tracing.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Enable_tracing.html new file mode 100644 index 0000000..c662b43 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Enable_tracing.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.Enable_tracing Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GenerateParseException.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GenerateParseException.html new file mode 100644 index 0000000..7201ba5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GenerateParseException.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.GenerateParseException Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GetNextToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GetNextToken.html new file mode 100644 index 0000000..1c6be22 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GetNextToken.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.GetNextToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GetToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GetToken.html new file mode 100644 index 0000000..0880fb5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.GetToken.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.GetToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Next.html new file mode 100644 index 0000000..268a7b7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.Next.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overload_1.html new file mode 100644 index 0000000..d41dc1a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overload_1.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.ReInit Method (StandardTokenizerTokenManager) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overload_2.html new file mode 100644 index 0000000..4cc9659 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overload_2.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.ReInit Method (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overloads.html new file mode 100644 index 0000000..080d78d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.ReInit_overloads.html @@ -0,0 +1,15 @@ + + + + + ReInit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.html new file mode 100644 index 0000000..9b5910b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.jj_nt.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.jj_nt.html new file mode 100644 index 0000000..7f6d58b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.jj_nt.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.jj_nt Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.token.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.token.html new file mode 100644 index 0000000..da81818 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.token.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.token Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.token_source.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.token_source.html new file mode 100644 index 0000000..43d2f0e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizer.token_source.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer.token_source Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ACRONYM.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ACRONYM.html new file mode 100644 index 0000000..bfa0b69 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ACRONYM.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.ACRONYM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ALPHA.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ALPHA.html new file mode 100644 index 0000000..cd192df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ALPHA.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.ALPHA Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ALPHANUM.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ALPHANUM.html new file mode 100644 index 0000000..182a09e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.ALPHANUM.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.ALPHANUM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.APOSTROPHE.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.APOSTROPHE.html new file mode 100644 index 0000000..cdb4f8a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.APOSTROPHE.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.APOSTROPHE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.CJK.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.CJK.html new file mode 100644 index 0000000..358ce32 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.CJK.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.CJK Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.COMPANY.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.COMPANY.html new file mode 100644 index 0000000..a56e7d2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.COMPANY.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.COMPANY Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.DEFAULT.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.DEFAULT.html new file mode 100644 index 0000000..6dc0f6f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.DEFAULT.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.DEFAULT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.DIGIT.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.DIGIT.html new file mode 100644 index 0000000..6fb3e9c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.DIGIT.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.DIGIT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.EMAIL.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.EMAIL.html new file mode 100644 index 0000000..003d7be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.EMAIL.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.EMAIL Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.EOF.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.EOF.html new file mode 100644 index 0000000..ab17a5e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.EOF.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.EOF Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.HAS_DIGIT.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.HAS_DIGIT.html new file mode 100644 index 0000000..a0010af --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.HAS_DIGIT.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.HAS_DIGIT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.HOST.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.HOST.html new file mode 100644 index 0000000..640bc7b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.HOST.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.HOST Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.LETTER.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.LETTER.html new file mode 100644 index 0000000..f54f8b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.LETTER.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.LETTER Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.NOISE.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.NOISE.html new file mode 100644 index 0000000..85736c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.NOISE.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.NOISE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.NUM.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.NUM.html new file mode 100644 index 0000000..dac4b26 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.NUM.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.NUM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.P.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.P.html new file mode 100644 index 0000000..187ce6d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.P.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.P Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.html new file mode 100644 index 0000000..f92cdeb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.tokenImage.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.tokenImage.html new file mode 100644 index 0000000..340965e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstants.tokenImage.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants.tokenImage Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsConstructor.html new file mode 100644 index 0000000..97fc60f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsConstructor.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsFields.html new file mode 100644 index 0000000..65b6a43 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsFields.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsMembers.html new file mode 100644 index 0000000..958bd40 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstantsMembers.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerConstants Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor.html new file mode 100644 index 0000000..c89f318 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor1.html new file mode 100644 index 0000000..3586d3c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor1.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Constructor (TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor2.html new file mode 100644 index 0000000..492218d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor2.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Constructor (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor3.html new file mode 100644 index 0000000..02495ae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerConstructor3.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Constructor (StandardTokenizerTokenManager) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerFields.html new file mode 100644 index 0000000..efc4f2f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerFields.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerMembers.html new file mode 100644 index 0000000..df97c8c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerMethods.html new file mode 100644 index 0000000..5b43dae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.GetNextToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.GetNextToken.html new file mode 100644 index 0000000..613d812 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.GetNextToken.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.GetNextToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.JjFillToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.JjFillToken.html new file mode 100644 index 0000000..19b6181 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.JjFillToken.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.JjFillToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overload_1.html new file mode 100644 index 0000000..a2d3ff4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overload_1.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.ReInit Method (CharStream, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overload_2.html new file mode 100644 index 0000000..6dedc97 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overload_2.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.ReInit Method (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overloads.html new file mode 100644 index 0000000..080d78d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.ReInit_overloads.html @@ -0,0 +1,15 @@ + + + + + ReInit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.SetDebugStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.SetDebugStream.html new file mode 100644 index 0000000..34adf5b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.SetDebugStream.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.SetDebugStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.SwitchTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.SwitchTo.html new file mode 100644 index 0000000..91b922e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.SwitchTo.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.SwitchTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.curChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.curChar.html new file mode 100644 index 0000000..ecc7257 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.curChar.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.curChar Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.debugStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.debugStream.html new file mode 100644 index 0000000..1d7a9fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.debugStream.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.debugStream Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.html new file mode 100644 index 0000000..d0e133f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.input_stream.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.input_stream.html new file mode 100644 index 0000000..b3dbf69 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.input_stream.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.input_stream Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.jjstrLiteralImages.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.jjstrLiteralImages.html new file mode 100644 index 0000000..497f20d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.jjstrLiteralImages.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.jjstrLiteralImages Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.lexStateNames.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.lexStateNames.html new file mode 100644 index 0000000..19601b1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManager.lexStateNames.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager.lexStateNames Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor.html new file mode 100644 index 0000000..7af6c08 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor1.html new file mode 100644 index 0000000..6db04cb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor1.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Constructor (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor2.html new file mode 100644 index 0000000..6cd0be3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerConstructor2.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Constructor (CharStream, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerFields.html new file mode 100644 index 0000000..084f224 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerFields.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerMembers.html new file mode 100644 index 0000000..b7cc176 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerMembers.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerMethods.html new file mode 100644 index 0000000..3c07df5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.StandardTokenizerTokenManagerMethods.html @@ -0,0 +1,15 @@ + + + + + StandardTokenizerTokenManager Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.NewToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.NewToken.html new file mode 100644 index 0000000..5d46558 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.NewToken.html @@ -0,0 +1,15 @@ + + + + + Token.NewToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.ToString.html new file mode 100644 index 0000000..b456454 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.ToString.html @@ -0,0 +1,15 @@ + + + + + Token.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.beginColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.beginColumn.html new file mode 100644 index 0000000..d6c4ffd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.beginColumn.html @@ -0,0 +1,15 @@ + + + + + Token.beginColumn Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.beginLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.beginLine.html new file mode 100644 index 0000000..c5a2d60 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.beginLine.html @@ -0,0 +1,15 @@ + + + + + Token.beginLine Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.endColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.endColumn.html new file mode 100644 index 0000000..556bf3f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.endColumn.html @@ -0,0 +1,15 @@ + + + + + Token.endColumn Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.endLine.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.endLine.html new file mode 100644 index 0000000..59a726a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.endLine.html @@ -0,0 +1,15 @@ + + + + + Token.endLine Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.html new file mode 100644 index 0000000..d354541 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.html @@ -0,0 +1,15 @@ + + + + + Token Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.image.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.image.html new file mode 100644 index 0000000..acf6306 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.image.html @@ -0,0 +1,15 @@ + + + + + Token.image Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.kind.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.kind.html new file mode 100644 index 0000000..dca7ba9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.kind.html @@ -0,0 +1,15 @@ + + + + + Token.kind Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.next.html new file mode 100644 index 0000000..24f67b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.next.html @@ -0,0 +1,15 @@ + + + + + Token.next Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.specialToken.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.specialToken.html new file mode 100644 index 0000000..711a77a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.Token.specialToken.html @@ -0,0 +1,15 @@ + + + + + Token.specialToken Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenConstructor.html new file mode 100644 index 0000000..e336a27 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenConstructor.html @@ -0,0 +1,15 @@ + + + + + Token Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenFields.html new file mode 100644 index 0000000..5519347 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenFields.html @@ -0,0 +1,15 @@ + + + + + Token Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMembers.html new file mode 100644 index 0000000..54bfdbf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMembers.html @@ -0,0 +1,15 @@ + + + + + Token Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMethods.html new file mode 100644 index 0000000..8f1b8d8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMethods.html @@ -0,0 +1,15 @@ + + + + + Token Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.LexicalError.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.LexicalError.html new file mode 100644 index 0000000..5d44b91 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.LexicalError.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError.LexicalError Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.Message.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.Message.html new file mode 100644 index 0000000..b21723f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.Message.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError.Message Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.addEscapes.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.addEscapes.html new file mode 100644 index 0000000..fa15df6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.addEscapes.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError.addEscapes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.html new file mode 100644 index 0000000..d19f082 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrError.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor.html new file mode 100644 index 0000000..23fc64d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor1.html new file mode 100644 index 0000000..4ce1e5e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor1.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor2.html new file mode 100644 index 0000000..3a261dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor2.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor (String, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor3.html new file mode 100644 index 0000000..43a4b76 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorConstructor3.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor (Boolean, Int32, Int32, Int32, String, Char, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorMembers.html new file mode 100644 index 0000000..5c68c94 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorMembers.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorMethods.html new file mode 100644 index 0000000..4c0a2b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorMethods.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorProperties.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorProperties.html new file mode 100644 index 0000000..a253adb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.TokenMgrErrorProperties.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.html new file mode 100644 index 0000000..3a7115a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Standard.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis.Standard + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StandardHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StandardHierarchy.html new file mode 100644 index 0000000..fc3aec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StandardHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis.StandardHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.ENGLISH_STOP_WORDS.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.ENGLISH_STOP_WORDS.html new file mode 100644 index 0000000..3f8044f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.ENGLISH_STOP_WORDS.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer.ENGLISH_STOP_WORDS Field + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..248fdc8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.html new file mode 100644 index 0000000..826c51b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzer.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor.html new file mode 100644 index 0000000..a05b3b6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor1.html new file mode 100644 index 0000000..0eb9fc3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor1.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor2.html new file mode 100644 index 0000000..ecee613 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerConstructor2.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Constructor (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerFields.html new file mode 100644 index 0000000..eb102bb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerFields.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerMembers.html new file mode 100644 index 0000000..e276899 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerMethods.html new file mode 100644 index 0000000..d4d5127 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopAnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + StopAnalyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.MakeStopSet.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.MakeStopSet.html new file mode 100644 index 0000000..d1113cb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.MakeStopSet.html @@ -0,0 +1,15 @@ + + + + + StopFilter.MakeStopSet Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.MakeStopTable.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.MakeStopTable.html new file mode 100644 index 0000000..4f0944b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.MakeStopTable.html @@ -0,0 +1,15 @@ + + + + + StopFilter.MakeStopTable Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.Next.html new file mode 100644 index 0000000..f0e95d8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.Next.html @@ -0,0 +1,15 @@ + + + + + StopFilter.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.html new file mode 100644 index 0000000..4a1c0eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilter.html @@ -0,0 +1,15 @@ + + + + + StopFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor.html new file mode 100644 index 0000000..64f3764 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + StopFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor1.html new file mode 100644 index 0000000..3f91844 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor1.html @@ -0,0 +1,15 @@ + + + + + StopFilter Constructor (TokenStream, String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor2.html new file mode 100644 index 0000000..b2d9caf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterConstructor2.html @@ -0,0 +1,15 @@ + + + + + StopFilter Constructor (TokenStream, Hashtable) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterMembers.html new file mode 100644 index 0000000..9a155ba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterMembers.html @@ -0,0 +1,15 @@ + + + + + StopFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterMethods.html new file mode 100644 index 0000000..95be3e2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.StopFilterMethods.html @@ -0,0 +1,15 @@ + + + + + StopFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.EndOffset.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.EndOffset.html new file mode 100644 index 0000000..b81892d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.EndOffset.html @@ -0,0 +1,15 @@ + + + + + Token.EndOffset Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.GetPositionIncrement.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.GetPositionIncrement.html new file mode 100644 index 0000000..3793446 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.GetPositionIncrement.html @@ -0,0 +1,15 @@ + + + + + Token.GetPositionIncrement Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.SetPositionIncrement.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.SetPositionIncrement.html new file mode 100644 index 0000000..a5b5d97 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.SetPositionIncrement.html @@ -0,0 +1,15 @@ + + + + + Token.SetPositionIncrement Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.StartOffset.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.StartOffset.html new file mode 100644 index 0000000..b4c89d4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.StartOffset.html @@ -0,0 +1,15 @@ + + + + + Token.StartOffset Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.TermText.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.TermText.html new file mode 100644 index 0000000..11f4db1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.TermText.html @@ -0,0 +1,15 @@ + + + + + Token.TermText Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.Type.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.Type.html new file mode 100644 index 0000000..930bc7e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.Type.html @@ -0,0 +1,15 @@ + + + + + Token.Type Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.html new file mode 100644 index 0000000..d354541 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Token.html @@ -0,0 +1,15 @@ + + + + + Token Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor.html new file mode 100644 index 0000000..e336a27 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor.html @@ -0,0 +1,15 @@ + + + + + Token Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor1.html new file mode 100644 index 0000000..a7c1187 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor1.html @@ -0,0 +1,15 @@ + + + + + Token Constructor (String, Int32, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor2.html new file mode 100644 index 0000000..2635d16 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenConstructor2.html @@ -0,0 +1,15 @@ + + + + + Token Constructor (String, Int32, Int32, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.Close.html new file mode 100644 index 0000000..86e10a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.Close.html @@ -0,0 +1,15 @@ + + + + + TokenFilter.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.html new file mode 100644 index 0000000..9b547a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.input.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.input.html new file mode 100644 index 0000000..3d69a4c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilter.input.html @@ -0,0 +1,15 @@ + + + + + TokenFilter.input Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor.html new file mode 100644 index 0000000..ae77651 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor1.html new file mode 100644 index 0000000..c9f0328 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor1.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor2.html new file mode 100644 index 0000000..3202f8a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterConstructor2.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Constructor (TokenStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterFields.html new file mode 100644 index 0000000..e1e7cbb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterFields.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterHierarchy.html new file mode 100644 index 0000000..8c9a500 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterHierarchy.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Hierarchy + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterMembers.html new file mode 100644 index 0000000..acaf0c3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterMembers.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterMethods.html new file mode 100644 index 0000000..29cc4d7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenFilterMethods.html @@ -0,0 +1,15 @@ + + + + + TokenFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenMembers.html new file mode 100644 index 0000000..54bfdbf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenMembers.html @@ -0,0 +1,15 @@ + + + + + Token Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenMethods.html new file mode 100644 index 0000000..8f1b8d8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenMethods.html @@ -0,0 +1,15 @@ + + + + + Token Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.Close.html new file mode 100644 index 0000000..c730d3d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.Close.html @@ -0,0 +1,15 @@ + + + + + TokenStream.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.Next.html new file mode 100644 index 0000000..26a8dec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.Next.html @@ -0,0 +1,15 @@ + + + + + TokenStream.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.html new file mode 100644 index 0000000..d29e463 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStream.html @@ -0,0 +1,15 @@ + + + + + TokenStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamConstructor.html new file mode 100644 index 0000000..2690e72 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamConstructor.html @@ -0,0 +1,15 @@ + + + + + TokenStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamMembers.html new file mode 100644 index 0000000..618f82f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamMembers.html @@ -0,0 +1,15 @@ + + + + + TokenStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamMethods.html new file mode 100644 index 0000000..3a72178 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenStreamMethods.html @@ -0,0 +1,15 @@ + + + + + TokenStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.Close.html new file mode 100644 index 0000000..3993ed8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.Close.html @@ -0,0 +1,15 @@ + + + + + Tokenizer.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.html new file mode 100644 index 0000000..9659116 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.input.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.input.html new file mode 100644 index 0000000..e638028 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.Tokenizer.input.html @@ -0,0 +1,15 @@ + + + + + Tokenizer.input Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor.html new file mode 100644 index 0000000..5fd58a7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor1.html new file mode 100644 index 0000000..670b298 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor1.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor2.html new file mode 100644 index 0000000..5c37a6f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerConstructor2.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Constructor (TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerFields.html new file mode 100644 index 0000000..b047f13 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerFields.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerMembers.html new file mode 100644 index 0000000..cc0731c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerMethods.html new file mode 100644 index 0000000..06eb505 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.TokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + Tokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.TokenStream_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.TokenStream_overload_2.html new file mode 100644 index 0000000..39bec1e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.TokenStream_overload_2.html @@ -0,0 +1,15 @@ + + + + + WhitespaceAnalyzer.TokenStream Method (String, TextReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.TokenStream_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.TokenStream_overloads.html new file mode 100644 index 0000000..b687b20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.TokenStream_overloads.html @@ -0,0 +1,15 @@ + + + + + TokenStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.html new file mode 100644 index 0000000..59ac8f1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzer.html @@ -0,0 +1,15 @@ + + + + + WhitespaceAnalyzer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerConstructor.html new file mode 100644 index 0000000..6a395ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerConstructor.html @@ -0,0 +1,15 @@ + + + + + WhitespaceAnalyzer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerMembers.html new file mode 100644 index 0000000..8fd85ef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerMembers.html @@ -0,0 +1,15 @@ + + + + + WhitespaceAnalyzer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerMethods.html new file mode 100644 index 0000000..a949531 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceAnalyzerMethods.html @@ -0,0 +1,15 @@ + + + + + WhitespaceAnalyzer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizer.IsTokenChar.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizer.IsTokenChar.html new file mode 100644 index 0000000..8e268a9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizer.IsTokenChar.html @@ -0,0 +1,15 @@ + + + + + WhitespaceTokenizer.IsTokenChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizer.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizer.html new file mode 100644 index 0000000..605242b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizer.html @@ -0,0 +1,15 @@ + + + + + WhitespaceTokenizer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerConstructor.html new file mode 100644 index 0000000..a1515f9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerConstructor.html @@ -0,0 +1,15 @@ + + + + + WhitespaceTokenizer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerMembers.html new file mode 100644 index 0000000..eb2c78f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerMembers.html @@ -0,0 +1,15 @@ + + + + + WhitespaceTokenizer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerMethods.html new file mode 100644 index 0000000..51ee091 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.WhitespaceTokenizerMethods.html @@ -0,0 +1,15 @@ + + + + + WhitespaceTokenizer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Analysis.html b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.html new file mode 100644 index 0000000..2ece88e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Analysis.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Analysis + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.AnalysisHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.AnalysisHierarchy.html new file mode 100644 index 0000000..443d7bd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.AnalysisHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.AnalysisHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.DateToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.DateToString.html new file mode 100644 index 0000000..df63f7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.DateToString.html @@ -0,0 +1,15 @@ + + + + + DateField.DateToString Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.MAX_DATE_STRING.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.MAX_DATE_STRING.html new file mode 100644 index 0000000..ff82a9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.MAX_DATE_STRING.html @@ -0,0 +1,15 @@ + + + + + DateField.MAX_DATE_STRING Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.MIN_DATE_STRING.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.MIN_DATE_STRING.html new file mode 100644 index 0000000..e96a39d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.MIN_DATE_STRING.html @@ -0,0 +1,15 @@ + + + + + DateField.MIN_DATE_STRING Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.StringToDate.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.StringToDate.html new file mode 100644 index 0000000..c0a4112 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.StringToDate.html @@ -0,0 +1,15 @@ + + + + + DateField.StringToDate Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.StringToTime.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.StringToTime.html new file mode 100644 index 0000000..83cd431 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.StringToTime.html @@ -0,0 +1,15 @@ + + + + + DateField.StringToTime Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.TimeToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.TimeToString.html new file mode 100644 index 0000000..d9eada6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.TimeToString.html @@ -0,0 +1,15 @@ + + + + + DateField.TimeToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.html new file mode 100644 index 0000000..36ae3a3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateField.html @@ -0,0 +1,15 @@ + + + + + DateField Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateFieldMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateFieldMembers.html new file mode 100644 index 0000000..4346977 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateFieldMembers.html @@ -0,0 +1,15 @@ + + + + + DateField Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateFieldMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateFieldMethods.html new file mode 100644 index 0000000..c75cbe5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DateFieldMethods.html @@ -0,0 +1,15 @@ + + + + + DateField Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.Add.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.Add.html new file mode 100644 index 0000000..d813b93 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.Add.html @@ -0,0 +1,15 @@ + + + + + Document.Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.Get.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.Get.html new file mode 100644 index 0000000..0586208 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.Get.html @@ -0,0 +1,15 @@ + + + + + Document.Get Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetBoost.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetBoost.html new file mode 100644 index 0000000..c475e84 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetBoost.html @@ -0,0 +1,15 @@ + + + + + Document.GetBoost Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetField.html new file mode 100644 index 0000000..ea7605f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetField.html @@ -0,0 +1,15 @@ + + + + + Document.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetFields.html new file mode 100644 index 0000000..30f756e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetFields.html @@ -0,0 +1,15 @@ + + + + + Document.GetFields Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetValues.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetValues.html new file mode 100644 index 0000000..694f3e1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.GetValues.html @@ -0,0 +1,15 @@ + + + + + Document.GetValues Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.RemoveField.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.RemoveField.html new file mode 100644 index 0000000..d1ecb3c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.RemoveField.html @@ -0,0 +1,15 @@ + + + + + Document.RemoveField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.RemoveFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.RemoveFields.html new file mode 100644 index 0000000..386c9af --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.RemoveFields.html @@ -0,0 +1,15 @@ + + + + + Document.RemoveFields Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.SetBoost.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.SetBoost.html new file mode 100644 index 0000000..5a8d4b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.SetBoost.html @@ -0,0 +1,15 @@ + + + + + Document.SetBoost Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.ToString.html new file mode 100644 index 0000000..4212beb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.ToString.html @@ -0,0 +1,15 @@ + + + + + Document.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.fields.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.fields.html new file mode 100644 index 0000000..96cf737 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.fields.html @@ -0,0 +1,15 @@ + + + + + Document.Fields Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.html new file mode 100644 index 0000000..ebba5c6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Document.html @@ -0,0 +1,15 @@ + + + + + Document Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentConstructor.html new file mode 100644 index 0000000..9100c95 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentConstructor.html @@ -0,0 +1,15 @@ + + + + + Document Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentFields.html new file mode 100644 index 0000000..df37a8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentFields.html @@ -0,0 +1,15 @@ + + + + + Document Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentMembers.html new file mode 100644 index 0000000..a4fab58 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentMembers.html @@ -0,0 +1,15 @@ + + + + + Document Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentMethods.html new file mode 100644 index 0000000..e4fddb7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.DocumentMethods.html @@ -0,0 +1,15 @@ + + + + + Document Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.GetBoost.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.GetBoost.html new file mode 100644 index 0000000..ca9c8c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.GetBoost.html @@ -0,0 +1,15 @@ + + + + + Field.GetBoost Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsIndexed.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsIndexed.html new file mode 100644 index 0000000..4fd2e1d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsIndexed.html @@ -0,0 +1,15 @@ + + + + + Field.IsIndexed Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsStored.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsStored.html new file mode 100644 index 0000000..710588b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsStored.html @@ -0,0 +1,15 @@ + + + + + Field.IsStored Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsTermVectorStored.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsTermVectorStored.html new file mode 100644 index 0000000..85038db --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsTermVectorStored.html @@ -0,0 +1,15 @@ + + + + + Field.IsTermVectorStored Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsTokenized.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsTokenized.html new file mode 100644 index 0000000..dec5488 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.IsTokenized.html @@ -0,0 +1,15 @@ + + + + + Field.IsTokenized Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overload_1.html new file mode 100644 index 0000000..1c604f4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overload_1.html @@ -0,0 +1,15 @@ + + + + + Field.Keyword Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overload_2.html new file mode 100644 index 0000000..0810178 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overload_2.html @@ -0,0 +1,15 @@ + + + + + Field.Keyword Method (String, DateTime) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overloads.html new file mode 100644 index 0000000..566cf94 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Keyword_overloads.html @@ -0,0 +1,15 @@ + + + + + Keyword Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Name.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Name.html new file mode 100644 index 0000000..a01fdfb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Name.html @@ -0,0 +1,15 @@ + + + + + Field.Name Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.ReaderValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.ReaderValue.html new file mode 100644 index 0000000..6f0b8d0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.ReaderValue.html @@ -0,0 +1,15 @@ + + + + + Field.ReaderValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.SetBoost.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.SetBoost.html new file mode 100644 index 0000000..cbdcf00 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.SetBoost.html @@ -0,0 +1,15 @@ + + + + + Field.SetBoost Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.StringValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.StringValue.html new file mode 100644 index 0000000..9181e4e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.StringValue.html @@ -0,0 +1,15 @@ + + + + + Field.StringValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_1.html new file mode 100644 index 0000000..75a923e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_1.html @@ -0,0 +1,15 @@ + + + + + Field.Text Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_2.html new file mode 100644 index 0000000..1855d57 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_2.html @@ -0,0 +1,15 @@ + + + + + Field.Text Method (String, String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_3.html new file mode 100644 index 0000000..61cae95 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_3.html @@ -0,0 +1,15 @@ + + + + + Field.Text Method (String, StreamReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_4.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_4.html new file mode 100644 index 0000000..0f92b6a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overload_4.html @@ -0,0 +1,15 @@ + + + + + Field.Text Method (String, StreamReader, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overloads.html new file mode 100644 index 0000000..5c81d4b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.Text_overloads.html @@ -0,0 +1,15 @@ + + + + + Text Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.ToString.html new file mode 100644 index 0000000..30481c4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.ToString.html @@ -0,0 +1,15 @@ + + + + + Field.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnIndexed.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnIndexed.html new file mode 100644 index 0000000..94dc21b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnIndexed.html @@ -0,0 +1,15 @@ + + + + + Field.UnIndexed Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overload_1.html new file mode 100644 index 0000000..cc5f16b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overload_1.html @@ -0,0 +1,15 @@ + + + + + Field.UnStored Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overload_2.html new file mode 100644 index 0000000..4396ba1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overload_2.html @@ -0,0 +1,15 @@ + + + + + Field.UnStored Method (String, String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overloads.html new file mode 100644 index 0000000..38374c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.UnStored_overloads.html @@ -0,0 +1,15 @@ + + + + + UnStored Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.html new file mode 100644 index 0000000..96de085 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.Field.html @@ -0,0 +1,15 @@ + + + + + Field Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor.html new file mode 100644 index 0000000..08a63be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor.html @@ -0,0 +1,15 @@ + + + + + Field Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor1.html new file mode 100644 index 0000000..a6b2083 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor1.html @@ -0,0 +1,15 @@ + + + + + Field Constructor (String, String, Boolean, Boolean, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor2.html new file mode 100644 index 0000000..2f85c71 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldConstructor2.html @@ -0,0 +1,15 @@ + + + + + Field Constructor (String, String, Boolean, Boolean, Boolean, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldMembers.html new file mode 100644 index 0000000..1e3203e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldMembers.html @@ -0,0 +1,15 @@ + + + + + Field Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldMethods.html new file mode 100644 index 0000000..23fd6e3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.FieldMethods.html @@ -0,0 +1,15 @@ + + + + + Field Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Documents.html b/wwwroot/Searcher/1.4/Lucene.Net.Documents.html new file mode 100644 index 0000000..0e054b4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Documents.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Documents + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.DocumentsHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.DocumentsHierarchy.html new file mode 100644 index 0000000..bf3d6c5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.DocumentsHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.DocumentsHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.Close.html new file mode 100644 index 0000000..e482435 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.Close.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream.Close Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.ReadInternal.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.ReadInternal.html new file mode 100644 index 0000000..1b84b10 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.ReadInternal.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream.ReadInternal Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.SeekInternal.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.SeekInternal.html new file mode 100644 index 0000000..16f70de --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.SeekInternal.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream.SeekInternal Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.base_Renamed.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.base_Renamed.html new file mode 100644 index 0000000..4ab9ba6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.base_Renamed.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream.base_Renamed Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.html new file mode 100644 index 0000000..a64fdd6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStream.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamFields.html new file mode 100644 index 0000000..e6c919b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamFields.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamMembers.html new file mode 100644 index 0000000..7a97550 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamMembers.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamMethods.html new file mode 100644 index 0000000..2d3fb29 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CSInputStreamMethods.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CSInputStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.Close.html new file mode 100644 index 0000000..33b363b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.Close.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CreateFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CreateFile.html new file mode 100644 index 0000000..4378d81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.CreateFile.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.CreateFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.DeleteFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.DeleteFile.html new file mode 100644 index 0000000..3c5cff2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.DeleteFile.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.DeleteFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileExists.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileExists.html new file mode 100644 index 0000000..5c6b5a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileExists.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.FileExists Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileLength.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileLength.html new file mode 100644 index 0000000..da0cccb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileLength.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.FileLength Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileModified.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileModified.html new file mode 100644 index 0000000..5f5380a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.FileModified.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.FileModified Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.GetDirectory.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.GetDirectory.html new file mode 100644 index 0000000..60e8dea --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.GetDirectory.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.GetDirectory Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.GetName.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.GetName.html new file mode 100644 index 0000000..0ede757 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.GetName.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.GetName Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.List.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.List.html new file mode 100644 index 0000000..a665960 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.List.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.List Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.MakeLock.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.MakeLock.html new file mode 100644 index 0000000..d768f20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.MakeLock.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.MakeLock Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.OpenFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.OpenFile.html new file mode 100644 index 0000000..d45451e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.OpenFile.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.OpenFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.RenameFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.RenameFile.html new file mode 100644 index 0000000..519fa59 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.RenameFile.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.RenameFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.TouchFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.TouchFile.html new file mode 100644 index 0000000..36fd152 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.TouchFile.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader.TouchFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.html new file mode 100644 index 0000000..c2000a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReader.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderConstructor.html new file mode 100644 index 0000000..e2c41d5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderMembers.html new file mode 100644 index 0000000..c9f1f1c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderMembers.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderMethods.html new file mode 100644 index 0000000..a1256b2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileReaderMethods.html @@ -0,0 +1,15 @@ + + + + + CompoundFileReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.AddFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.AddFile.html new file mode 100644 index 0000000..1e4adb1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.AddFile.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter.AddFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.Close.html new file mode 100644 index 0000000..16e5221 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.Close.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.GetDirectory.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.GetDirectory.html new file mode 100644 index 0000000..20ee910 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.GetDirectory.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter.GetDirectory Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.GetName.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.GetName.html new file mode 100644 index 0000000..2fd6a95 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.GetName.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter.GetName Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.html new file mode 100644 index 0000000..4993c2b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriter.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterConstructor.html new file mode 100644 index 0000000..3713c23 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterConstructor.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterMembers.html new file mode 100644 index 0000000..936fc39 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterMembers.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterMethods.html new file mode 100644 index 0000000..66c9851 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.CompoundFileWriterMethods.html @@ -0,0 +1,15 @@ + + + + + CompoundFileWriter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriter.AddDocument.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriter.AddDocument.html new file mode 100644 index 0000000..1ac95cd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriter.AddDocument.html @@ -0,0 +1,15 @@ + + + + + DocumentWriter.AddDocument Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriter.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriter.html new file mode 100644 index 0000000..86eaef8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriter.html @@ -0,0 +1,15 @@ + + + + + DocumentWriter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterConstructor.html new file mode 100644 index 0000000..75da576 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterConstructor.html @@ -0,0 +1,15 @@ + + + + + DocumentWriter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterMembers.html new file mode 100644 index 0000000..8de579e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterMembers.html @@ -0,0 +1,15 @@ + + + + + DocumentWriter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterMethods.html new file mode 100644 index 0000000..c84dea1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.DocumentWriterMethods.html @@ -0,0 +1,15 @@ + + + + + DocumentWriter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfo.html new file mode 100644 index 0000000..ab2940f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfo.html @@ -0,0 +1,15 @@ + + + + + FieldInfo Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfo.storeTermVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfo.storeTermVector.html new file mode 100644 index 0000000..9a2f567 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfo.storeTermVector.html @@ -0,0 +1,15 @@ + + + + + FieldInfo.storeTermVector Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfoFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfoFields.html new file mode 100644 index 0000000..86592d8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfoFields.html @@ -0,0 +1,15 @@ + + + + + FieldInfo Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfoMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfoMembers.html new file mode 100644 index 0000000..8dd802d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfoMembers.html @@ -0,0 +1,15 @@ + + + + + FieldInfo Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.AddIndexed.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.AddIndexed.html new file mode 100644 index 0000000..9c50877 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.AddIndexed.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.AddIndexed Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_1.html new file mode 100644 index 0000000..3f56e05 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_1.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Add Method (Document) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_2.html new file mode 100644 index 0000000..a99e4a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_2.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Add Method (ICollection, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_3.html new file mode 100644 index 0000000..c10650c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_3.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Add Method (String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_4.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_4.html new file mode 100644 index 0000000..586f1ed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overload_4.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Add Method (String, Boolean, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overloads.html new file mode 100644 index 0000000..6ba4fdc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Add_overloads.html @@ -0,0 +1,15 @@ + + + + + Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overload_1.html new file mode 100644 index 0000000..5283a61 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overload_1.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.FieldInfo Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overload_2.html new file mode 100644 index 0000000..90441bb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overload_2.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.FieldInfo Method (Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overloads.html new file mode 100644 index 0000000..4df01b4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldInfo_overloads.html @@ -0,0 +1,15 @@ + + + + + FieldInfo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldName.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldName.html new file mode 100644 index 0000000..e458bfe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldName.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.FieldName Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldNumber.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldNumber.html new file mode 100644 index 0000000..ba8c78b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.FieldNumber.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.FieldNumber Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.HasVectors.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.HasVectors.html new file mode 100644 index 0000000..1fb3ee0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.HasVectors.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.HasVectors Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Size.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Size.html new file mode 100644 index 0000000..31029f2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Size.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Size Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overload_1.html new file mode 100644 index 0000000..d6d74c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overload_1.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Write Method (Directory, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overload_2.html new file mode 100644 index 0000000..e2b2c2e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overload_2.html @@ -0,0 +1,15 @@ + + + + + FieldInfos.Write Method (OutputStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overloads.html new file mode 100644 index 0000000..e7e174c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.Write_overloads.html @@ -0,0 +1,15 @@ + + + + + Write Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.html new file mode 100644 index 0000000..9754159 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfos.html @@ -0,0 +1,15 @@ + + + + + FieldInfos Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor.html new file mode 100644 index 0000000..54a0f73 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor.html @@ -0,0 +1,15 @@ + + + + + FieldInfos Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor1.html new file mode 100644 index 0000000..57d4ea1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor1.html @@ -0,0 +1,15 @@ + + + + + FieldInfos Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor2.html new file mode 100644 index 0000000..50f57c1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosConstructor2.html @@ -0,0 +1,15 @@ + + + + + FieldInfos Constructor (Directory, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosMembers.html new file mode 100644 index 0000000..6612cd0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosMembers.html @@ -0,0 +1,15 @@ + + + + + FieldInfos Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosMethods.html new file mode 100644 index 0000000..216c6f1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldInfosMethods.html @@ -0,0 +1,15 @@ + + + + + FieldInfos Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Close.html new file mode 100644 index 0000000..faab1d4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Close.html @@ -0,0 +1,15 @@ + + + + + FieldsReader.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Doc.html new file mode 100644 index 0000000..8525315 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Doc.html @@ -0,0 +1,15 @@ + + + + + FieldsReader.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Size.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Size.html new file mode 100644 index 0000000..a8d2c20 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.Size.html @@ -0,0 +1,15 @@ + + + + + FieldsReader.Size Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.html new file mode 100644 index 0000000..f8d2b37 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReader.html @@ -0,0 +1,15 @@ + + + + + FieldsReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderConstructor.html new file mode 100644 index 0000000..877b67b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + FieldsReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderMembers.html new file mode 100644 index 0000000..2638fdb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderMembers.html @@ -0,0 +1,15 @@ + + + + + FieldsReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderMethods.html new file mode 100644 index 0000000..e5e3c3f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FieldsReaderMethods.html @@ -0,0 +1,15 @@ + + + + + FieldsReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoClose.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoClose.html new file mode 100644 index 0000000..fc91efd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoClose.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.DoClose Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoCommit.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoCommit.html new file mode 100644 index 0000000..82108af --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoCommit.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.DoCommit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoDelete.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoDelete.html new file mode 100644 index 0000000..e291bf6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoDelete.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.DoDelete Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoSetNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoSetNorm.html new file mode 100644 index 0000000..a827649 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoSetNorm.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.DoSetNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoUndeleteAll.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoUndeleteAll.html new file mode 100644 index 0000000..8d440a9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DoUndeleteAll.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.DoUndeleteAll Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DocFreq.html new file mode 100644 index 0000000..398ff7a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.DocFreq.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Document.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Document.html new file mode 100644 index 0000000..4785d0c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Document.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.Document Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Close.html new file mode 100644 index 0000000..22ad5fa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Close.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Doc.html new file mode 100644 index 0000000..3275c53 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Doc.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Freq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Freq.html new file mode 100644 index 0000000..a770e09 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Freq.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Freq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Next.html new file mode 100644 index 0000000..68c4da6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Next.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Read.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Read.html new file mode 100644 index 0000000..94e6c68 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Read.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Read Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overload_1.html new file mode 100644 index 0000000..7be201d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Seek Method (TermEnum) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overload_2.html new file mode 100644 index 0000000..4bba74c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overload_2.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.Seek Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overloads.html new file mode 100644 index 0000000..54544c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.Seek_overloads.html @@ -0,0 +1,15 @@ + + + + + Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.SkipTo.html new file mode 100644 index 0000000..d983944 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.SkipTo.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.html new file mode 100644 index 0000000..57ed618 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.input.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.input.html new file mode 100644 index 0000000..83dc572 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocs.input.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs.input Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsConstructor.html new file mode 100644 index 0000000..55cd6d1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsConstructor.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsFields.html new file mode 100644 index 0000000..d9b0455 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsFields.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsMembers.html new file mode 100644 index 0000000..d4c690f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsMembers.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsMethods.html new file mode 100644 index 0000000..6531081 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermDocsMethods.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermDocs Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Close.html new file mode 100644 index 0000000..717c40b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Close.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.DocFreq.html new file mode 100644 index 0000000..d5c2c47 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.DocFreq.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Next.html new file mode 100644 index 0000000..ffb5b59 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Next.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Term.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Term.html new file mode 100644 index 0000000..fc3899d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.Term.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum.Term Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.html new file mode 100644 index 0000000..6d6b520 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.input.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.input.html new file mode 100644 index 0000000..53d9cdb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnum.input.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum.input Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumConstructor.html new file mode 100644 index 0000000..7cb5fa3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumConstructor.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumFields.html new file mode 100644 index 0000000..204d05f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumFields.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumMembers.html new file mode 100644 index 0000000..4a8fc39 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumMembers.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumMethods.html new file mode 100644 index 0000000..82999e5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermEnumMethods.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermEnum Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositions.NextPosition.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositions.NextPosition.html new file mode 100644 index 0000000..d2efb36 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositions.NextPosition.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermPositions.NextPosition Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositions.html new file mode 100644 index 0000000..2c6f2eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositions.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermPositions Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsConstructor.html new file mode 100644 index 0000000..8c9ee8b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsConstructor.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermPositions Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsMembers.html new file mode 100644 index 0000000..e1525b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsMembers.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermPositions Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsMethods.html new file mode 100644 index 0000000..3924837 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.FilterTermPositionsMethods.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.FilterTermPositions Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overload_1.html new file mode 100644 index 0000000..3b4a1f8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.GetFieldNames Method (Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overload_2.html new file mode 100644 index 0000000..983cacd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overload_2.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.GetFieldNames Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overloads.html new file mode 100644 index 0000000..3ccc874 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetFieldNames_overloads.html @@ -0,0 +1,15 @@ + + + + + GetFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetIndexedFieldNames.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetIndexedFieldNames.html new file mode 100644 index 0000000..40898d6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetIndexedFieldNames.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.GetIndexedFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetTermFreqVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetTermFreqVector.html new file mode 100644 index 0000000..1ade2bd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetTermFreqVector.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.GetTermFreqVector Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetTermFreqVectors.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetTermFreqVectors.html new file mode 100644 index 0000000..ccdd5e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.GetTermFreqVectors.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.GetTermFreqVectors Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.HasDeletions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.HasDeletions.html new file mode 100644 index 0000000..0af7fa2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.HasDeletions.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.HasDeletions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.IsDeleted.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.IsDeleted.html new file mode 100644 index 0000000..4f709a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.IsDeleted.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.IsDeleted Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.MaxDoc.html new file mode 100644 index 0000000..62c2f8c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overload_1.html new file mode 100644 index 0000000..423ce88 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.Norms Method (String, Byte[], Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overload_2.html new file mode 100644 index 0000000..42d43aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overload_2.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.Norms Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overloads.html new file mode 100644 index 0000000..626df9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Norms_overloads.html @@ -0,0 +1,15 @@ + + + + + Norms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.NumDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.NumDocs.html new file mode 100644 index 0000000..f4d1348 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.NumDocs.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.NumDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermDocs_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermDocs_overload_1.html new file mode 100644 index 0000000..d3d60aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermDocs_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.TermDocs Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermDocs_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermDocs_overloads.html new file mode 100644 index 0000000..10f0ec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermDocs_overloads.html @@ -0,0 +1,15 @@ + + + + + TermDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermPositions_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermPositions_overload_1.html new file mode 100644 index 0000000..123b220 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermPositions_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.TermPositions Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermPositions_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermPositions_overloads.html new file mode 100644 index 0000000..8d24379 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.TermPositions_overloads.html @@ -0,0 +1,15 @@ + + + + + TermPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overload_1.html new file mode 100644 index 0000000..f35b35d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.Terms Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overload_2.html new file mode 100644 index 0000000..1ffeef0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overload_2.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.Terms Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overloads.html new file mode 100644 index 0000000..3023d7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.Terms_overloads.html @@ -0,0 +1,15 @@ + + + + + Terms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.html new file mode 100644 index 0000000..fee5636 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.input.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.input.html new file mode 100644 index 0000000..6785d65 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReader.input.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader.input Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderConstructor.html new file mode 100644 index 0000000..7afb1e1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderFields.html new file mode 100644 index 0000000..8188836 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderFields.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderMembers.html new file mode 100644 index 0000000..fa25c65 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderMembers.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderMethods.html new file mode 100644 index 0000000..ac3076e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.FilterIndexReaderMethods.html @@ -0,0 +1,15 @@ + + + + + FilterIndexReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Close.html new file mode 100644 index 0000000..ad375f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Close.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Commit.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Commit.html new file mode 100644 index 0000000..67ff4f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Commit.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Commit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overload_1.html new file mode 100644 index 0000000..9725ee5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Delete Method (Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overload_2.html new file mode 100644 index 0000000..43938a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Delete Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overloads.html new file mode 100644 index 0000000..1b014b4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Delete_overloads.html @@ -0,0 +1,15 @@ + + + + + Delete Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Directory.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Directory.html new file mode 100644 index 0000000..992e825 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Directory.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Directory Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoClose.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoClose.html new file mode 100644 index 0000000..6ba27cc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoClose.html @@ -0,0 +1,15 @@ + + + + + IndexReader.DoClose Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoCommit.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoCommit.html new file mode 100644 index 0000000..9b9ac11 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoCommit.html @@ -0,0 +1,15 @@ + + + + + IndexReader.DoCommit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoDelete.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoDelete.html new file mode 100644 index 0000000..a3731fa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoDelete.html @@ -0,0 +1,15 @@ + + + + + IndexReader.DoDelete Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoSetNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoSetNorm.html new file mode 100644 index 0000000..b294243 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoSetNorm.html @@ -0,0 +1,15 @@ + + + + + IndexReader.DoSetNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoUndeleteAll.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoUndeleteAll.html new file mode 100644 index 0000000..1368bc8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DoUndeleteAll.html @@ -0,0 +1,15 @@ + + + + + IndexReader.DoUndeleteAll Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DocFreq.html new file mode 100644 index 0000000..78d75a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.DocFreq.html @@ -0,0 +1,15 @@ + + + + + IndexReader.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Document.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Document.html new file mode 100644 index 0000000..8c37b99 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Document.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Document Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Finalize.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Finalize.html new file mode 100644 index 0000000..9a2810e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Finalize.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Finalize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_1.html new file mode 100644 index 0000000..aa9bb4e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetCurrentVersion Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_2.html new file mode 100644 index 0000000..2538e00 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetCurrentVersion Method (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_3.html new file mode 100644 index 0000000..4dbc370 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overload_3.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetCurrentVersion Method (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overloads.html new file mode 100644 index 0000000..bc6c391 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetCurrentVersion_overloads.html @@ -0,0 +1,15 @@ + + + + + GetCurrentVersion Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overload_1.html new file mode 100644 index 0000000..3946ec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetFieldNames Method (Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overload_2.html new file mode 100644 index 0000000..45adaa2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetFieldNames Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overloads.html new file mode 100644 index 0000000..3ccc874 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetFieldNames_overloads.html @@ -0,0 +1,15 @@ + + + + + GetFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetIndexedFieldNames.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetIndexedFieldNames.html new file mode 100644 index 0000000..d3363e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetIndexedFieldNames.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetIndexedFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetTermFreqVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetTermFreqVector.html new file mode 100644 index 0000000..344f95e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetTermFreqVector.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetTermFreqVector Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetTermFreqVectors.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetTermFreqVectors.html new file mode 100644 index 0000000..b44315e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.GetTermFreqVectors.html @@ -0,0 +1,15 @@ + + + + + IndexReader.GetTermFreqVectors Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.HasDeletions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.HasDeletions.html new file mode 100644 index 0000000..295081e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.HasDeletions.html @@ -0,0 +1,15 @@ + + + + + IndexReader.HasDeletions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_1.html new file mode 100644 index 0000000..72dcaa0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.IndexExists Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_2.html new file mode 100644 index 0000000..522bea4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.IndexExists Method (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_3.html new file mode 100644 index 0000000..f742796 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overload_3.html @@ -0,0 +1,15 @@ + + + + + IndexReader.IndexExists Method (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overloads.html new file mode 100644 index 0000000..3b976ad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IndexExists_overloads.html @@ -0,0 +1,15 @@ + + + + + IndexExists Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsDeleted.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsDeleted.html new file mode 100644 index 0000000..5a43015 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsDeleted.html @@ -0,0 +1,15 @@ + + + + + IndexReader.IsDeleted Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overload_1.html new file mode 100644 index 0000000..7c6e75a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.IsLocked Method (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overload_2.html new file mode 100644 index 0000000..97fc776 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.IsLocked Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overloads.html new file mode 100644 index 0000000..bf02c30 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.IsLocked_overloads.html @@ -0,0 +1,15 @@ + + + + + IsLocked Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_1.html new file mode 100644 index 0000000..c839489 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.LastModified Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_2.html new file mode 100644 index 0000000..4719dee --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.LastModified Method (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_3.html new file mode 100644 index 0000000..0a8d0e3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overload_3.html @@ -0,0 +1,15 @@ + + + + + IndexReader.LastModified Method (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overloads.html new file mode 100644 index 0000000..562eb0c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.LastModified_overloads.html @@ -0,0 +1,15 @@ + + + + + LastModified Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.MaxDoc.html new file mode 100644 index 0000000..abd2684 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + IndexReader.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overload_1.html new file mode 100644 index 0000000..2306318 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Norms Method (String, Byte[], Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overload_2.html new file mode 100644 index 0000000..08a149a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Norms Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overloads.html new file mode 100644 index 0000000..626df9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Norms_overloads.html @@ -0,0 +1,15 @@ + + + + + Norms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.NumDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.NumDocs.html new file mode 100644 index 0000000..d141752 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.NumDocs.html @@ -0,0 +1,15 @@ + + + + + IndexReader.NumDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_1.html new file mode 100644 index 0000000..60e5a0e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Open Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_2.html new file mode 100644 index 0000000..d5655ae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Open Method (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_3.html new file mode 100644 index 0000000..aeaed2c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overload_3.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Open Method (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overloads.html new file mode 100644 index 0000000..c22bc8e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Open_overloads.html @@ -0,0 +1,15 @@ + + + + + Open Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overload_1.html new file mode 100644 index 0000000..d771e9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.SetNorm Method (Int32, String, Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overload_2.html new file mode 100644 index 0000000..54b0efb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.SetNorm Method (Int32, String, Byte) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overloads.html new file mode 100644 index 0000000..84982eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.SetNorm_overloads.html @@ -0,0 +1,15 @@ + + + + + SetNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overload_1.html new file mode 100644 index 0000000..3c896bc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.TermDocs Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overload_2.html new file mode 100644 index 0000000..d8db1da --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.TermDocs Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overloads.html new file mode 100644 index 0000000..10f0ec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermDocs_overloads.html @@ -0,0 +1,15 @@ + + + + + TermDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overload_1.html new file mode 100644 index 0000000..e76b01c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.TermPositions Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overload_2.html new file mode 100644 index 0000000..f6644e5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.TermPositions Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overloads.html new file mode 100644 index 0000000..8d24379 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.TermPositions_overloads.html @@ -0,0 +1,15 @@ + + + + + TermPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overload_1.html new file mode 100644 index 0000000..a8270ed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Terms Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overload_2.html new file mode 100644 index 0000000..7759fcb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Terms Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overloads.html new file mode 100644 index 0000000..3023d7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Terms_overloads.html @@ -0,0 +1,15 @@ + + + + + Terms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.UndeleteAll.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.UndeleteAll.html new file mode 100644 index 0000000..f94b341 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.UndeleteAll.html @@ -0,0 +1,15 @@ + + + + + IndexReader.UndeleteAll Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Unlock.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Unlock.html new file mode 100644 index 0000000..a3015dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.Unlock.html @@ -0,0 +1,15 @@ + + + + + IndexReader.Unlock Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.html new file mode 100644 index 0000000..898d3c3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReader.html @@ -0,0 +1,15 @@ + + + + + IndexReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderConstructor1.html new file mode 100644 index 0000000..92373f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderConstructor1.html @@ -0,0 +1,15 @@ + + + + + IndexReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderMembers.html new file mode 100644 index 0000000..81d7dcf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderMembers.html @@ -0,0 +1,15 @@ + + + + + IndexReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderMethods.html new file mode 100644 index 0000000..5a0a12e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexReaderMethods.html @@ -0,0 +1,15 @@ + + + + + IndexReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overload_1.html new file mode 100644 index 0000000..d2a55bd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.AddDocument Method (Document, Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overload_2.html new file mode 100644 index 0000000..9d4c2c5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.AddDocument Method (Document) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overloads.html new file mode 100644 index 0000000..4682aed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddDocument_overloads.html @@ -0,0 +1,15 @@ + + + + + AddDocument Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overload_1.html new file mode 100644 index 0000000..bf53c05 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.AddIndexes Method (IndexReader[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overload_2.html new file mode 100644 index 0000000..5c96e4d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.AddIndexes Method (Directory[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overloads.html new file mode 100644 index 0000000..62e9d60 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.AddIndexes_overloads.html @@ -0,0 +1,15 @@ + + + + + AddIndexes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.COMMIT_LOCK_NAME.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.COMMIT_LOCK_NAME.html new file mode 100644 index 0000000..7072b68 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.COMMIT_LOCK_NAME.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.COMMIT_LOCK_NAME Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.COMMIT_LOCK_TIMEOUT.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.COMMIT_LOCK_TIMEOUT.html new file mode 100644 index 0000000..6c9df8c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.COMMIT_LOCK_TIMEOUT.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.COMMIT_LOCK_TIMEOUT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Close.html new file mode 100644 index 0000000..1861ac6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Close.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MAX_FIELD_LENGTH.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MAX_FIELD_LENGTH.html new file mode 100644 index 0000000..f7a71c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MAX_FIELD_LENGTH.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.DEFAULT_MAX_FIELD_LENGTH Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MAX_MERGE_DOCS.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MAX_MERGE_DOCS.html new file mode 100644 index 0000000..a85c212 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MAX_MERGE_DOCS.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.DEFAULT_MAX_MERGE_DOCS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MERGE_FACTOR.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MERGE_FACTOR.html new file mode 100644 index 0000000..f92809c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MERGE_FACTOR.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.DEFAULT_MERGE_FACTOR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MIN_MERGE_DOCS.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MIN_MERGE_DOCS.html new file mode 100644 index 0000000..91b602f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DEFAULT_MIN_MERGE_DOCS.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.DEFAULT_MIN_MERGE_DOCS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DocCount.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DocCount.html new file mode 100644 index 0000000..424bef6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.DocCount.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.DocCount Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Finalize.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Finalize.html new file mode 100644 index 0000000..9c0c8f5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Finalize.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.Finalize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetAnalyzer.html new file mode 100644 index 0000000..4b48dd8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetAnalyzer.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.GetAnalyzer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetSimilarity.html new file mode 100644 index 0000000..880f3ce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetSimilarity.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.GetSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetUseCompoundFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetUseCompoundFile.html new file mode 100644 index 0000000..4593697 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.GetUseCompoundFile.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.GetUseCompoundFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Optimize.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Optimize.html new file mode 100644 index 0000000..e8d62ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.Optimize.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.Optimize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.SetSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.SetSimilarity.html new file mode 100644 index 0000000..e62efa2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.SetSimilarity.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.SetSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.SetUseCompoundFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.SetUseCompoundFile.html new file mode 100644 index 0000000..ee22d55 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.SetUseCompoundFile.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.SetUseCompoundFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.WRITE_LOCK_NAME.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.WRITE_LOCK_NAME.html new file mode 100644 index 0000000..12d2cad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.WRITE_LOCK_NAME.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.WRITE_LOCK_NAME Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.WRITE_LOCK_TIMEOUT.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.WRITE_LOCK_TIMEOUT.html new file mode 100644 index 0000000..81ef59f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.WRITE_LOCK_TIMEOUT.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.WRITE_LOCK_TIMEOUT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.html new file mode 100644 index 0000000..0b75aa7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.infoStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.infoStream.html new file mode 100644 index 0000000..cc15c77 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.infoStream.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.infoStream Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.maxFieldLength.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.maxFieldLength.html new file mode 100644 index 0000000..1b1f98d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.maxFieldLength.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.maxFieldLength Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.maxMergeDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.maxMergeDocs.html new file mode 100644 index 0000000..3e1ea8a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.maxMergeDocs.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.maxMergeDocs Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.mergeFactor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.mergeFactor.html new file mode 100644 index 0000000..f497867 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.mergeFactor.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.mergeFactor Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.minMergeDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.minMergeDocs.html new file mode 100644 index 0000000..8a9717f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriter.minMergeDocs.html @@ -0,0 +1,15 @@ + + + + + IndexWriter.minMergeDocs Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor.html new file mode 100644 index 0000000..556ff1c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor1.html new file mode 100644 index 0000000..135ccba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor1.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Constructor (String, Analyzer, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor2.html new file mode 100644 index 0000000..335b053 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor2.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Constructor (FileInfo, Analyzer, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor3.html new file mode 100644 index 0000000..1876a71 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterConstructor3.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Constructor (Directory, Analyzer, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterFields.html new file mode 100644 index 0000000..f49bc58 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterFields.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterMembers.html new file mode 100644 index 0000000..6f741be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterMembers.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterMethods.html new file mode 100644 index 0000000..81106ad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.IndexWriterMethods.html @@ -0,0 +1,15 @@ + + + + + IndexWriter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoClose.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoClose.html new file mode 100644 index 0000000..6348d60 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoClose.html @@ -0,0 +1,15 @@ + + + + + MultiReader.DoClose Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoCommit.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoCommit.html new file mode 100644 index 0000000..789d583 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoCommit.html @@ -0,0 +1,15 @@ + + + + + MultiReader.DoCommit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoDelete.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoDelete.html new file mode 100644 index 0000000..d77a888 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoDelete.html @@ -0,0 +1,15 @@ + + + + + MultiReader.DoDelete Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoSetNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoSetNorm.html new file mode 100644 index 0000000..96f03b2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoSetNorm.html @@ -0,0 +1,15 @@ + + + + + MultiReader.DoSetNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoUndeleteAll.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoUndeleteAll.html new file mode 100644 index 0000000..1feaf1d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DoUndeleteAll.html @@ -0,0 +1,15 @@ + + + + + MultiReader.DoUndeleteAll Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DocFreq.html new file mode 100644 index 0000000..f903b3a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.DocFreq.html @@ -0,0 +1,15 @@ + + + + + MultiReader.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Document.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Document.html new file mode 100644 index 0000000..ef768dd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Document.html @@ -0,0 +1,15 @@ + + + + + MultiReader.Document Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overload_1.html new file mode 100644 index 0000000..a92eb3e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiReader.GetFieldNames Method (Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overload_2.html new file mode 100644 index 0000000..902ca1f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overload_2.html @@ -0,0 +1,15 @@ + + + + + MultiReader.GetFieldNames Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overloads.html new file mode 100644 index 0000000..3ccc874 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetFieldNames_overloads.html @@ -0,0 +1,15 @@ + + + + + GetFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetIndexedFieldNames.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetIndexedFieldNames.html new file mode 100644 index 0000000..fd61e8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetIndexedFieldNames.html @@ -0,0 +1,15 @@ + + + + + MultiReader.GetIndexedFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetTermFreqVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetTermFreqVector.html new file mode 100644 index 0000000..cbaa9ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetTermFreqVector.html @@ -0,0 +1,15 @@ + + + + + MultiReader.GetTermFreqVector Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetTermFreqVectors.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetTermFreqVectors.html new file mode 100644 index 0000000..f5fa30b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.GetTermFreqVectors.html @@ -0,0 +1,15 @@ + + + + + MultiReader.GetTermFreqVectors Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.HasDeletions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.HasDeletions.html new file mode 100644 index 0000000..7c380a9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.HasDeletions.html @@ -0,0 +1,15 @@ + + + + + MultiReader.HasDeletions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.IsDeleted.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.IsDeleted.html new file mode 100644 index 0000000..73b27c5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.IsDeleted.html @@ -0,0 +1,15 @@ + + + + + MultiReader.IsDeleted Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.MaxDoc.html new file mode 100644 index 0000000..af891bd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + MultiReader.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overload_1.html new file mode 100644 index 0000000..e9602fe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiReader.Norms Method (String, Byte[], Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overload_2.html new file mode 100644 index 0000000..493cefd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overload_2.html @@ -0,0 +1,15 @@ + + + + + MultiReader.Norms Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overloads.html new file mode 100644 index 0000000..626df9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Norms_overloads.html @@ -0,0 +1,15 @@ + + + + + Norms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.NumDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.NumDocs.html new file mode 100644 index 0000000..96fe1f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.NumDocs.html @@ -0,0 +1,15 @@ + + + + + MultiReader.NumDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermDocs_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermDocs_overload_1.html new file mode 100644 index 0000000..9bcdc37 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermDocs_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiReader.TermDocs Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermDocs_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermDocs_overloads.html new file mode 100644 index 0000000..10f0ec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermDocs_overloads.html @@ -0,0 +1,15 @@ + + + + + TermDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermPositions_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermPositions_overload_1.html new file mode 100644 index 0000000..ab1b226 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermPositions_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiReader.TermPositions Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermPositions_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermPositions_overloads.html new file mode 100644 index 0000000..8d24379 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.TermPositions_overloads.html @@ -0,0 +1,15 @@ + + + + + TermPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overload_1.html new file mode 100644 index 0000000..01a22d2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiReader.Terms Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overload_2.html new file mode 100644 index 0000000..d0301ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overload_2.html @@ -0,0 +1,15 @@ + + + + + MultiReader.Terms Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overloads.html new file mode 100644 index 0000000..3023d7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.Terms_overloads.html @@ -0,0 +1,15 @@ + + + + + Terms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.html new file mode 100644 index 0000000..b9bfb93 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReader.html @@ -0,0 +1,15 @@ + + + + + MultiReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor.html new file mode 100644 index 0000000..74b7bfe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + MultiReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor1.html new file mode 100644 index 0000000..50a9d65 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor1.html @@ -0,0 +1,15 @@ + + + + + MultiReader Constructor (IndexReader[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor2.html new file mode 100644 index 0000000..8742606 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderConstructor2.html @@ -0,0 +1,15 @@ + + + + + MultiReader Constructor (Directory, SegmentInfos, Boolean, IndexReader[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderMembers.html new file mode 100644 index 0000000..5a65b4c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderMembers.html @@ -0,0 +1,15 @@ + + + + + MultiReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderMethods.html new file mode 100644 index 0000000..b0dea67 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultiReaderMethods.html @@ -0,0 +1,15 @@ + + + + + MultiReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Close.html new file mode 100644 index 0000000..ae60129 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Close.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Doc.html new file mode 100644 index 0000000..b528c6e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Doc.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Freq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Freq.html new file mode 100644 index 0000000..d100d85 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Freq.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Freq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Next.html new file mode 100644 index 0000000..66a18ef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Next.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.NextPosition.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.NextPosition.html new file mode 100644 index 0000000..34bb44a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.NextPosition.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.NextPosition Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Read.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Read.html new file mode 100644 index 0000000..875e0e6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Read.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Read Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overload_1.html new file mode 100644 index 0000000..17107f1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Seek Method (TermEnum) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overload_2.html new file mode 100644 index 0000000..4d826a1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overload_2.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.Seek Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overloads.html new file mode 100644 index 0000000..54544c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.Seek_overloads.html @@ -0,0 +1,15 @@ + + + + + Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.SkipTo.html new file mode 100644 index 0000000..a5e4207 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.SkipTo.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.html new file mode 100644 index 0000000..ad8cc4b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositions.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsConstructor.html new file mode 100644 index 0000000..5be7f54 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsConstructor.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsMembers.html new file mode 100644 index 0000000..7b46642 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsMembers.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsMethods.html new file mode 100644 index 0000000..e6b2c07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.MultipleTermPositionsMethods.html @@ -0,0 +1,15 @@ + + + + + MultipleTermPositions Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.dir.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.dir.html new file mode 100644 index 0000000..e80a78e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.dir.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo.dir Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.docCount.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.docCount.html new file mode 100644 index 0000000..1c4366d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.docCount.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo.docCount Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.html new file mode 100644 index 0000000..a6f673a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.name.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.name.html new file mode 100644 index 0000000..2495068 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfo.name.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo.name Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoConstructor.html new file mode 100644 index 0000000..ff57bc9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoConstructor.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoFields.html new file mode 100644 index 0000000..1a17e9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoFields.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoMembers.html new file mode 100644 index 0000000..8c08eb1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfoMembers.html @@ -0,0 +1,15 @@ + + + + + SegmentInfo Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.FORMAT.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.FORMAT.html new file mode 100644 index 0000000..490964d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.FORMAT.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.FORMAT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.GetVersion.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.GetVersion.html new file mode 100644 index 0000000..3043fa5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.GetVersion.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.GetVersion Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Info.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Info.html new file mode 100644 index 0000000..ee8220f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Info.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.Info Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Read.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Read.html new file mode 100644 index 0000000..9d1151d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Read.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.Read Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.ReadCurrentVersion.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.ReadCurrentVersion.html new file mode 100644 index 0000000..bf266f4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.ReadCurrentVersion.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.ReadCurrentVersion Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Write.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Write.html new file mode 100644 index 0000000..2c87889 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.Write.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.Write Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.counter.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.counter.html new file mode 100644 index 0000000..1ba2e24 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.counter.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos.counter Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.html new file mode 100644 index 0000000..5b5a857 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfos.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosConstructor.html new file mode 100644 index 0000000..5d3ed97 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosConstructor.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosFields.html new file mode 100644 index 0000000..0b15b3c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosFields.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosMembers.html new file mode 100644 index 0000000..b4a60c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosMembers.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosMethods.html new file mode 100644 index 0000000..ed9523f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentInfosMethods.html @@ -0,0 +1,15 @@ + + + + + SegmentInfos Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.Add.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.Add.html new file mode 100644 index 0000000..b61cfa0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.Add.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger.Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.CloseReaders.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.CloseReaders.html new file mode 100644 index 0000000..1fd8ad5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.CloseReaders.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger.CloseReaders Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.Merge.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.Merge.html new file mode 100644 index 0000000..7db92de --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.Merge.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger.Merge Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.html new file mode 100644 index 0000000..f417a02 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMerger.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerConstructor.html new file mode 100644 index 0000000..a52fa16 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerConstructor.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerMembers.html new file mode 100644 index 0000000..c6743ec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerMembers.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerMethods.html new file mode 100644 index 0000000..5bb6b7c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentMergerMethods.html @@ -0,0 +1,15 @@ + + + + + SegmentMerger Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoClose.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoClose.html new file mode 100644 index 0000000..574da03 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoClose.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.DoClose Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoCommit.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoCommit.html new file mode 100644 index 0000000..7faa49a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoCommit.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.DoCommit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoDelete.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoDelete.html new file mode 100644 index 0000000..831bc09 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoDelete.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.DoDelete Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoSetNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoSetNorm.html new file mode 100644 index 0000000..91ce92a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoSetNorm.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.DoSetNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoUndeleteAll.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoUndeleteAll.html new file mode 100644 index 0000000..00a03c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DoUndeleteAll.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.DoUndeleteAll Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DocFreq.html new file mode 100644 index 0000000..7d194de --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.DocFreq.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Document.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Document.html new file mode 100644 index 0000000..fcc98d1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Document.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.Document Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overload_1.html new file mode 100644 index 0000000..46d5f22 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overload_1.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.GetFieldNames Method (Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overload_2.html new file mode 100644 index 0000000..c881290 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overload_2.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.GetFieldNames Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overloads.html new file mode 100644 index 0000000..3ccc874 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetFieldNames_overloads.html @@ -0,0 +1,15 @@ + + + + + GetFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetIndexedFieldNames.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetIndexedFieldNames.html new file mode 100644 index 0000000..89fa375 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetIndexedFieldNames.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.GetIndexedFieldNames Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetTermFreqVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetTermFreqVector.html new file mode 100644 index 0000000..c1c929a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetTermFreqVector.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.GetTermFreqVector Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetTermFreqVectors.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetTermFreqVectors.html new file mode 100644 index 0000000..0135312 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.GetTermFreqVectors.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.GetTermFreqVectors Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.HasDeletions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.HasDeletions.html new file mode 100644 index 0000000..58a5584 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.HasDeletions.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.HasDeletions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.IsDeleted.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.IsDeleted.html new file mode 100644 index 0000000..f6bd90b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.IsDeleted.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.IsDeleted Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.MaxDoc.html new file mode 100644 index 0000000..ff42b26 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overload_1.html new file mode 100644 index 0000000..9eb666c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overload_1.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.Norms Method (String, Byte[], Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overload_2.html new file mode 100644 index 0000000..842f703 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overload_2.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.Norms Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overloads.html new file mode 100644 index 0000000..626df9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Norms_overloads.html @@ -0,0 +1,15 @@ + + + + + Norms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.NumDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.NumDocs.html new file mode 100644 index 0000000..ece841b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.NumDocs.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.NumDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermDocs_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermDocs_overload_1.html new file mode 100644 index 0000000..e422fa3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermDocs_overload_1.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.TermDocs Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermDocs_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermDocs_overloads.html new file mode 100644 index 0000000..10f0ec3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermDocs_overloads.html @@ -0,0 +1,15 @@ + + + + + TermDocs Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermPositions_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermPositions_overload_1.html new file mode 100644 index 0000000..c9a65cb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermPositions_overload_1.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.TermPositions Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermPositions_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermPositions_overloads.html new file mode 100644 index 0000000..8d24379 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.TermPositions_overloads.html @@ -0,0 +1,15 @@ + + + + + TermPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overload_1.html new file mode 100644 index 0000000..7209c0a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overload_1.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.Terms Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overload_2.html new file mode 100644 index 0000000..9e5931e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overload_2.html @@ -0,0 +1,15 @@ + + + + + SegmentReader.Terms Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overloads.html new file mode 100644 index 0000000..3023d7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.Terms_overloads.html @@ -0,0 +1,15 @@ + + + + + Terms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.html new file mode 100644 index 0000000..b647657 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReader.html @@ -0,0 +1,15 @@ + + + + + SegmentReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor.html new file mode 100644 index 0000000..a0fd36e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + SegmentReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor1.html new file mode 100644 index 0000000..f2053e6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor1.html @@ -0,0 +1,15 @@ + + + + + SegmentReader Constructor (SegmentInfos, SegmentInfo, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor2.html new file mode 100644 index 0000000..6ca341b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderConstructor2.html @@ -0,0 +1,15 @@ + + + + + SegmentReader Constructor (SegmentInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderMembers.html new file mode 100644 index 0000000..35009ec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderMembers.html @@ -0,0 +1,15 @@ + + + + + SegmentReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderMethods.html new file mode 100644 index 0000000..bfdcd51 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentReaderMethods.html @@ -0,0 +1,15 @@ + + + + + SegmentReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Close.html new file mode 100644 index 0000000..a626c84 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Close.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Doc.html new file mode 100644 index 0000000..ff819c4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Doc.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Freq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Freq.html new file mode 100644 index 0000000..38d88b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Freq.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Freq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Next.html new file mode 100644 index 0000000..813d540 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Next.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Read.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Read.html new file mode 100644 index 0000000..5e1db62 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Read.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Read Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overload_1.html new file mode 100644 index 0000000..f9fc625 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overload_1.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Seek Method (TermEnum) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overload_2.html new file mode 100644 index 0000000..4209f17 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overload_2.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.Seek Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overloads.html new file mode 100644 index 0000000..54544c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.Seek_overloads.html @@ -0,0 +1,15 @@ + + + + + Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkipProx.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkipProx.html new file mode 100644 index 0000000..f1d9d44 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkipProx.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.SkipProx Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkipTo.html new file mode 100644 index 0000000..5482f79 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkipTo.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkippingDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkippingDoc.html new file mode 100644 index 0000000..a66d6e6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.SkippingDoc.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.SkippingDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.html new file mode 100644 index 0000000..425986f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.parent.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.parent.html new file mode 100644 index 0000000..10a6326 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocs.parent.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs.parent Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsConstructor.html new file mode 100644 index 0000000..0a07dbd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsConstructor.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsFields.html new file mode 100644 index 0000000..bb78c0d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsFields.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsMembers.html new file mode 100644 index 0000000..a381fb5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsMembers.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsMethods.html new file mode 100644 index 0000000..7c286a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermDocsMethods.html @@ -0,0 +1,15 @@ + + + + + SegmentTermDocs Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Clone.html new file mode 100644 index 0000000..0711bb4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Clone.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Close.html new file mode 100644 index 0000000..e709321 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Close.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.DocFreq.html new file mode 100644 index 0000000..a0e9360 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.DocFreq.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Next.html new file mode 100644 index 0000000..9a49521 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Next.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Term.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Term.html new file mode 100644 index 0000000..9d38775 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.Term.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum.Term Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.TermInfo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.TermInfo.html new file mode 100644 index 0000000..35bc704 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.TermInfo.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum.TermInfo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.html new file mode 100644 index 0000000..ce96544 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnum.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnumMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnumMembers.html new file mode 100644 index 0000000..7d79ecd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnumMembers.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnumMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnumMethods.html new file mode 100644 index 0000000..5a46266 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.SegmentTermEnumMethods.html @@ -0,0 +1,15 @@ + + + + + SegmentTermEnum Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overload_1.html new file mode 100644 index 0000000..7e6d647 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overload_1.html @@ -0,0 +1,15 @@ + + + + + Term.CompareTo Method (Object) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overload_2.html new file mode 100644 index 0000000..a50aaed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overload_2.html @@ -0,0 +1,15 @@ + + + + + Term.CompareTo Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overloads.html new file mode 100644 index 0000000..5577e43 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.CompareTo_overloads.html @@ -0,0 +1,15 @@ + + + + + CompareTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.Equals.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.Equals.html new file mode 100644 index 0000000..cc5b123 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.Equals.html @@ -0,0 +1,15 @@ + + + + + Term.Equals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.Field.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.Field.html new file mode 100644 index 0000000..f5391ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.Field.html @@ -0,0 +1,15 @@ + + + + + Term.Field Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.GetHashCode.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.GetHashCode.html new file mode 100644 index 0000000..394c2a6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.GetHashCode.html @@ -0,0 +1,15 @@ + + + + + Term.GetHashCode Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.ToString.html new file mode 100644 index 0000000..4458ebe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.ToString.html @@ -0,0 +1,15 @@ + + + + + Term.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.html new file mode 100644 index 0000000..ee48b42 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.html @@ -0,0 +1,15 @@ + + + + + Term Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.text.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.text.html new file mode 100644 index 0000000..cbc9c61 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.Term.text.html @@ -0,0 +1,15 @@ + + + + + Term.Text Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermConstructor1.html new file mode 100644 index 0000000..a38a0d6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermConstructor1.html @@ -0,0 +1,15 @@ + + + + + Term Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Close.html new file mode 100644 index 0000000..e4a3cc7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Close.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Doc.html new file mode 100644 index 0000000..2148aad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Doc.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Freq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Freq.html new file mode 100644 index 0000000..1ebc148 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Freq.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Freq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Next.html new file mode 100644 index 0000000..94b7092 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Next.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Read.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Read.html new file mode 100644 index 0000000..3154672 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Read.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Read Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overload_1.html new file mode 100644 index 0000000..0538b3b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overload_1.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Seek Method (TermEnum) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overload_2.html new file mode 100644 index 0000000..5e40d80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overload_2.html @@ -0,0 +1,15 @@ + + + + + TermDocs.Seek Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overloads.html new file mode 100644 index 0000000..54544c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.Seek_overloads.html @@ -0,0 +1,15 @@ + + + + + Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.SkipTo.html new file mode 100644 index 0000000..2c4d9c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.SkipTo.html @@ -0,0 +1,15 @@ + + + + + TermDocs.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.html new file mode 100644 index 0000000..d791096 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocs.html @@ -0,0 +1,15 @@ + + + + + TermDocs Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocsMembers.html new file mode 100644 index 0000000..b52d3d3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocsMembers.html @@ -0,0 +1,15 @@ + + + + + TermDocs Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocsMethods.html new file mode 100644 index 0000000..d9cfb2f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermDocsMethods.html @@ -0,0 +1,15 @@ + + + + + TermDocs Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Close.html new file mode 100644 index 0000000..43d86b2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Close.html @@ -0,0 +1,15 @@ + + + + + TermEnum.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.DocFreq.html new file mode 100644 index 0000000..3ecbc04 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.DocFreq.html @@ -0,0 +1,15 @@ + + + + + TermEnum.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Next.html new file mode 100644 index 0000000..621defa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Next.html @@ -0,0 +1,15 @@ + + + + + TermEnum.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.SkipTo.html new file mode 100644 index 0000000..58e657f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.SkipTo.html @@ -0,0 +1,15 @@ + + + + + TermEnum.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Term.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Term.html new file mode 100644 index 0000000..8df67a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.Term.html @@ -0,0 +1,15 @@ + + + + + TermEnum.Term Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.html new file mode 100644 index 0000000..8406d54 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnum.html @@ -0,0 +1,15 @@ + + + + + TermEnum Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumConstructor.html new file mode 100644 index 0000000..38bc5fc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumConstructor.html @@ -0,0 +1,15 @@ + + + + + TermEnum Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumMembers.html new file mode 100644 index 0000000..12cf480 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumMembers.html @@ -0,0 +1,15 @@ + + + + + TermEnum Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumMethods.html new file mode 100644 index 0000000..9084d36 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermEnumMethods.html @@ -0,0 +1,15 @@ + + + + + TermEnum Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFields.html new file mode 100644 index 0000000..febbe05 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFields.html @@ -0,0 +1,15 @@ + + + + + Term Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetField.html new file mode 100644 index 0000000..8abeb54 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetField.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetTermFrequencies.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetTermFrequencies.html new file mode 100644 index 0000000..7c603a1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetTermFrequencies.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector.GetTermFrequencies Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetTerms.html new file mode 100644 index 0000000..8c621d7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.GetTerms.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.IndexOf.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.IndexOf.html new file mode 100644 index 0000000..fb96785 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.IndexOf.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector.IndexOf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.IndexesOf.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.IndexesOf.html new file mode 100644 index 0000000..f12ffff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.IndexesOf.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector.IndexesOf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.Size.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.Size.html new file mode 100644 index 0000000..ba5665f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.Size.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector.Size Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.html new file mode 100644 index 0000000..38ada75 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVector.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVectorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVectorMembers.html new file mode 100644 index 0000000..e959b95 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVectorMembers.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVectorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVectorMethods.html new file mode 100644 index 0000000..d2d43c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermFreqVectorMethods.html @@ -0,0 +1,15 @@ + + + + + TermFreqVector Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.docFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.docFreq.html new file mode 100644 index 0000000..44734db --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.docFreq.html @@ -0,0 +1,15 @@ + + + + + TermInfo.docFreq Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.freqPointer.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.freqPointer.html new file mode 100644 index 0000000..a6fdc01 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.freqPointer.html @@ -0,0 +1,15 @@ + + + + + TermInfo.freqPointer Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.html new file mode 100644 index 0000000..be56003 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.html @@ -0,0 +1,15 @@ + + + + + TermInfo Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.proxPointer.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.proxPointer.html new file mode 100644 index 0000000..f1ae3f9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfo.proxPointer.html @@ -0,0 +1,15 @@ + + + + + TermInfo.proxPointer Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoConstructor1.html new file mode 100644 index 0000000..46a04c8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoConstructor1.html @@ -0,0 +1,15 @@ + + + + + TermInfo Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoFields.html new file mode 100644 index 0000000..408f053 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoFields.html @@ -0,0 +1,15 @@ + + + + + TermInfo Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoMembers.html new file mode 100644 index 0000000..6972602 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfoMembers.html @@ -0,0 +1,15 @@ + + + + + TermInfo Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Close.html new file mode 100644 index 0000000..d5d6bf6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Close.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Get.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Get.html new file mode 100644 index 0000000..26f1543 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Get.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader.Get Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.GetSkipInterval.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.GetSkipInterval.html new file mode 100644 index 0000000..478da4d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.GetSkipInterval.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader.GetSkipInterval Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overload_1.html new file mode 100644 index 0000000..3f433fd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overload_1.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader.Terms Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overload_2.html new file mode 100644 index 0000000..b1e5dbe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overload_2.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader.Terms Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overloads.html new file mode 100644 index 0000000..3023d7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.Terms_overloads.html @@ -0,0 +1,15 @@ + + + + + Terms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.html new file mode 100644 index 0000000..f9390d6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReader.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderConstructor.html new file mode 100644 index 0000000..8ada50a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderMembers.html new file mode 100644 index 0000000..e621f5e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderMembers.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderMethods.html new file mode 100644 index 0000000..5e3a392 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosReaderMethods.html @@ -0,0 +1,15 @@ + + + + + TermInfosReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.Add.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.Add.html new file mode 100644 index 0000000..33dc35d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.Add.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter.Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.Close.html new file mode 100644 index 0000000..fe1fe6e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.Close.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.FORMAT.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.FORMAT.html new file mode 100644 index 0000000..3ff5de1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.FORMAT.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter.FORMAT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.html new file mode 100644 index 0000000..2a72312 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriter.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterConstructor1.html new file mode 100644 index 0000000..fcfdf33 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterConstructor1.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterFields.html new file mode 100644 index 0000000..b5dad32 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterFields.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterMembers.html new file mode 100644 index 0000000..f6996b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterMembers.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterMethods.html new file mode 100644 index 0000000..14600b7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermInfosWriterMethods.html @@ -0,0 +1,15 @@ + + + + + TermInfosWriter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermMembers.html new file mode 100644 index 0000000..48115c7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermMembers.html @@ -0,0 +1,15 @@ + + + + + Term Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermMethods.html new file mode 100644 index 0000000..cb6bdb3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermMethods.html @@ -0,0 +1,15 @@ + + + + + Term Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVector.GetTermPositions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVector.GetTermPositions.html new file mode 100644 index 0000000..82510fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVector.GetTermPositions.html @@ -0,0 +1,15 @@ + + + + + TermPositionVector.GetTermPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVector.html new file mode 100644 index 0000000..f6f825f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVector.html @@ -0,0 +1,15 @@ + + + + + TermPositionVector Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVectorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVectorMembers.html new file mode 100644 index 0000000..676c50e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVectorMembers.html @@ -0,0 +1,15 @@ + + + + + TermPositionVector Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVectorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVectorMethods.html new file mode 100644 index 0000000..267a55b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionVectorMethods.html @@ -0,0 +1,15 @@ + + + + + TermPositionVector Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositions.NextPosition.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositions.NextPosition.html new file mode 100644 index 0000000..dfa04b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositions.NextPosition.html @@ -0,0 +1,15 @@ + + + + + TermPositions.NextPosition Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositions.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositions.html new file mode 100644 index 0000000..042a83e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositions.html @@ -0,0 +1,15 @@ + + + + + TermPositions Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionsMembers.html new file mode 100644 index 0000000..6f4ce48 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionsMembers.html @@ -0,0 +1,15 @@ + + + + + TermPositions Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionsMethods.html new file mode 100644 index 0000000..834ccc9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermPositionsMethods.html @@ -0,0 +1,15 @@ + + + + + TermPositions Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReader.Get.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReader.Get.html new file mode 100644 index 0000000..f2db303 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReader.Get.html @@ -0,0 +1,15 @@ + + + + + TermVectorsReader.Get Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReader.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReader.html new file mode 100644 index 0000000..00bcfb4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReader.html @@ -0,0 +1,15 @@ + + + + + TermVectorsReader Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderConstructor.html new file mode 100644 index 0000000..323cdb7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderConstructor.html @@ -0,0 +1,15 @@ + + + + + TermVectorsReader Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderMembers.html new file mode 100644 index 0000000..44a8573 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderMembers.html @@ -0,0 +1,15 @@ + + + + + TermVectorsReader Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderMethods.html new file mode 100644 index 0000000..1126201 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsReaderMethods.html @@ -0,0 +1,15 @@ + + + + + TermVectorsReader Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddTerm.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddTerm.html new file mode 100644 index 0000000..6679723 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddTerm.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.AddTerm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddTermFreqVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddTermFreqVector.html new file mode 100644 index 0000000..d92f5aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddTermFreqVector.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.AddTermFreqVector Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddVectors.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddVectors.html new file mode 100644 index 0000000..b65ade3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.AddVectors.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.AddVectors Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.Close.html new file mode 100644 index 0000000..d777067 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.Close.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.CloseDocument.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.CloseDocument.html new file mode 100644 index 0000000..b3f0d32 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.CloseDocument.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.CloseDocument Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.CloseField.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.CloseField.html new file mode 100644 index 0000000..3df0a62 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.CloseField.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.CloseField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.FORMAT_SIZE.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.FORMAT_SIZE.html new file mode 100644 index 0000000..3bb94d1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.FORMAT_SIZE.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.FORMAT_SIZE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.FORMAT_VERSION.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.FORMAT_VERSION.html new file mode 100644 index 0000000..b91ad44 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.FORMAT_VERSION.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.FORMAT_VERSION Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.IsDocumentOpen.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.IsDocumentOpen.html new file mode 100644 index 0000000..43c79a1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.IsDocumentOpen.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.IsDocumentOpen Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.IsFieldOpen.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.IsFieldOpen.html new file mode 100644 index 0000000..ba80ab4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.IsFieldOpen.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.IsFieldOpen Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.OpenDocument.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.OpenDocument.html new file mode 100644 index 0000000..f44df56 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.OpenDocument.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.OpenDocument Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.OpenField.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.OpenField.html new file mode 100644 index 0000000..b7d885d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.OpenField.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.OpenField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVD_EXTENSION.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVD_EXTENSION.html new file mode 100644 index 0000000..be8c1cd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVD_EXTENSION.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.TVD_EXTENSION Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVF_EXTENSION.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVF_EXTENSION.html new file mode 100644 index 0000000..f9c41b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVF_EXTENSION.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.TVF_EXTENSION Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVX_EXTENSION.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVX_EXTENSION.html new file mode 100644 index 0000000..39f2d21 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.TVX_EXTENSION.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter.TVX_EXTENSION Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.html new file mode 100644 index 0000000..b128155 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriter.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterConstructor.html new file mode 100644 index 0000000..e65e288 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterConstructor.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterFields.html new file mode 100644 index 0000000..72d2609 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterFields.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterMembers.html new file mode 100644 index 0000000..1c65cca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterMembers.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterMethods.html new file mode 100644 index 0000000..bfd66b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.TermVectorsWriterMethods.html @@ -0,0 +1,15 @@ + + + + + TermVectorsWriter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Index.html b/wwwroot/Searcher/1.4/Lucene.Net.Index.html new file mode 100644 index 0000000..069ebfa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Index.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Index + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.IndexHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.IndexHierarchy.html new file mode 100644 index 0000000..54fa516 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.IndexHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.IndexHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.Backup.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.Backup.html new file mode 100644 index 0000000..82f3845 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.Backup.html @@ -0,0 +1,15 @@ + + + + + CharStream.Backup Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.BeginToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.BeginToken.html new file mode 100644 index 0000000..67cc3f2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.BeginToken.html @@ -0,0 +1,15 @@ + + + + + CharStream.BeginToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.Done.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.Done.html new file mode 100644 index 0000000..a28f46d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.Done.html @@ -0,0 +1,15 @@ + + + + + CharStream.Done Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetBeginColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetBeginColumn.html new file mode 100644 index 0000000..4ddf774 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetBeginColumn.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetBeginColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetBeginLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetBeginLine.html new file mode 100644 index 0000000..c9d341f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetBeginLine.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetBeginLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetColumn.html new file mode 100644 index 0000000..eb178dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetColumn.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetEndColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetEndColumn.html new file mode 100644 index 0000000..c879a47 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetEndColumn.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetEndColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetEndLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetEndLine.html new file mode 100644 index 0000000..8bc2d24 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetEndLine.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetEndLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetImage.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetImage.html new file mode 100644 index 0000000..1f1a3c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetImage.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetImage Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetLine.html new file mode 100644 index 0000000..623ec3d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetLine.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetSuffix.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetSuffix.html new file mode 100644 index 0000000..bc6e319 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.GetSuffix.html @@ -0,0 +1,15 @@ + + + + + CharStream.GetSuffix Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.ReadChar.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.ReadChar.html new file mode 100644 index 0000000..f98f63e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.ReadChar.html @@ -0,0 +1,15 @@ + + + + + CharStream.ReadChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.html new file mode 100644 index 0000000..7f26840 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStream.html @@ -0,0 +1,15 @@ + + + + + CharStream Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStreamMembers.html new file mode 100644 index 0000000..dd4486f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStreamMembers.html @@ -0,0 +1,15 @@ + + + + + CharStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStreamMethods.html new file mode 100644 index 0000000..5f4af07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.CharStreamMethods.html @@ -0,0 +1,15 @@ + + + + + CharStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.Backup.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.Backup.html new file mode 100644 index 0000000..eed32aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.Backup.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.Backup Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.BeginToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.BeginToken.html new file mode 100644 index 0000000..cf6c89e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.BeginToken.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.BeginToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.Done.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.Done.html new file mode 100644 index 0000000..ea0bc6c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.Done.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.Done Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetBeginColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetBeginColumn.html new file mode 100644 index 0000000..6678f81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetBeginColumn.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetBeginColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetBeginLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetBeginLine.html new file mode 100644 index 0000000..33d13bc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetBeginLine.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetBeginLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetColumn.html new file mode 100644 index 0000000..1f6c81c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetColumn.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetEndColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetEndColumn.html new file mode 100644 index 0000000..432f10c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetEndColumn.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetEndColumn Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetEndLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetEndLine.html new file mode 100644 index 0000000..507f49e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetEndLine.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetEndLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetImage.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetImage.html new file mode 100644 index 0000000..a5e9d90 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetImage.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetImage Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetLine.html new file mode 100644 index 0000000..81524f8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetLine.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetLine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetSuffix.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetSuffix.html new file mode 100644 index 0000000..797cf07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.GetSuffix.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.GetSuffix Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.ReadChar.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.ReadChar.html new file mode 100644 index 0000000..6d329f6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.ReadChar.html @@ -0,0 +1,15 @@ + + + + + FastCharStream.ReadChar Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.html new file mode 100644 index 0000000..02efbda --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStream.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamConstructor.html new file mode 100644 index 0000000..1b2287c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamConstructor.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamMembers.html new file mode 100644 index 0000000..3ee3476 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamMembers.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamMethods.html new file mode 100644 index 0000000..cde13df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.FastCharStreamMethods.html @@ -0,0 +1,15 @@ + + + + + FastCharStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.NORMAL_FIELD.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.NORMAL_FIELD.html new file mode 100644 index 0000000..9eae40a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.NORMAL_FIELD.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser.NORMAL_FIELD Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.PROHIBITED_FIELD.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.PROHIBITED_FIELD.html new file mode 100644 index 0000000..2175ba4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.PROHIBITED_FIELD.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser.PROHIBITED_FIELD Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overload_2.html new file mode 100644 index 0000000..ecfef81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overload_2.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser.Parse Method (String, String[], Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overload_3.html new file mode 100644 index 0000000..93d39d3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overload_3.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser.Parse Method (String, String[], Int32[], Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overloads.html new file mode 100644 index 0000000..42f68b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.Parse_overloads.html @@ -0,0 +1,15 @@ + + + + + Parse Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.REQUIRED_FIELD.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.REQUIRED_FIELD.html new file mode 100644 index 0000000..afbd30c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.REQUIRED_FIELD.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser.REQUIRED_FIELD Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.html new file mode 100644 index 0000000..50748ae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParser.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor.html new file mode 100644 index 0000000..ad7fe1a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor1.html new file mode 100644 index 0000000..b7bdb2f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor1.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Constructor (QueryParserTokenManager) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor2.html new file mode 100644 index 0000000..956d9c7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor2.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Constructor (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor3.html new file mode 100644 index 0000000..a634823 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserConstructor3.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Constructor (String, Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserFields.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserFields.html new file mode 100644 index 0000000..3c0ac0a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserFields.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserMembers.html new file mode 100644 index 0000000..a292982 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserMembers.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserMethods.html new file mode 100644 index 0000000..116dcce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.MultiFieldQueryParserMethods.html @@ -0,0 +1,15 @@ + + + + + MultiFieldQueryParser Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.Add_escapes.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.Add_escapes.html new file mode 100644 index 0000000..3dbfa5b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.Add_escapes.html @@ -0,0 +1,15 @@ + + + + + ParseException.Add_escapes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.Message.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.Message.html new file mode 100644 index 0000000..0eab4a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.Message.html @@ -0,0 +1,15 @@ + + + + + ParseException.Message Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.currentToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.currentToken.html new file mode 100644 index 0000000..dd1778c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.currentToken.html @@ -0,0 +1,15 @@ + + + + + ParseException.currentToken Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.eol.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.eol.html new file mode 100644 index 0000000..2b52f01 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.eol.html @@ -0,0 +1,15 @@ + + + + + ParseException.eol Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.expectedTokenSequences.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.expectedTokenSequences.html new file mode 100644 index 0000000..09d866d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.expectedTokenSequences.html @@ -0,0 +1,15 @@ + + + + + ParseException.expectedTokenSequences Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.html new file mode 100644 index 0000000..941ac8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.html @@ -0,0 +1,15 @@ + + + + + ParseException Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.specialConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.specialConstructor.html new file mode 100644 index 0000000..8406ddd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.specialConstructor.html @@ -0,0 +1,15 @@ + + + + + ParseException.specialConstructor Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.tokenImage.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.tokenImage.html new file mode 100644 index 0000000..6510fe5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseException.tokenImage.html @@ -0,0 +1,15 @@ + + + + + ParseException.tokenImage Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor.html new file mode 100644 index 0000000..ce1ab61 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor1.html new file mode 100644 index 0000000..4d451e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor1.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor (Token, Int32[][], String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor2.html new file mode 100644 index 0000000..744c35a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor2.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor3.html new file mode 100644 index 0000000..2e5c7ae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionConstructor3.html @@ -0,0 +1,15 @@ + + + + + ParseException Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionFields.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionFields.html new file mode 100644 index 0000000..16e543f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionFields.html @@ -0,0 +1,15 @@ + + + + + ParseException Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionMembers.html new file mode 100644 index 0000000..04ac64d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionMembers.html @@ -0,0 +1,15 @@ + + + + + ParseException Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionMethods.html new file mode 100644 index 0000000..5562e77 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionMethods.html @@ -0,0 +1,15 @@ + + + + + ParseException Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionProperties.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionProperties.html new file mode 100644 index 0000000..211dc6e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.ParseExceptionProperties.html @@ -0,0 +1,15 @@ + + + + + ParseException Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.AddClause.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.AddClause.html new file mode 100644 index 0000000..32bfefe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.AddClause.html @@ -0,0 +1,15 @@ + + + + + QueryParser.AddClause Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Clause.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Clause.html new file mode 100644 index 0000000..2e332e7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Clause.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Clause Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Conjunction.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Conjunction.html new file mode 100644 index 0000000..9c06aaa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Conjunction.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Conjunction Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.DEFAULT_OPERATOR_AND.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.DEFAULT_OPERATOR_AND.html new file mode 100644 index 0000000..9642592 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.DEFAULT_OPERATOR_AND.html @@ -0,0 +1,15 @@ + + + + + QueryParser.DEFAULT_OPERATOR_AND Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.DEFAULT_OPERATOR_OR.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.DEFAULT_OPERATOR_OR.html new file mode 100644 index 0000000..29fdc0a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.DEFAULT_OPERATOR_OR.html @@ -0,0 +1,15 @@ + + + + + QueryParser.DEFAULT_OPERATOR_OR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Disable_tracing.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Disable_tracing.html new file mode 100644 index 0000000..92c6429 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Disable_tracing.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Disable_tracing Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Enable_tracing.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Enable_tracing.html new file mode 100644 index 0000000..905fa70 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Enable_tracing.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Enable_tracing Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Escape.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Escape.html new file mode 100644 index 0000000..658e9be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Escape.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Escape Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GenerateParseException.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GenerateParseException.html new file mode 100644 index 0000000..c9542b0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GenerateParseException.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GenerateParseException Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetAnalyzer.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetAnalyzer.html new file mode 100644 index 0000000..16fbf54 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetAnalyzer.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetAnalyzer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetBooleanQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetBooleanQuery.html new file mode 100644 index 0000000..3e72577 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetBooleanQuery.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetBooleanQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetField.html new file mode 100644 index 0000000..b5dc0b6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetField.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_1.html new file mode 100644 index 0000000..e6ca0b0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_1.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFieldQuery Method (String, String, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_2.html new file mode 100644 index 0000000..26e049a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_2.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFieldQuery Method (String, Analyzer, String, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_3.html new file mode 100644 index 0000000..98a4280 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_3.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFieldQuery Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_4.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_4.html new file mode 100644 index 0000000..a60a4f0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overload_4.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFieldQuery Method (String, Analyzer, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overloads.html new file mode 100644 index 0000000..2f3d331 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFieldQuery_overloads.html @@ -0,0 +1,15 @@ + + + + + GetFieldQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyMinSim.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyMinSim.html new file mode 100644 index 0000000..f650aba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyMinSim.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFuzzyMinSim Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overload_1.html new file mode 100644 index 0000000..7d7f4ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overload_1.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFuzzyQuery Method (String, String, Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overload_2.html new file mode 100644 index 0000000..3f00dcf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overload_2.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetFuzzyQuery Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overloads.html new file mode 100644 index 0000000..ec7e595 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetFuzzyQuery_overloads.html @@ -0,0 +1,15 @@ + + + + + GetFuzzyQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetLocale.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetLocale.html new file mode 100644 index 0000000..b145748 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetLocale.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetLocale Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetLowercaseWildcardTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetLowercaseWildcardTerms.html new file mode 100644 index 0000000..30a8108 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetLowercaseWildcardTerms.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetLowercaseWildcardTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetNextToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetNextToken.html new file mode 100644 index 0000000..4a6b849 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetNextToken.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetNextToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetOperator.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetOperator.html new file mode 100644 index 0000000..017c1ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetOperator.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetOperator Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetPhraseSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetPhraseSlop.html new file mode 100644 index 0000000..836519d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetPhraseSlop.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetPhraseSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetPrefixQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetPrefixQuery.html new file mode 100644 index 0000000..44e470a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetPrefixQuery.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetPrefixQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overload_1.html new file mode 100644 index 0000000..3d344cc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overload_1.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetRangeQuery Method (String, String, String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overload_2.html new file mode 100644 index 0000000..83b1263 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overload_2.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetRangeQuery Method (String, Analyzer, String, String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overloads.html new file mode 100644 index 0000000..2381932 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetRangeQuery_overloads.html @@ -0,0 +1,15 @@ + + + + + GetRangeQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetToken.html new file mode 100644 index 0000000..b78d9e3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetToken.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetWildcardQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetWildcardQuery.html new file mode 100644 index 0000000..5ebb6b4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.GetWildcardQuery.html @@ -0,0 +1,15 @@ + + + + + QueryParser.GetWildcardQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Main.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Main.html new file mode 100644 index 0000000..c7eb414 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Main.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Main Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Modifiers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Modifiers.html new file mode 100644 index 0000000..a5ab18b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Modifiers.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Modifiers Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overload_1.html new file mode 100644 index 0000000..838bb87 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overload_1.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Parse Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overload_2.html new file mode 100644 index 0000000..3ae953b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overload_2.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Parse Method (String, String, Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overloads.html new file mode 100644 index 0000000..42f68b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Parse_overloads.html @@ -0,0 +1,15 @@ + + + + + Parse Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Query.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Query.html new file mode 100644 index 0000000..cef85f0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Query.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Query Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overload_1.html new file mode 100644 index 0000000..396fe86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overload_1.html @@ -0,0 +1,15 @@ + + + + + QueryParser.ReInit Method (QueryParserTokenManager) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overload_2.html new file mode 100644 index 0000000..30913a9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overload_2.html @@ -0,0 +1,15 @@ + + + + + QueryParser.ReInit Method (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overloads.html new file mode 100644 index 0000000..080d78d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.ReInit_overloads.html @@ -0,0 +1,15 @@ + + + + + ReInit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetFuzzyMinSim.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetFuzzyMinSim.html new file mode 100644 index 0000000..5c450c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetFuzzyMinSim.html @@ -0,0 +1,15 @@ + + + + + QueryParser.SetFuzzyMinSim Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetLocale.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetLocale.html new file mode 100644 index 0000000..6f52e7b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetLocale.html @@ -0,0 +1,15 @@ + + + + + QueryParser.SetLocale Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetLowercaseWildcardTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetLowercaseWildcardTerms.html new file mode 100644 index 0000000..ae9d3f6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetLowercaseWildcardTerms.html @@ -0,0 +1,15 @@ + + + + + QueryParser.SetLowercaseWildcardTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetOperator.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetOperator.html new file mode 100644 index 0000000..4b1b906 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetOperator.html @@ -0,0 +1,15 @@ + + + + + QueryParser.SetOperator Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetPhraseSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetPhraseSlop.html new file mode 100644 index 0000000..5a83357 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.SetPhraseSlop.html @@ -0,0 +1,15 @@ + + + + + QueryParser.SetPhraseSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Term.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Term.html new file mode 100644 index 0000000..4d0d101 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.Term.html @@ -0,0 +1,15 @@ + + + + + QueryParser.Term Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.html new file mode 100644 index 0000000..98f0cf3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.html @@ -0,0 +1,15 @@ + + + + + QueryParser Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.jj_nt.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.jj_nt.html new file mode 100644 index 0000000..107320d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.jj_nt.html @@ -0,0 +1,15 @@ + + + + + QueryParser.jj_nt Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.lookingAhead.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.lookingAhead.html new file mode 100644 index 0000000..de2d31b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.lookingAhead.html @@ -0,0 +1,15 @@ + + + + + QueryParser.lookingAhead Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.token.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.token.html new file mode 100644 index 0000000..9330d9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.token.html @@ -0,0 +1,15 @@ + + + + + QueryParser.token Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.token_source.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.token_source.html new file mode 100644 index 0000000..ce04745 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParser.token_source.html @@ -0,0 +1,15 @@ + + + + + QueryParser.token_source Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.AND.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.AND.html new file mode 100644 index 0000000..5e7a4b0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.AND.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.AND Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.Boost.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.Boost.html new file mode 100644 index 0000000..4b64550 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.Boost.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.Boost Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.CARAT.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.CARAT.html new file mode 100644 index 0000000..8484213 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.CARAT.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.CARAT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.COLON.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.COLON.html new file mode 100644 index 0000000..04897e5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.COLON.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.COLON Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.DEFAULT.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.DEFAULT.html new file mode 100644 index 0000000..5eb139c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.DEFAULT.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.DEFAULT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.EOF.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.EOF.html new file mode 100644 index 0000000..735355f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.EOF.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.EOF Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.FUZZY_SLOP.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.FUZZY_SLOP.html new file mode 100644 index 0000000..7ed68e8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.FUZZY_SLOP.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.FUZZY_SLOP Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.LPAREN.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.LPAREN.html new file mode 100644 index 0000000..62ed754 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.LPAREN.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.LPAREN Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.MINUS.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.MINUS.html new file mode 100644 index 0000000..716f64d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.MINUS.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.MINUS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.NOT.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.NOT.html new file mode 100644 index 0000000..deca271 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.NOT.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.NOT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.NUMBER.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.NUMBER.html new file mode 100644 index 0000000..42b0efb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.NUMBER.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.NUMBER Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.OR.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.OR.html new file mode 100644 index 0000000..d2add63 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.OR.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.OR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.PLUS.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.PLUS.html new file mode 100644 index 0000000..c4f76fe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.PLUS.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.PLUS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.PREFIXTERM.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.PREFIXTERM.html new file mode 100644 index 0000000..8230cfe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.PREFIXTERM.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.PREFIXTERM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.QUOTED.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.QUOTED.html new file mode 100644 index 0000000..660381b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.QUOTED.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.QUOTED Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_END.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_END.html new file mode 100644 index 0000000..17faac2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_END.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEEX_END Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_GOOP.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_GOOP.html new file mode 100644 index 0000000..0ff6de7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_GOOP.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEEX_GOOP Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_QUOTED.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_QUOTED.html new file mode 100644 index 0000000..8b0768f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_QUOTED.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEEX_QUOTED Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_START.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_START.html new file mode 100644 index 0000000..cc4317e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_START.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEEX_START Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_TO.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_TO.html new file mode 100644 index 0000000..f76510f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEEX_TO.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEEX_TO Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_END.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_END.html new file mode 100644 index 0000000..d03180f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_END.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEIN_END Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_GOOP.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_GOOP.html new file mode 100644 index 0000000..46a09eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_GOOP.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEIN_GOOP Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_QUOTED.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_QUOTED.html new file mode 100644 index 0000000..6509b2d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_QUOTED.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEIN_QUOTED Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_START.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_START.html new file mode 100644 index 0000000..543c2cc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_START.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEIN_START Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_TO.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_TO.html new file mode 100644 index 0000000..175180d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RANGEIN_TO.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RANGEIN_TO Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RPAREN.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RPAREN.html new file mode 100644 index 0000000..ff7364e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RPAREN.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RPAREN Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RangeEx.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RangeEx.html new file mode 100644 index 0000000..db1b893 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RangeEx.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RangeEx Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RangeIn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RangeIn.html new file mode 100644 index 0000000..48df0c1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.RangeIn.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.RangeIn Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.TERM.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.TERM.html new file mode 100644 index 0000000..bb60fa4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.TERM.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.TERM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.WILDTERM.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.WILDTERM.html new file mode 100644 index 0000000..f5c66b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.WILDTERM.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.WILDTERM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._ESCAPED_CHAR.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._ESCAPED_CHAR.html new file mode 100644 index 0000000..d77aec2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._ESCAPED_CHAR.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants._ESCAPED_CHAR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._NUM_CHAR.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._NUM_CHAR.html new file mode 100644 index 0000000..29aa062 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._NUM_CHAR.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants._NUM_CHAR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._TERM_CHAR.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._TERM_CHAR.html new file mode 100644 index 0000000..e6713b0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._TERM_CHAR.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants._TERM_CHAR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._TERM_START_CHAR.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._TERM_START_CHAR.html new file mode 100644 index 0000000..e2485eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._TERM_START_CHAR.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants._TERM_START_CHAR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._WHITESPACE.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._WHITESPACE.html new file mode 100644 index 0000000..b3aa430 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants._WHITESPACE.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants._WHITESPACE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.html new file mode 100644 index 0000000..6e8fdfe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.tokenImage.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.tokenImage.html new file mode 100644 index 0000000..4bbb8df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstants.tokenImage.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants.tokenImage Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsConstructor.html new file mode 100644 index 0000000..ace93c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsConstructor.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsFields.html new file mode 100644 index 0000000..79a469c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsFields.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsMembers.html new file mode 100644 index 0000000..6a8e74c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstantsMembers.html @@ -0,0 +1,15 @@ + + + + + QueryParserConstants Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor.html new file mode 100644 index 0000000..508368b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor.html @@ -0,0 +1,15 @@ + + + + + QueryParser Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor1.html new file mode 100644 index 0000000..7706473 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor1.html @@ -0,0 +1,15 @@ + + + + + QueryParser Constructor (String, Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor2.html new file mode 100644 index 0000000..6236676 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor2.html @@ -0,0 +1,15 @@ + + + + + QueryParser Constructor (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor3.html new file mode 100644 index 0000000..28ead16 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserConstructor3.html @@ -0,0 +1,15 @@ + + + + + QueryParser Constructor (QueryParserTokenManager) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserFields.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserFields.html new file mode 100644 index 0000000..cb1117b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserFields.html @@ -0,0 +1,15 @@ + + + + + QueryParser Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserMembers.html new file mode 100644 index 0000000..cc61839 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserMembers.html @@ -0,0 +1,15 @@ + + + + + QueryParser Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserMethods.html new file mode 100644 index 0000000..f839a34 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserMethods.html @@ -0,0 +1,15 @@ + + + + + QueryParser Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.GetNextToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.GetNextToken.html new file mode 100644 index 0000000..e14c531 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.GetNextToken.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.GetNextToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.JjFillToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.JjFillToken.html new file mode 100644 index 0000000..3bbe87e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.JjFillToken.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.JjFillToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overload_1.html new file mode 100644 index 0000000..1e32a71 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overload_1.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.ReInit Method (CharStream, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overload_2.html new file mode 100644 index 0000000..87dfa14 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overload_2.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.ReInit Method (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overloads.html new file mode 100644 index 0000000..080d78d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.ReInit_overloads.html @@ -0,0 +1,15 @@ + + + + + ReInit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.SetDebugStream.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.SetDebugStream.html new file mode 100644 index 0000000..7d79025 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.SetDebugStream.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.SetDebugStream Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.SwitchTo.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.SwitchTo.html new file mode 100644 index 0000000..6994071 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.SwitchTo.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.SwitchTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.curChar.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.curChar.html new file mode 100644 index 0000000..3b8bbac --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.curChar.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.curChar Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.debugStream.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.debugStream.html new file mode 100644 index 0000000..ced3890 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.debugStream.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.debugStream Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.html new file mode 100644 index 0000000..228b407 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.input_stream.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.input_stream.html new file mode 100644 index 0000000..05be9c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.input_stream.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.input_stream Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.jjnewLexState.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.jjnewLexState.html new file mode 100644 index 0000000..87cf212 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.jjnewLexState.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.jjnewLexState Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.jjstrLiteralImages.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.jjstrLiteralImages.html new file mode 100644 index 0000000..0b0c07c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.jjstrLiteralImages.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.jjstrLiteralImages Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.lexStateNames.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.lexStateNames.html new file mode 100644 index 0000000..4ebf087 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManager.lexStateNames.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager.lexStateNames Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor.html new file mode 100644 index 0000000..8f5a4f0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor1.html new file mode 100644 index 0000000..618abae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor1.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Constructor (CharStream) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor2.html new file mode 100644 index 0000000..f4b6ee0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerConstructor2.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Constructor (CharStream, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerFields.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerFields.html new file mode 100644 index 0000000..62e29b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerFields.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerMembers.html new file mode 100644 index 0000000..0ed139e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerMembers.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerMethods.html new file mode 100644 index 0000000..673bdcf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.QueryParserTokenManagerMethods.html @@ -0,0 +1,15 @@ + + + + + QueryParserTokenManager Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.NewToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.NewToken.html new file mode 100644 index 0000000..5d46558 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.NewToken.html @@ -0,0 +1,15 @@ + + + + + Token.NewToken Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.ToString.html new file mode 100644 index 0000000..b456454 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.ToString.html @@ -0,0 +1,15 @@ + + + + + Token.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.beginColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.beginColumn.html new file mode 100644 index 0000000..d6c4ffd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.beginColumn.html @@ -0,0 +1,15 @@ + + + + + Token.beginColumn Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.beginLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.beginLine.html new file mode 100644 index 0000000..c5a2d60 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.beginLine.html @@ -0,0 +1,15 @@ + + + + + Token.beginLine Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.endColumn.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.endColumn.html new file mode 100644 index 0000000..556bf3f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.endColumn.html @@ -0,0 +1,15 @@ + + + + + Token.endColumn Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.endLine.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.endLine.html new file mode 100644 index 0000000..59a726a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.endLine.html @@ -0,0 +1,15 @@ + + + + + Token.endLine Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.html new file mode 100644 index 0000000..d354541 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.html @@ -0,0 +1,15 @@ + + + + + Token Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.image.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.image.html new file mode 100644 index 0000000..acf6306 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.image.html @@ -0,0 +1,15 @@ + + + + + Token.image Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.kind.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.kind.html new file mode 100644 index 0000000..dca7ba9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.kind.html @@ -0,0 +1,15 @@ + + + + + Token.kind Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.next.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.next.html new file mode 100644 index 0000000..24f67b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.next.html @@ -0,0 +1,15 @@ + + + + + Token.next Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.specialToken.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.specialToken.html new file mode 100644 index 0000000..711a77a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.Token.specialToken.html @@ -0,0 +1,15 @@ + + + + + Token.specialToken Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenConstructor.html new file mode 100644 index 0000000..e336a27 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenConstructor.html @@ -0,0 +1,15 @@ + + + + + Token Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenFields.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenFields.html new file mode 100644 index 0000000..5519347 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenFields.html @@ -0,0 +1,15 @@ + + + + + Token Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMembers.html new file mode 100644 index 0000000..54bfdbf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMembers.html @@ -0,0 +1,15 @@ + + + + + Token Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMethods.html new file mode 100644 index 0000000..8f1b8d8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMethods.html @@ -0,0 +1,15 @@ + + + + + Token Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.LexicalError.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.LexicalError.html new file mode 100644 index 0000000..5d44b91 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.LexicalError.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError.LexicalError Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.Message.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.Message.html new file mode 100644 index 0000000..b21723f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.Message.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError.Message Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.addEscapes.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.addEscapes.html new file mode 100644 index 0000000..fa15df6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.addEscapes.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError.addEscapes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.html new file mode 100644 index 0000000..d19f082 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrError.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor.html new file mode 100644 index 0000000..23fc64d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor1.html new file mode 100644 index 0000000..4ce1e5e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor1.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor2.html new file mode 100644 index 0000000..3a261dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor2.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor (String, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor3.html new file mode 100644 index 0000000..43a4b76 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorConstructor3.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Constructor (Boolean, Int32, Int32, Int32, String, Char, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorMembers.html new file mode 100644 index 0000000..5c68c94 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorMembers.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorMethods.html new file mode 100644 index 0000000..4c0a2b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorMethods.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorProperties.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorProperties.html new file mode 100644 index 0000000..a253adb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.TokenMgrErrorProperties.html @@ -0,0 +1,15 @@ + + + + + TokenMgrError Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.html new file mode 100644 index 0000000..0b14d5b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsers.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.QueryParsers + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.QueryParsersHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsersHierarchy.html new file mode 100644 index 0000000..c99e3a9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.QueryParsersHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.QueryParsersHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.Compare.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.Compare.html new file mode 100644 index 0000000..e461d78 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.Compare.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator.Compare Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.SortType.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.SortType.html new file mode 100644 index 0000000..b269c57 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.SortType.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator.SortType Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.SortValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.SortValue.html new file mode 100644 index 0000000..e170dea --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.SortValue.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator.SortValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.html new file mode 100644 index 0000000..1aa402c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.Compare.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.Compare.html new file mode 100644 index 0000000..303bffd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.Compare.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1.Compare Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.SortType.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.SortType.html new file mode 100644 index 0000000..6292f6a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.SortType.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1.SortType Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.SortValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.SortValue.html new file mode 100644 index 0000000..9890ccb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.SortValue.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1.SortValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.html new file mode 100644 index 0000000..8bf6ef8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1 Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Constructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Constructor.html new file mode 100644 index 0000000..513770c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Constructor.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1 Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Members.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Members.html new file mode 100644 index 0000000..e376ba7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Members.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1 Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Methods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Methods.html new file mode 100644 index 0000000..f0bef62 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparator1Methods.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator1 Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorConstructor.html new file mode 100644 index 0000000..2e7c94f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorConstructor.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorMembers.html new file mode 100644 index 0000000..611d251 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorMembers.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorMethods.html new file mode 100644 index 0000000..5284285 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.AnonymousClassScoreDocComparatorMethods.html @@ -0,0 +1,15 @@ + + + + + AnonymousClassScoreDocComparator Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.Equals.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.Equals.html new file mode 100644 index 0000000..0134b9f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.Equals.html @@ -0,0 +1,15 @@ + + + + + BooleanClause.Equals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.GetHashCode.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.GetHashCode.html new file mode 100644 index 0000000..1d38874 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.GetHashCode.html @@ -0,0 +1,15 @@ + + + + + BooleanClause.GetHashCode Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.html new file mode 100644 index 0000000..b7b5230 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.html @@ -0,0 +1,15 @@ + + + + + BooleanClause Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.prohibited.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.prohibited.html new file mode 100644 index 0000000..ad89aa2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.prohibited.html @@ -0,0 +1,15 @@ + + + + + BooleanClause.prohibited Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.query.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.query.html new file mode 100644 index 0000000..fa67227 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.query.html @@ -0,0 +1,15 @@ + + + + + BooleanClause.query Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.required.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.required.html new file mode 100644 index 0000000..e2f7271 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClause.required.html @@ -0,0 +1,15 @@ + + + + + BooleanClause.required Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseConstructor.html new file mode 100644 index 0000000..11aec51 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseConstructor.html @@ -0,0 +1,15 @@ + + + + + BooleanClause Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseFields.html new file mode 100644 index 0000000..3f707a9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseFields.html @@ -0,0 +1,15 @@ + + + + + BooleanClause Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseMembers.html new file mode 100644 index 0000000..58ff4f2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseMembers.html @@ -0,0 +1,15 @@ + + + + + BooleanClause Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseMethods.html new file mode 100644 index 0000000..3fa2d2b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanClauseMethods.html @@ -0,0 +1,15 @@ + + + + + BooleanClause Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overload_1.html new file mode 100644 index 0000000..b04d643 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overload_1.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.Add Method (BooleanClause) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overload_2.html new file mode 100644 index 0000000..81b8a1d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overload_2.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.Add Method (Query, Boolean, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overloads.html new file mode 100644 index 0000000..6ba4fdc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Add_overloads.html @@ -0,0 +1,15 @@ + + + + + Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Clone.html new file mode 100644 index 0000000..b28eb08 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Clone.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.CreateWeight.html new file mode 100644 index 0000000..5e303b7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Equals.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Equals.html new file mode 100644 index 0000000..a4cf494 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Equals.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.Equals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetClauses.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetClauses.html new file mode 100644 index 0000000..6578ec6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetClauses.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.GetClauses Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetHashCode.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetHashCode.html new file mode 100644 index 0000000..5179dc2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetHashCode.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.GetHashCode Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetMaxClauseCount.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetMaxClauseCount.html new file mode 100644 index 0000000..e32990d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.GetMaxClauseCount.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.GetMaxClauseCount Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Rewrite.html new file mode 100644 index 0000000..7cc1f31 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.Rewrite.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.SetMaxClauseCount.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.SetMaxClauseCount.html new file mode 100644 index 0000000..f986303 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.SetMaxClauseCount.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.SetMaxClauseCount Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.ToString_overload_1.html new file mode 100644 index 0000000..bc80df8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClauses.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClauses.html new file mode 100644 index 0000000..fb9b88a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClauses.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.TooManyClauses Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClausesConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClausesConstructor.html new file mode 100644 index 0000000..55f7b53 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClausesConstructor.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.TooManyClauses Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClausesMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClausesMembers.html new file mode 100644 index 0000000..e0715f0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.TooManyClausesMembers.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.TooManyClauses Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.html new file mode 100644 index 0000000..3c73c80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.maxClauseCount.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.maxClauseCount.html new file mode 100644 index 0000000..3f935be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQuery.maxClauseCount.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery.maxClauseCount Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryConstructor.html new file mode 100644 index 0000000..39495c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryFields.html new file mode 100644 index 0000000..0a1cc9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryFields.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryMembers.html new file mode 100644 index 0000000..728d4df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryMembers.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryMethods.html new file mode 100644 index 0000000..3231178 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.BooleanQueryMethods.html @@ -0,0 +1,15 @@ + + + + + BooleanQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.Bits.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.Bits.html new file mode 100644 index 0000000..bf595b1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.Bits.html @@ -0,0 +1,15 @@ + + + + + CachingWrapperFilter.Bits Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.ToString.html new file mode 100644 index 0000000..e2addd2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.ToString.html @@ -0,0 +1,15 @@ + + + + + CachingWrapperFilter.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.html new file mode 100644 index 0000000..4676052 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilter.html @@ -0,0 +1,15 @@ + + + + + CachingWrapperFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterConstructor.html new file mode 100644 index 0000000..4f1d911 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + CachingWrapperFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterMembers.html new file mode 100644 index 0000000..05ebe12 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterMembers.html @@ -0,0 +1,15 @@ + + + + + CachingWrapperFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterMethods.html new file mode 100644 index 0000000..9cfaa02 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.CachingWrapperFilterMethods.html @@ -0,0 +1,15 @@ + + + + + CachingWrapperFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overload_1.html new file mode 100644 index 0000000..2351a7e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overload_1.html @@ -0,0 +1,15 @@ + + + + + DateFilter.After Method (String, DateTime) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overload_2.html new file mode 100644 index 0000000..82e90e5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overload_2.html @@ -0,0 +1,15 @@ + + + + + DateFilter.After Method (String, Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overloads.html new file mode 100644 index 0000000..5f33689 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.After_overloads.html @@ -0,0 +1,15 @@ + + + + + After Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overload_1.html new file mode 100644 index 0000000..9253159 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overload_1.html @@ -0,0 +1,15 @@ + + + + + DateFilter.Before Method (String, DateTime) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overload_2.html new file mode 100644 index 0000000..9c45be8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overload_2.html @@ -0,0 +1,15 @@ + + + + + DateFilter.Before Method (String, Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overloads.html new file mode 100644 index 0000000..48a2e78 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Before_overloads.html @@ -0,0 +1,15 @@ + + + + + Before Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Bits.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Bits.html new file mode 100644 index 0000000..f5ab480 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.Bits.html @@ -0,0 +1,15 @@ + + + + + DateFilter.Bits Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.ToString.html new file mode 100644 index 0000000..87a06c9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.ToString.html @@ -0,0 +1,15 @@ + + + + + DateFilter.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.html new file mode 100644 index 0000000..c7d1e0b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilter.html @@ -0,0 +1,15 @@ + + + + + DateFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor.html new file mode 100644 index 0000000..9f44633 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + DateFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor1.html new file mode 100644 index 0000000..2385b69 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor1.html @@ -0,0 +1,15 @@ + + + + + DateFilter Constructor (String, DateTime, DateTime) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor2.html new file mode 100644 index 0000000..a2dd478 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterConstructor2.html @@ -0,0 +1,15 @@ + + + + + DateFilter Constructor (String, Int64, Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterMembers.html new file mode 100644 index 0000000..c4d70e2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterMembers.html @@ -0,0 +1,15 @@ + + + + + DateFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterMethods.html new file mode 100644 index 0000000..28d3b23 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DateFilterMethods.html @@ -0,0 +1,15 @@ + + + + + DateFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Coord.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Coord.html new file mode 100644 index 0000000..3d439f0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Coord.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity.Coord Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Idf_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Idf_overload_1.html new file mode 100644 index 0000000..f44a1f2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Idf_overload_1.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity.Idf Method (Int32, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Idf_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Idf_overloads.html new file mode 100644 index 0000000..559f6ce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Idf_overloads.html @@ -0,0 +1,15 @@ + + + + + Idf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.LengthNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.LengthNorm.html new file mode 100644 index 0000000..42e1876 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.LengthNorm.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity.LengthNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.QueryNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.QueryNorm.html new file mode 100644 index 0000000..0df5f37 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.QueryNorm.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity.QueryNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.SloppyFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.SloppyFreq.html new file mode 100644 index 0000000..6d05877 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.SloppyFreq.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity.SloppyFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Tf_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Tf_overload_1.html new file mode 100644 index 0000000..dfe4306 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Tf_overload_1.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity.Tf Method (Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Tf_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Tf_overloads.html new file mode 100644 index 0000000..8c0d87a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.Tf_overloads.html @@ -0,0 +1,15 @@ + + + + + Tf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.html new file mode 100644 index 0000000..82dce15 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarity.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityConstructor.html new file mode 100644 index 0000000..23eb70b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityConstructor.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityMembers.html new file mode 100644 index 0000000..94f4fa9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityMembers.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityMethods.html new file mode 100644 index 0000000..7889bb5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.DefaultSimilarityMethods.html @@ -0,0 +1,15 @@ + + + + + DefaultSimilarity Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.AddDetail.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.AddDetail.html new file mode 100644 index 0000000..7797365 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.AddDetail.html @@ -0,0 +1,15 @@ + + + + + Explanation.AddDetail Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetDescription.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetDescription.html new file mode 100644 index 0000000..43d1488 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetDescription.html @@ -0,0 +1,15 @@ + + + + + Explanation.GetDescription Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetDetails.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetDetails.html new file mode 100644 index 0000000..3973070 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetDetails.html @@ -0,0 +1,15 @@ + + + + + Explanation.GetDetails Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetValue.html new file mode 100644 index 0000000..22fb5fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.GetValue.html @@ -0,0 +1,15 @@ + + + + + Explanation.GetValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.SetDescription.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.SetDescription.html new file mode 100644 index 0000000..b6f740b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.SetDescription.html @@ -0,0 +1,15 @@ + + + + + Explanation.SetDescription Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.SetValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.SetValue.html new file mode 100644 index 0000000..ae8b65c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.SetValue.html @@ -0,0 +1,15 @@ + + + + + Explanation.SetValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.ToHtml.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.ToHtml.html new file mode 100644 index 0000000..6fd3e11 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.ToHtml.html @@ -0,0 +1,15 @@ + + + + + Explanation.ToHtml Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.ToString.html new file mode 100644 index 0000000..c4209fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.ToString.html @@ -0,0 +1,15 @@ + + + + + Explanation.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.html new file mode 100644 index 0000000..253b126 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Explanation.html @@ -0,0 +1,15 @@ + + + + + Explanation Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor.html new file mode 100644 index 0000000..211848c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor.html @@ -0,0 +1,15 @@ + + + + + Explanation Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor1.html new file mode 100644 index 0000000..6b75111 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor1.html @@ -0,0 +1,15 @@ + + + + + Explanation Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor2.html new file mode 100644 index 0000000..cf99fd3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationConstructor2.html @@ -0,0 +1,15 @@ + + + + + Explanation Constructor (Single, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationMembers.html new file mode 100644 index 0000000..6ba4162 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationMembers.html @@ -0,0 +1,15 @@ + + + + + Explanation Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationMethods.html new file mode 100644 index 0000000..ada5d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ExplanationMethods.html @@ -0,0 +1,15 @@ + + + + + Explanation Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetAuto.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetAuto.html new file mode 100644 index 0000000..7f4b78e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetAuto.html @@ -0,0 +1,15 @@ + + + + + FieldCache.GetAuto Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetCustom.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetCustom.html new file mode 100644 index 0000000..e07d238 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetCustom.html @@ -0,0 +1,15 @@ + + + + + FieldCache.GetCustom Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetFloats.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetFloats.html new file mode 100644 index 0000000..d01c04a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetFloats.html @@ -0,0 +1,15 @@ + + + + + FieldCache.GetFloats Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetInts.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetInts.html new file mode 100644 index 0000000..ccf0236 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetInts.html @@ -0,0 +1,15 @@ + + + + + FieldCache.GetInts Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetStringIndex.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetStringIndex.html new file mode 100644 index 0000000..037f6ac --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetStringIndex.html @@ -0,0 +1,15 @@ + + + + + FieldCache.GetStringIndex Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetStrings.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetStrings.html new file mode 100644 index 0000000..0ae9e62 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.GetStrings.html @@ -0,0 +1,15 @@ + + + + + FieldCache.GetStrings Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.html new file mode 100644 index 0000000..f66c662 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache.html @@ -0,0 +1,15 @@ + + + + + FieldCache Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCacheMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCacheMembers.html new file mode 100644 index 0000000..9492b7c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCacheMembers.html @@ -0,0 +1,15 @@ + + + + + FieldCache Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCacheMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCacheMethods.html new file mode 100644 index 0000000..c4d395f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCacheMethods.html @@ -0,0 +1,15 @@ + + + + + FieldCache Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.DEFAULT.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.DEFAULT.html new file mode 100644 index 0000000..c26997f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.DEFAULT.html @@ -0,0 +1,15 @@ + + + + + FieldCache_Fields.DEFAULT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.STRING_INDEX.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.STRING_INDEX.html new file mode 100644 index 0000000..189186e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.STRING_INDEX.html @@ -0,0 +1,15 @@ + + + + + FieldCache_Fields.STRING_INDEX Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.html new file mode 100644 index 0000000..fa40e30 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_Fields.html @@ -0,0 +1,15 @@ + + + + + FieldCache_Fields Structure + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_FieldsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_FieldsFields.html new file mode 100644 index 0000000..66b30a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_FieldsFields.html @@ -0,0 +1,15 @@ + + + + + FieldCache_Fields Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_FieldsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_FieldsMembers.html new file mode 100644 index 0000000..772ca39 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldCache_FieldsMembers.html @@ -0,0 +1,15 @@ + + + + + FieldCache_Fields Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDoc.fields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDoc.fields.html new file mode 100644 index 0000000..9ea85d9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDoc.fields.html @@ -0,0 +1,15 @@ + + + + + FieldDoc.fields Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDoc.html new file mode 100644 index 0000000..b4c2d11 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDoc.html @@ -0,0 +1,15 @@ + + + + + FieldDoc Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor.html new file mode 100644 index 0000000..52726ef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor.html @@ -0,0 +1,15 @@ + + + + + FieldDoc Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor1.html new file mode 100644 index 0000000..f2c506d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor1.html @@ -0,0 +1,15 @@ + + + + + FieldDoc Constructor (Int32, Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor2.html new file mode 100644 index 0000000..39c0f33 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocConstructor2.html @@ -0,0 +1,15 @@ + + + + + FieldDoc Constructor (Int32, Single, IComparable[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocFields.html new file mode 100644 index 0000000..e90f90f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocFields.html @@ -0,0 +1,15 @@ + + + + + FieldDoc Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocMembers.html new file mode 100644 index 0000000..50b1c98 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FieldDocMembers.html @@ -0,0 +1,15 @@ + + + + + FieldDoc Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Filter.Bits.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Filter.Bits.html new file mode 100644 index 0000000..bd4f3f9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Filter.Bits.html @@ -0,0 +1,15 @@ + + + + + Filter.Bits Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Filter.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Filter.html new file mode 100644 index 0000000..d855e8f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Filter.html @@ -0,0 +1,15 @@ + + + + + Filter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterConstructor.html new file mode 100644 index 0000000..0bb20b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterConstructor.html @@ -0,0 +1,15 @@ + + + + + Filter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterMembers.html new file mode 100644 index 0000000..31d19ed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterMembers.html @@ -0,0 +1,15 @@ + + + + + Filter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterMethods.html new file mode 100644 index 0000000..ea3474c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilterMethods.html @@ -0,0 +1,15 @@ + + + + + Filter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.CreateWeight.html new file mode 100644 index 0000000..cfa5360 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.Equals.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.Equals.html new file mode 100644 index 0000000..619638b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.Equals.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery.Equals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.GetHashCode.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.GetHashCode.html new file mode 100644 index 0000000..fff3bbc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.GetHashCode.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery.GetHashCode Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.GetQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.GetQuery.html new file mode 100644 index 0000000..1eaf4c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.GetQuery.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery.GetQuery Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.Rewrite.html new file mode 100644 index 0000000..feb3abc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.Rewrite.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.ToString_overload_1.html new file mode 100644 index 0000000..6e3a853 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.html new file mode 100644 index 0000000..f13767c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQuery.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryConstructor.html new file mode 100644 index 0000000..641b338 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryMembers.html new file mode 100644 index 0000000..fffa05a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryMembers.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryMethods.html new file mode 100644 index 0000000..29498ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredQueryMethods.html @@ -0,0 +1,15 @@ + + + + + FilteredQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Close.html new file mode 100644 index 0000000..07124b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Close.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Difference.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Difference.html new file mode 100644 index 0000000..08b64fa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Difference.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.Difference Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.DocFreq.html new file mode 100644 index 0000000..fa871e7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.DocFreq.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.EndEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.EndEnum.html new file mode 100644 index 0000000..77e7f95 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.EndEnum.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.EndEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Next.html new file mode 100644 index 0000000..983b8e4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Next.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.SetEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.SetEnum.html new file mode 100644 index 0000000..9f5e510 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.SetEnum.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.SetEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Term.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Term.html new file mode 100644 index 0000000..b25a5dd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.Term.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.Term Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.TermCompare.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.TermCompare.html new file mode 100644 index 0000000..7d7ff16 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.TermCompare.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum.TermCompare Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.html new file mode 100644 index 0000000..ffa98b6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnum.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumConstructor.html new file mode 100644 index 0000000..173e7d4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumConstructor.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumMembers.html new file mode 100644 index 0000000..717a95e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumMembers.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumMethods.html new file mode 100644 index 0000000..9425ee7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FilteredTermEnumMethods.html @@ -0,0 +1,15 @@ + + + + + FilteredTermEnum Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetEnum.html new file mode 100644 index 0000000..674f000 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetEnum.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery.GetEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetMinSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetMinSimilarity.html new file mode 100644 index 0000000..3d0fbaf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetMinSimilarity.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery.GetMinSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetPrefixLength.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetPrefixLength.html new file mode 100644 index 0000000..42bfe9f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.GetPrefixLength.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery.GetPrefixLength Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.ToString_overload_1.html new file mode 100644 index 0000000..26c9007 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.defaultMinSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.defaultMinSimilarity.html new file mode 100644 index 0000000..8043d9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.defaultMinSimilarity.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery.defaultMinSimilarity Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.html new file mode 100644 index 0000000..4b99686 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQuery.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor.html new file mode 100644 index 0000000..d9c6743 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor1.html new file mode 100644 index 0000000..1ec0d59 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor1.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Constructor (Term, Single, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor2.html new file mode 100644 index 0000000..eb07a93 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor2.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Constructor (Term, Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor3.html new file mode 100644 index 0000000..1139eaf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryConstructor3.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Constructor (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryFields.html new file mode 100644 index 0000000..66a2d72 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryFields.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryMembers.html new file mode 100644 index 0000000..d1bd516 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryMembers.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryMethods.html new file mode 100644 index 0000000..9b98503 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyQueryMethods.html @@ -0,0 +1,15 @@ + + + + + FuzzyQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.Close.html new file mode 100644 index 0000000..7453e1b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.Close.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.Difference.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.Difference.html new file mode 100644 index 0000000..993d53c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.Difference.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum.Difference Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.EndEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.EndEnum.html new file mode 100644 index 0000000..d84f7c6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.EndEnum.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum.EndEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.TermCompare.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.TermCompare.html new file mode 100644 index 0000000..a6491aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.TermCompare.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum.TermCompare Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.html new file mode 100644 index 0000000..71b6f17 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnum.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor.html new file mode 100644 index 0000000..93c5b6b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor1.html new file mode 100644 index 0000000..80101de --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor1.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Constructor (IndexReader, Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor2.html new file mode 100644 index 0000000..7d7500d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor2.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Constructor (IndexReader, Term, Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor3.html new file mode 100644 index 0000000..317542c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumConstructor3.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Constructor (IndexReader, Term, Single, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumMembers.html new file mode 100644 index 0000000..f3ea211 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumMembers.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumMethods.html new file mode 100644 index 0000000..20724a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.FuzzyTermEnumMethods.html @@ -0,0 +1,15 @@ + + + + + FuzzyTermEnum Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollector.Collect.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollector.Collect.html new file mode 100644 index 0000000..91aa75c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollector.Collect.html @@ -0,0 +1,15 @@ + + + + + HitCollector.Collect Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollector.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollector.html new file mode 100644 index 0000000..3912cff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollector.html @@ -0,0 +1,15 @@ + + + + + HitCollector Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorConstructor.html new file mode 100644 index 0000000..2b7a9e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorConstructor.html @@ -0,0 +1,15 @@ + + + + + HitCollector Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorMembers.html new file mode 100644 index 0000000..5fddf83 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorMembers.html @@ -0,0 +1,15 @@ + + + + + HitCollector Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorMethods.html new file mode 100644 index 0000000..c257ea9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitCollectorMethods.html @@ -0,0 +1,15 @@ + + + + + HitCollector Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Doc.html new file mode 100644 index 0000000..e033088 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Doc.html @@ -0,0 +1,15 @@ + + + + + Hits.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Id.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Id.html new file mode 100644 index 0000000..3c3ca3b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Id.html @@ -0,0 +1,15 @@ + + + + + Hits.Id Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Length.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Length.html new file mode 100644 index 0000000..776764b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Length.html @@ -0,0 +1,15 @@ + + + + + Hits.Length Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Score.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Score.html new file mode 100644 index 0000000..770f4df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.Score.html @@ -0,0 +1,15 @@ + + + + + Hits.Score Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.html new file mode 100644 index 0000000..b700799 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Hits.html @@ -0,0 +1,15 @@ + + + + + Hits Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitsMembers.html new file mode 100644 index 0000000..97711a3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitsMembers.html @@ -0,0 +1,15 @@ + + + + + Hits Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.HitsMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitsMethods.html new file mode 100644 index 0000000..0aa5174 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.HitsMethods.html @@ -0,0 +1,15 @@ + + + + + Hits Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Close.html new file mode 100644 index 0000000..fc6d8e3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Close.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Doc.html new file mode 100644 index 0000000..4c109ba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Doc.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.DocFreq.html new file mode 100644 index 0000000..de7fc16 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.DocFreq.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Explain.html new file mode 100644 index 0000000..cc365a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Explain.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.MaxDoc.html new file mode 100644 index 0000000..4e6053f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Rewrite.html new file mode 100644 index 0000000..18b5be2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Rewrite.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_1.html new file mode 100644 index 0000000..e6d72cf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_1.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Search Method (Query, Filter, Int32, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_2.html new file mode 100644 index 0000000..046efd1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_2.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Search Method (Query, Filter, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_3.html new file mode 100644 index 0000000..b48fd3e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overload_3.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.Search Method (Query, Filter, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overloads.html new file mode 100644 index 0000000..9181d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.Search_overloads.html @@ -0,0 +1,15 @@ + + + + + Search Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.html new file mode 100644 index 0000000..f2c0e46 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.reader.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.reader.html new file mode 100644 index 0000000..3edde2b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcher.reader.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher.reader Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor.html new file mode 100644 index 0000000..ff4fd77 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor1.html new file mode 100644 index 0000000..77ebf66 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor1.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor2.html new file mode 100644 index 0000000..978f7ad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor2.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Constructor (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor3.html new file mode 100644 index 0000000..78dfe0f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherConstructor3.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Constructor (IndexReader) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherFields.html new file mode 100644 index 0000000..459d376 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherFields.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherMembers.html new file mode 100644 index 0000000..f1f1b48 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherMembers.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherMethods.html new file mode 100644 index 0000000..7557e83 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.IndexSearcherMethods.html @@ -0,0 +1,15 @@ + + + + + IndexSearcher Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Close.html new file mode 100644 index 0000000..4a30dd4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Close.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Doc.html new file mode 100644 index 0000000..7b3397a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Doc.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.DocFreq.html new file mode 100644 index 0000000..0c413fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.DocFreq.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Explain.html new file mode 100644 index 0000000..83cb96b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Explain.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.GetStarts.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.GetStarts.html new file mode 100644 index 0000000..7156cde --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.GetStarts.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.GetStarts Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.MaxDoc.html new file mode 100644 index 0000000..fd5a282 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Rewrite.html new file mode 100644 index 0000000..09a4fa6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Rewrite.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_1.html new file mode 100644 index 0000000..fe88cb3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Search Method (Query, Filter, Int32, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_2.html new file mode 100644 index 0000000..cbdcc48 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_2.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Search Method (Query, Filter, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_3.html new file mode 100644 index 0000000..fa7a46f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overload_3.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.Search Method (Query, Filter, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overloads.html new file mode 100644 index 0000000..9181d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.Search_overloads.html @@ -0,0 +1,15 @@ + + + + + Search Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SearcherIndex.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SearcherIndex.html new file mode 100644 index 0000000..1f46389 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SearcherIndex.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.SearcherIndex Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SubDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SubDoc.html new file mode 100644 index 0000000..7fce970 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SubDoc.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.SubDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SubSearcher.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SubSearcher.html new file mode 100644 index 0000000..d99b1ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.SubSearcher.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher.SubSearcher Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.html new file mode 100644 index 0000000..08e6de4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcher.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherConstructor.html new file mode 100644 index 0000000..4b8b724 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherConstructor.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherMembers.html new file mode 100644 index 0000000..e68277b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherMembers.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherMethods.html new file mode 100644 index 0000000..231abf9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiSearcherMethods.html @@ -0,0 +1,15 @@ + + + + + MultiSearcher Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.Combine.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.Combine.html new file mode 100644 index 0000000..ccdfc9d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.Combine.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery.Combine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.GetEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.GetEnum.html new file mode 100644 index 0000000..9d18f7a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.GetEnum.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery.GetEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.GetTerm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.GetTerm.html new file mode 100644 index 0000000..23a9fb5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.GetTerm.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery.GetTerm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.Rewrite.html new file mode 100644 index 0000000..eda0219 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.Rewrite.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.ToString_overload_1.html new file mode 100644 index 0000000..feab568 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.html new file mode 100644 index 0000000..87b552c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQuery.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryConstructor.html new file mode 100644 index 0000000..038fbef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryMembers.html new file mode 100644 index 0000000..3e24754 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryMembers.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryMethods.html new file mode 100644 index 0000000..6e708ee --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.MultiTermQueryMethods.html @@ -0,0 +1,15 @@ + + + + + MultiTermQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.DocFreq.html new file mode 100644 index 0000000..3af2059 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.DocFreq.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Rewrite.html new file mode 100644 index 0000000..c9d94f4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Rewrite.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_1.html new file mode 100644 index 0000000..263dceb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_1.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher.Search Method (Query, Filter, Int32, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_2.html new file mode 100644 index 0000000..84329fd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_2.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher.Search Method (Query, Filter, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_3.html new file mode 100644 index 0000000..a9b9c51 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overload_3.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher.Search Method (Query, Filter, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overloads.html new file mode 100644 index 0000000..9181d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.Search_overloads.html @@ -0,0 +1,15 @@ + + + + + Search Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.html new file mode 100644 index 0000000..1219301 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcher.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherConstructor.html new file mode 100644 index 0000000..21cf70d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherConstructor.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherMembers.html new file mode 100644 index 0000000..af05569 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherMembers.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherMethods.html new file mode 100644 index 0000000..b5b66c3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ParallelMultiSearcherMethods.html @@ -0,0 +1,15 @@ + + + + + ParallelMultiSearcher Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_1.html new file mode 100644 index 0000000..f09b921 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_1.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.Add Method (Term[], Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_2.html new file mode 100644 index 0000000..8fc39a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_2.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.Add Method (Term[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_3.html new file mode 100644 index 0000000..dcfa232 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overload_3.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.Add Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overloads.html new file mode 100644 index 0000000..6ba4fdc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Add_overloads.html @@ -0,0 +1,15 @@ + + + + + Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Clone.html new file mode 100644 index 0000000..7158769 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.Clone.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.CreateWeight.html new file mode 100644 index 0000000..549a7be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.GetPositions.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.GetPositions.html new file mode 100644 index 0000000..73c18e1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.GetPositions.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.GetPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.GetSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.GetSlop.html new file mode 100644 index 0000000..18975df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.GetSlop.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.GetSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.SetSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.SetSlop.html new file mode 100644 index 0000000..a09b3eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.SetSlop.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.SetSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.ToString_overload_1.html new file mode 100644 index 0000000..6545081 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.html new file mode 100644 index 0000000..36174c7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQuery.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryConstructor.html new file mode 100644 index 0000000..b9aee57 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryMembers.html new file mode 100644 index 0000000..1a4cb1d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryMembers.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryMethods.html new file mode 100644 index 0000000..9546769 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhrasePrefixQueryMethods.html @@ -0,0 +1,15 @@ + + + + + PhrasePrefixQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overload_1.html new file mode 100644 index 0000000..365d152 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overload_1.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.Add Method (Term, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overload_2.html new file mode 100644 index 0000000..170577c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overload_2.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.Add Method (Term) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overloads.html new file mode 100644 index 0000000..6ba4fdc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Add_overloads.html @@ -0,0 +1,15 @@ + + + + + Add Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Clone.html new file mode 100644 index 0000000..d45d1f6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Clone.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.CreateWeight.html new file mode 100644 index 0000000..02d7b62 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Equals.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Equals.html new file mode 100644 index 0000000..58543a1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.Equals.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.Equals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetHashCode.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetHashCode.html new file mode 100644 index 0000000..09d631b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetHashCode.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.GetHashCode Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetPositions.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetPositions.html new file mode 100644 index 0000000..566ae02 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetPositions.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.GetPositions Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetSlop.html new file mode 100644 index 0000000..4cb0ee4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetSlop.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.GetSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetTerms.html new file mode 100644 index 0000000..09c9c1a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.SetSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.SetSlop.html new file mode 100644 index 0000000..cc41d6b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.SetSlop.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.SetSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.ToString_overload_1.html new file mode 100644 index 0000000..04f77f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.html new file mode 100644 index 0000000..3427337 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQuery.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryConstructor.html new file mode 100644 index 0000000..a63b134 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryMembers.html new file mode 100644 index 0000000..415002f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryMembers.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryMethods.html new file mode 100644 index 0000000..40eaaef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PhraseQueryMethods.html @@ -0,0 +1,15 @@ + + + + + PhraseQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Clone.html new file mode 100644 index 0000000..e65e5ea --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Clone.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Combine.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Combine.html new file mode 100644 index 0000000..3a87e8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Combine.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery.Combine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.GetPrefix.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.GetPrefix.html new file mode 100644 index 0000000..8e89635 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.GetPrefix.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery.GetPrefix Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Rewrite.html new file mode 100644 index 0000000..0f439aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.Rewrite.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.ToString_overload_1.html new file mode 100644 index 0000000..838bd61 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.html new file mode 100644 index 0000000..499e230 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQuery.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryConstructor.html new file mode 100644 index 0000000..1bc4f40 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryMembers.html new file mode 100644 index 0000000..de7211a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryMembers.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryMethods.html new file mode 100644 index 0000000..1ca91be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.PrefixQueryMethods.html @@ -0,0 +1,15 @@ + + + + + PrefixQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Clone.html new file mode 100644 index 0000000..f3603aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Clone.html @@ -0,0 +1,15 @@ + + + + + Query.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Combine.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Combine.html new file mode 100644 index 0000000..e53a0e3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Combine.html @@ -0,0 +1,15 @@ + + + + + Query.Combine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.CreateWeight.html new file mode 100644 index 0000000..0e9ae88 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + Query.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.GetBoost.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.GetBoost.html new file mode 100644 index 0000000..d40f743 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.GetBoost.html @@ -0,0 +1,15 @@ + + + + + Query.GetBoost Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.GetSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.GetSimilarity.html new file mode 100644 index 0000000..f4cef69 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.GetSimilarity.html @@ -0,0 +1,15 @@ + + + + + Query.GetSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.MergeBooleanQueries.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.MergeBooleanQueries.html new file mode 100644 index 0000000..e75abb0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.MergeBooleanQueries.html @@ -0,0 +1,15 @@ + + + + + Query.MergeBooleanQueries Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Rewrite.html new file mode 100644 index 0000000..4d43f9d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Rewrite.html @@ -0,0 +1,15 @@ + + + + + Query.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.SetBoost.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.SetBoost.html new file mode 100644 index 0000000..d994b46 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.SetBoost.html @@ -0,0 +1,15 @@ + + + + + Query.SetBoost Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overload_1.html new file mode 100644 index 0000000..9c74efd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + Query.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overload_2.html new file mode 100644 index 0000000..8a59f88 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overload_2.html @@ -0,0 +1,15 @@ + + + + + Query.ToString Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Weight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Weight.html new file mode 100644 index 0000000..25dfebe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.Weight.html @@ -0,0 +1,15 @@ + + + + + Query.Weight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.html new file mode 100644 index 0000000..def0c0b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Query.html @@ -0,0 +1,15 @@ + + + + + Query Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryConstructor.html new file mode 100644 index 0000000..921db6a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryConstructor.html @@ -0,0 +1,15 @@ + + + + + Query Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.Bits.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.Bits.html new file mode 100644 index 0000000..3a97742 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.Bits.html @@ -0,0 +1,15 @@ + + + + + QueryFilter.Bits Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.ToString.html new file mode 100644 index 0000000..8e3cfbd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.ToString.html @@ -0,0 +1,15 @@ + + + + + QueryFilter.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.html new file mode 100644 index 0000000..43d2590 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilter.html @@ -0,0 +1,15 @@ + + + + + QueryFilter Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterConstructor.html new file mode 100644 index 0000000..263fd57 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterConstructor.html @@ -0,0 +1,15 @@ + + + + + QueryFilter Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterMembers.html new file mode 100644 index 0000000..bb930ac --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterMembers.html @@ -0,0 +1,15 @@ + + + + + QueryFilter Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterMethods.html new file mode 100644 index 0000000..d55528e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryFilterMethods.html @@ -0,0 +1,15 @@ + + + + + QueryFilter Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryHierarchy.html new file mode 100644 index 0000000..dca3fb6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryHierarchy.html @@ -0,0 +1,15 @@ + + + + + Query Hierarchy + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryMembers.html new file mode 100644 index 0000000..e7aefe4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryMembers.html @@ -0,0 +1,15 @@ + + + + + Query Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryMethods.html new file mode 100644 index 0000000..1d67d29 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryMethods.html @@ -0,0 +1,15 @@ + + + + + Query Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetField.html new file mode 100644 index 0000000..8a71c68 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetField.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetTermFrequencies.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetTermFrequencies.html new file mode 100644 index 0000000..4bb1c74 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetTermFrequencies.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.GetTermFrequencies Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetTerms.html new file mode 100644 index 0000000..e1dbe66 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.GetTerms.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.IndexOf.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.IndexOf.html new file mode 100644 index 0000000..d5be46c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.IndexOf.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.IndexOf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.IndexesOf.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.IndexesOf.html new file mode 100644 index 0000000..32861c7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.IndexesOf.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.IndexesOf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.Size.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.Size.html new file mode 100644 index 0000000..70c39a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.Size.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.Size Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.ToString.html new file mode 100644 index 0000000..c7a7517 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.ToString.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.html new file mode 100644 index 0000000..3792ada --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVector.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor.html new file mode 100644 index 0000000..1762626 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor1.html new file mode 100644 index 0000000..11124b2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor1.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector Constructor (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor2.html new file mode 100644 index 0000000..5a1228e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorConstructor2.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector Constructor (String, Analyzer) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorMembers.html new file mode 100644 index 0000000..2c1d071 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorMembers.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorMethods.html new file mode 100644 index 0000000..fc7f652 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.QueryTermVectorMethods.html @@ -0,0 +1,15 @@ + + + + + QueryTermVector Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Clone.html new file mode 100644 index 0000000..83779c1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Clone.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Combine.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Combine.html new file mode 100644 index 0000000..134e5fd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Combine.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.Combine Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetField.html new file mode 100644 index 0000000..3a1a207 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetLowerTerm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetLowerTerm.html new file mode 100644 index 0000000..91cd802 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetLowerTerm.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.GetLowerTerm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetUpperTerm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetUpperTerm.html new file mode 100644 index 0000000..f56582e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.GetUpperTerm.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.GetUpperTerm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.IsInclusive.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.IsInclusive.html new file mode 100644 index 0000000..1023d5c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.IsInclusive.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.IsInclusive Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Rewrite.html new file mode 100644 index 0000000..ef33f52 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.Rewrite.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.ToString_overload_1.html new file mode 100644 index 0000000..a0e1d91 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + RangeQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.html new file mode 100644 index 0000000..314bdd2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQuery.html @@ -0,0 +1,15 @@ + + + + + RangeQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryConstructor.html new file mode 100644 index 0000000..720693c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + RangeQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryMembers.html new file mode 100644 index 0000000..7d9d5b0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryMembers.html @@ -0,0 +1,15 @@ + + + + + RangeQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryMethods.html new file mode 100644 index 0000000..6e6217c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RangeQueryMethods.html @@ -0,0 +1,15 @@ + + + + + RangeQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Close.html new file mode 100644 index 0000000..6c1ecd7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Close.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Doc.html new file mode 100644 index 0000000..9d8e0f4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Doc.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.DocFreq.html new file mode 100644 index 0000000..f7a4a23 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.DocFreq.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Explain.html new file mode 100644 index 0000000..a0693ef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Explain.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Main.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Main.html new file mode 100644 index 0000000..19e8644 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Main.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Main Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.MaxDoc.html new file mode 100644 index 0000000..6b07946 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Rewrite.html new file mode 100644 index 0000000..d17a0c8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Rewrite.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_1.html new file mode 100644 index 0000000..72c45e4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_1.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Search Method (Query, Filter, Int32, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_2.html new file mode 100644 index 0000000..082a008 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_2.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Search Method (Query, Filter, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_3.html new file mode 100644 index 0000000..55dbc3b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overload_3.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable.Search Method (Query, Filter, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overloads.html new file mode 100644 index 0000000..9181d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.Search_overloads.html @@ -0,0 +1,15 @@ + + + + + Search Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.html new file mode 100644 index 0000000..631a97c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchable.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableConstructor.html new file mode 100644 index 0000000..0edccdb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableConstructor.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableMembers.html new file mode 100644 index 0000000..f48a59e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableMembers.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableMethods.html new file mode 100644 index 0000000..907b0ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.RemoteSearchableMethods.html @@ -0,0 +1,15 @@ + + + + + RemoteSearchable Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.doc.html new file mode 100644 index 0000000..2e4ca90 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.doc.html @@ -0,0 +1,15 @@ + + + + + ScoreDoc.doc Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.html new file mode 100644 index 0000000..140829b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.html @@ -0,0 +1,15 @@ + + + + + ScoreDoc Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.score.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.score.html new file mode 100644 index 0000000..918ed7d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDoc.score.html @@ -0,0 +1,15 @@ + + + + + ScoreDoc.score Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.Compare.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.Compare.html new file mode 100644 index 0000000..ee192a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.Compare.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator.Compare Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.SortType.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.SortType.html new file mode 100644 index 0000000..dfacb05 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.SortType.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator.SortType Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.SortValue.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.SortValue.html new file mode 100644 index 0000000..e07ca22 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.SortValue.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator.SortValue Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.html new file mode 100644 index 0000000..870207e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparatorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparatorMembers.html new file mode 100644 index 0000000..94fd738 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparatorMembers.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparatorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparatorMethods.html new file mode 100644 index 0000000..8af59ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparatorMethods.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.INDEXORDER.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.INDEXORDER.html new file mode 100644 index 0000000..d432aba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.INDEXORDER.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator_Fields.INDEXORDER Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.RELEVANCE.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.RELEVANCE.html new file mode 100644 index 0000000..7c6191c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.RELEVANCE.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator_Fields.RELEVANCE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.html new file mode 100644 index 0000000..bd07057 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_Fields.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator_Fields Structure + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_FieldsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_FieldsFields.html new file mode 100644 index 0000000..f82c606 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_FieldsFields.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator_Fields Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_FieldsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_FieldsMembers.html new file mode 100644 index 0000000..a09c3e9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocComparator_FieldsMembers.html @@ -0,0 +1,15 @@ + + + + + ScoreDocComparator_Fields Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocConstructor.html new file mode 100644 index 0000000..f0c4fd3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocConstructor.html @@ -0,0 +1,15 @@ + + + + + ScoreDoc Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocFields.html new file mode 100644 index 0000000..13c3662 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocFields.html @@ -0,0 +1,15 @@ + + + + + ScoreDoc Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocMembers.html new file mode 100644 index 0000000..50cea96 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScoreDocMembers.html @@ -0,0 +1,15 @@ + + + + + ScoreDoc Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Doc.html new file mode 100644 index 0000000..6de6164 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Doc.html @@ -0,0 +1,15 @@ + + + + + Scorer.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Explain.html new file mode 100644 index 0000000..888e644 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Explain.html @@ -0,0 +1,15 @@ + + + + + Scorer.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.GetSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.GetSimilarity.html new file mode 100644 index 0000000..669f7c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.GetSimilarity.html @@ -0,0 +1,15 @@ + + + + + Scorer.GetSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Next.html new file mode 100644 index 0000000..dec0108 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Next.html @@ -0,0 +1,15 @@ + + + + + Scorer.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overload_1.html new file mode 100644 index 0000000..62d4a18 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overload_1.html @@ -0,0 +1,15 @@ + + + + + Scorer.Score Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overload_2.html new file mode 100644 index 0000000..1b9804d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overload_2.html @@ -0,0 +1,15 @@ + + + + + Scorer.Score Method (HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overloads.html new file mode 100644 index 0000000..9193523 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.Score_overloads.html @@ -0,0 +1,15 @@ + + + + + Score Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.SkipTo.html new file mode 100644 index 0000000..f3ced2a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.SkipTo.html @@ -0,0 +1,15 @@ + + + + + Scorer.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.html new file mode 100644 index 0000000..4759f91 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Scorer.html @@ -0,0 +1,15 @@ + + + + + Scorer Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerConstructor.html new file mode 100644 index 0000000..5f10c68 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerConstructor.html @@ -0,0 +1,15 @@ + + + + + Scorer Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerMembers.html new file mode 100644 index 0000000..3b46cfa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerMembers.html @@ -0,0 +1,15 @@ + + + + + Scorer Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerMethods.html new file mode 100644 index 0000000..d49af04 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.ScorerMethods.html @@ -0,0 +1,15 @@ + + + + + Scorer Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Close.html new file mode 100644 index 0000000..840e118 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Close.html @@ -0,0 +1,15 @@ + + + + + Searchable.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Doc.html new file mode 100644 index 0000000..0ac040a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Doc.html @@ -0,0 +1,15 @@ + + + + + Searchable.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.DocFreq.html new file mode 100644 index 0000000..7195f8d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.DocFreq.html @@ -0,0 +1,15 @@ + + + + + Searchable.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Explain.html new file mode 100644 index 0000000..92a740d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Explain.html @@ -0,0 +1,15 @@ + + + + + Searchable.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.MaxDoc.html new file mode 100644 index 0000000..e97f36a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + Searchable.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Rewrite.html new file mode 100644 index 0000000..765e4b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Rewrite.html @@ -0,0 +1,15 @@ + + + + + Searchable.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_1.html new file mode 100644 index 0000000..10ac602 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_1.html @@ -0,0 +1,15 @@ + + + + + Searchable.Search Method (Query, Filter, Int32, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_2.html new file mode 100644 index 0000000..a2848a8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_2.html @@ -0,0 +1,15 @@ + + + + + Searchable.Search Method (Query, Filter, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_3.html new file mode 100644 index 0000000..29c7225 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overload_3.html @@ -0,0 +1,15 @@ + + + + + Searchable.Search Method (Query, Filter, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overloads.html new file mode 100644 index 0000000..9181d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.Search_overloads.html @@ -0,0 +1,15 @@ + + + + + Search Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.html new file mode 100644 index 0000000..8b42adc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searchable.html @@ -0,0 +1,15 @@ + + + + + Searchable Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SearchableMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearchableMembers.html new file mode 100644 index 0000000..994b35d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearchableMembers.html @@ -0,0 +1,15 @@ + + + + + Searchable Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SearchableMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearchableMethods.html new file mode 100644 index 0000000..a193a74 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearchableMethods.html @@ -0,0 +1,15 @@ + + + + + Searchable Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Close.html new file mode 100644 index 0000000..ac0232d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Close.html @@ -0,0 +1,15 @@ + + + + + Searcher.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Doc.html new file mode 100644 index 0000000..34ec50f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Doc.html @@ -0,0 +1,15 @@ + + + + + Searcher.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.DocFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.DocFreq.html new file mode 100644 index 0000000..2a7128a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.DocFreq.html @@ -0,0 +1,15 @@ + + + + + Searcher.DocFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Explain.html new file mode 100644 index 0000000..da1838a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Explain.html @@ -0,0 +1,15 @@ + + + + + Searcher.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.GetSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.GetSimilarity.html new file mode 100644 index 0000000..984d1b7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.GetSimilarity.html @@ -0,0 +1,15 @@ + + + + + Searcher.GetSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.MaxDoc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.MaxDoc.html new file mode 100644 index 0000000..50f05c8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.MaxDoc.html @@ -0,0 +1,15 @@ + + + + + Searcher.MaxDoc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Rewrite.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Rewrite.html new file mode 100644 index 0000000..759b7ed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Rewrite.html @@ -0,0 +1,15 @@ + + + + + Searcher.Rewrite Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_1.html new file mode 100644 index 0000000..08a8752 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_1.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, Filter, Int32, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_2.html new file mode 100644 index 0000000..75de33a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_2.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, Filter, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_3.html new file mode 100644 index 0000000..73545f1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_3.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, Filter, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_4.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_4.html new file mode 100644 index 0000000..5ce773b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_4.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, HitCollector) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_5.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_5.html new file mode 100644 index 0000000..cb14fcc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_5.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, Filter, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_6.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_6.html new file mode 100644 index 0000000..a902133 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_6.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, Sort) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_7.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_7.html new file mode 100644 index 0000000..a8a1bae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_7.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query, Filter) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_8.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_8.html new file mode 100644 index 0000000..94a5852 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overload_8.html @@ -0,0 +1,15 @@ + + + + + Searcher.Search Method (Query) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overloads.html new file mode 100644 index 0000000..9181d86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.Search_overloads.html @@ -0,0 +1,15 @@ + + + + + Search Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.SetSimilarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.SetSimilarity.html new file mode 100644 index 0000000..bc19d71 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.SetSimilarity.html @@ -0,0 +1,15 @@ + + + + + Searcher.SetSimilarity Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.html new file mode 100644 index 0000000..0cc5b52 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Searcher.html @@ -0,0 +1,15 @@ + + + + + Searcher Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherConstructor.html new file mode 100644 index 0000000..405bc94 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherConstructor.html @@ -0,0 +1,15 @@ + + + + + Searcher Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherMembers.html new file mode 100644 index 0000000..fa40d9a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherMembers.html @@ -0,0 +1,15 @@ + + + + + Searcher Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherMethods.html new file mode 100644 index 0000000..52a316d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SearcherMethods.html @@ -0,0 +1,15 @@ + + + + + Searcher Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Coord.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Coord.html new file mode 100644 index 0000000..7dfaac2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Coord.html @@ -0,0 +1,15 @@ + + + + + Similarity.Coord Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.DecodeNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.DecodeNorm.html new file mode 100644 index 0000000..6cad4d3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.DecodeNorm.html @@ -0,0 +1,15 @@ + + + + + Similarity.DecodeNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.EncodeNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.EncodeNorm.html new file mode 100644 index 0000000..3cd11d7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.EncodeNorm.html @@ -0,0 +1,15 @@ + + + + + Similarity.EncodeNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.GetDefault.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.GetDefault.html new file mode 100644 index 0000000..6f73e94 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.GetDefault.html @@ -0,0 +1,15 @@ + + + + + Similarity.GetDefault Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_1.html new file mode 100644 index 0000000..3c25625 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_1.html @@ -0,0 +1,15 @@ + + + + + Similarity.Idf Method (Int32, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_2.html new file mode 100644 index 0000000..4ef8aa7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_2.html @@ -0,0 +1,15 @@ + + + + + Similarity.Idf Method (ICollection, Searcher) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_3.html new file mode 100644 index 0000000..09a3d18 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overload_3.html @@ -0,0 +1,15 @@ + + + + + Similarity.Idf Method (Term, Searcher) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overloads.html new file mode 100644 index 0000000..559f6ce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Idf_overloads.html @@ -0,0 +1,15 @@ + + + + + Idf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.LengthNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.LengthNorm.html new file mode 100644 index 0000000..bdd2eb1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.LengthNorm.html @@ -0,0 +1,15 @@ + + + + + Similarity.LengthNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.QueryNorm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.QueryNorm.html new file mode 100644 index 0000000..5867ade --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.QueryNorm.html @@ -0,0 +1,15 @@ + + + + + Similarity.QueryNorm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.SetDefault.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.SetDefault.html new file mode 100644 index 0000000..de4e4d9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.SetDefault.html @@ -0,0 +1,15 @@ + + + + + Similarity.SetDefault Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.SloppyFreq.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.SloppyFreq.html new file mode 100644 index 0000000..eafa082 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.SloppyFreq.html @@ -0,0 +1,15 @@ + + + + + Similarity.SloppyFreq Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overload_1.html new file mode 100644 index 0000000..39e6c08 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overload_1.html @@ -0,0 +1,15 @@ + + + + + Similarity.Tf Method (Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overload_2.html new file mode 100644 index 0000000..aa98346 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overload_2.html @@ -0,0 +1,15 @@ + + + + + Similarity.Tf Method (Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overloads.html new file mode 100644 index 0000000..8c0d87a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.Tf_overloads.html @@ -0,0 +1,15 @@ + + + + + Tf Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.html new file mode 100644 index 0000000..ade158a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Similarity.html @@ -0,0 +1,15 @@ + + + + + Similarity Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityConstructor.html new file mode 100644 index 0000000..888cd37 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityConstructor.html @@ -0,0 +1,15 @@ + + + + + Similarity Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityMembers.html new file mode 100644 index 0000000..e65e3ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityMembers.html @@ -0,0 +1,15 @@ + + + + + Similarity Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityMethods.html new file mode 100644 index 0000000..841b62c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SimilarityMethods.html @@ -0,0 +1,15 @@ + + + + + Similarity Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.INDEXORDER.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.INDEXORDER.html new file mode 100644 index 0000000..80bbb83 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.INDEXORDER.html @@ -0,0 +1,15 @@ + + + + + Sort.INDEXORDER Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.RELEVANCE.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.RELEVANCE.html new file mode 100644 index 0000000..df737be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.RELEVANCE.html @@ -0,0 +1,15 @@ + + + + + Sort.RELEVANCE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_1.html new file mode 100644 index 0000000..320d267 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_1.html @@ -0,0 +1,15 @@ + + + + + Sort.SetSort Method (SortField[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_2.html new file mode 100644 index 0000000..20da9eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_2.html @@ -0,0 +1,15 @@ + + + + + Sort.SetSort Method (SortField) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_3.html new file mode 100644 index 0000000..355f1cc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_3.html @@ -0,0 +1,15 @@ + + + + + Sort.SetSort Method (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_4.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_4.html new file mode 100644 index 0000000..2f838b7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_4.html @@ -0,0 +1,15 @@ + + + + + Sort.SetSort Method (String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_5.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_5.html new file mode 100644 index 0000000..5d2c723 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overload_5.html @@ -0,0 +1,15 @@ + + + + + Sort.SetSort Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overloads.html new file mode 100644 index 0000000..4a27170 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.SetSort_overloads.html @@ -0,0 +1,15 @@ + + + + + SetSort Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.ToString.html new file mode 100644 index 0000000..cd36688 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.ToString.html @@ -0,0 +1,15 @@ + + + + + Sort.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.html new file mode 100644 index 0000000..3810194 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Sort.html @@ -0,0 +1,15 @@ + + + + + Sort Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.GetComparable.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.GetComparable.html new file mode 100644 index 0000000..8b8426e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.GetComparable.html @@ -0,0 +1,15 @@ + + + + + SortComparator.GetComparable Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.NewComparator.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.NewComparator.html new file mode 100644 index 0000000..612149d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.NewComparator.html @@ -0,0 +1,15 @@ + + + + + SortComparator.NewComparator Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.html new file mode 100644 index 0000000..e7d35ef --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparator.html @@ -0,0 +1,15 @@ + + + + + SortComparator Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorConstructor.html new file mode 100644 index 0000000..706b0ce --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorConstructor.html @@ -0,0 +1,15 @@ + + + + + SortComparator Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorMembers.html new file mode 100644 index 0000000..02a7089 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorMembers.html @@ -0,0 +1,15 @@ + + + + + SortComparator Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorMethods.html new file mode 100644 index 0000000..be3bf5f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorMethods.html @@ -0,0 +1,15 @@ + + + + + SortComparator Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSource.NewComparator.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSource.NewComparator.html new file mode 100644 index 0000000..a128fa0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSource.NewComparator.html @@ -0,0 +1,15 @@ + + + + + SortComparatorSource.NewComparator Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSource.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSource.html new file mode 100644 index 0000000..c0e8de6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSource.html @@ -0,0 +1,15 @@ + + + + + SortComparatorSource Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSourceMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSourceMembers.html new file mode 100644 index 0000000..34d0b26 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSourceMembers.html @@ -0,0 +1,15 @@ + + + + + SortComparatorSource Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSourceMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSourceMethods.html new file mode 100644 index 0000000..ce61ca6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortComparatorSourceMethods.html @@ -0,0 +1,15 @@ + + + + + SortComparatorSource Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor.html new file mode 100644 index 0000000..634faad --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor1.html new file mode 100644 index 0000000..2443c77 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor1.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor2.html new file mode 100644 index 0000000..9d2d0af --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor2.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor3.html new file mode 100644 index 0000000..56cb798 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor3.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor (String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor4.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor4.html new file mode 100644 index 0000000..9d9fed8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor4.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor (String[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor5.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor5.html new file mode 100644 index 0000000..286fb54 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor5.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor (SortField) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor6.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor6.html new file mode 100644 index 0000000..a6ba7ee --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortConstructor6.html @@ -0,0 +1,15 @@ + + + + + Sort Constructor (SortField[]) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.AUTO.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.AUTO.html new file mode 100644 index 0000000..f1880b2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.AUTO.html @@ -0,0 +1,15 @@ + + + + + SortField.AUTO Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.CUSTOM.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.CUSTOM.html new file mode 100644 index 0000000..db8b2fa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.CUSTOM.html @@ -0,0 +1,15 @@ + + + + + SortField.CUSTOM Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.DOC.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.DOC.html new file mode 100644 index 0000000..c47f5a4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.DOC.html @@ -0,0 +1,15 @@ + + + + + SortField.DOC Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FIELD_DOC.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FIELD_DOC.html new file mode 100644 index 0000000..254d761 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FIELD_DOC.html @@ -0,0 +1,15 @@ + + + + + SortField.FIELD_DOC Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FIELD_SCORE.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FIELD_SCORE.html new file mode 100644 index 0000000..bf378aa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FIELD_SCORE.html @@ -0,0 +1,15 @@ + + + + + SortField.FIELD_SCORE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FLOAT.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FLOAT.html new file mode 100644 index 0000000..2530d41 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.FLOAT.html @@ -0,0 +1,15 @@ + + + + + SortField.FLOAT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetFactory.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetFactory.html new file mode 100644 index 0000000..15fe2a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetFactory.html @@ -0,0 +1,15 @@ + + + + + SortField.GetFactory Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetField.html new file mode 100644 index 0000000..181fa71 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetField.html @@ -0,0 +1,15 @@ + + + + + SortField.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetLocale.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetLocale.html new file mode 100644 index 0000000..d1c1135 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetLocale.html @@ -0,0 +1,15 @@ + + + + + SortField.GetLocale Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetReverse.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetReverse.html new file mode 100644 index 0000000..b04c2cd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetReverse.html @@ -0,0 +1,15 @@ + + + + + SortField.GetReverse Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetType.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetType.html new file mode 100644 index 0000000..fb83877 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.GetType.html @@ -0,0 +1,15 @@ + + + + + SortField.GetType Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.INT.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.INT.html new file mode 100644 index 0000000..9d56994 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.INT.html @@ -0,0 +1,15 @@ + + + + + SortField.INT Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.SCORE.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.SCORE.html new file mode 100644 index 0000000..8d64dbd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.SCORE.html @@ -0,0 +1,15 @@ + + + + + SortField.SCORE Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.STRING.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.STRING.html new file mode 100644 index 0000000..2d13a50 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.STRING.html @@ -0,0 +1,15 @@ + + + + + SortField.STRING Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.ToString.html new file mode 100644 index 0000000..2bf8f50 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.ToString.html @@ -0,0 +1,15 @@ + + + + + SortField.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.html new file mode 100644 index 0000000..2b4cb01 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortField.html @@ -0,0 +1,15 @@ + + + + + SortField Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor.html new file mode 100644 index 0000000..2f2643b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor1.html new file mode 100644 index 0000000..bda338d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor1.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor2.html new file mode 100644 index 0000000..5a19b9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor2.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor3.html new file mode 100644 index 0000000..bc14b86 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor3.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor4.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor4.html new file mode 100644 index 0000000..54126c8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor4.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, Int32, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor5.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor5.html new file mode 100644 index 0000000..2312505 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor5.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, CultureInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor6.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor6.html new file mode 100644 index 0000000..14290ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor6.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, CultureInfo, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor7.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor7.html new file mode 100644 index 0000000..2391dc0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor7.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, SortComparatorSource) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor8.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor8.html new file mode 100644 index 0000000..2ca5ed0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldConstructor8.html @@ -0,0 +1,15 @@ + + + + + SortField Constructor (String, SortComparatorSource, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldFields.html new file mode 100644 index 0000000..4c0e1f6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldFields.html @@ -0,0 +1,15 @@ + + + + + SortField Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldMembers.html new file mode 100644 index 0000000..f2bc3be --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldMembers.html @@ -0,0 +1,15 @@ + + + + + SortField Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldMethods.html new file mode 100644 index 0000000..68cf3bd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFieldMethods.html @@ -0,0 +1,15 @@ + + + + + SortField Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFields.html new file mode 100644 index 0000000..d50de1b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortFields.html @@ -0,0 +1,15 @@ + + + + + Sort Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortMembers.html new file mode 100644 index 0000000..ca1171e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortMembers.html @@ -0,0 +1,15 @@ + + + + + Sort Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SortMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortMethods.html new file mode 100644 index 0000000..c880d28 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SortMethods.html @@ -0,0 +1,15 @@ + + + + + Sort Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetEnd.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetEnd.html new file mode 100644 index 0000000..737c916 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetEnd.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery.GetEnd Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetField.html new file mode 100644 index 0000000..eb92275 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetMatch.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetMatch.html new file mode 100644 index 0000000..7b6ee32 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetMatch.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery.GetMatch Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetSpans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetSpans.html new file mode 100644 index 0000000..711e05a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetSpans.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery.GetSpans Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetTerms.html new file mode 100644 index 0000000..d4aedf5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.ToString_overload_1.html new file mode 100644 index 0000000..ff2ec60 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.html new file mode 100644 index 0000000..729d91c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQuery.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryConstructor.html new file mode 100644 index 0000000..784ccbc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryMembers.html new file mode 100644 index 0000000..54df19e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryMembers.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryMethods.html new file mode 100644 index 0000000..dd13c30 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanFirstQueryMethods.html @@ -0,0 +1,15 @@ + + + + + SpanFirstQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetClauses.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetClauses.html new file mode 100644 index 0000000..7422104 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetClauses.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.GetClauses Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetField.html new file mode 100644 index 0000000..545b9f5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetSlop.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetSlop.html new file mode 100644 index 0000000..8129efb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetSlop.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.GetSlop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetSpans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetSpans.html new file mode 100644 index 0000000..2578bf8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetSpans.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.GetSpans Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetTerms.html new file mode 100644 index 0000000..49da831 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.IsInOrder.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.IsInOrder.html new file mode 100644 index 0000000..424e562 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.IsInOrder.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.IsInOrder Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.ToString_overload_1.html new file mode 100644 index 0000000..239d220 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.html new file mode 100644 index 0000000..b986fd5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQuery.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryConstructor.html new file mode 100644 index 0000000..8613e65 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryMembers.html new file mode 100644 index 0000000..1f4eadc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryMembers.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryMethods.html new file mode 100644 index 0000000..49fedfa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNearQueryMethods.html @@ -0,0 +1,15 @@ + + + + + SpanNearQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetExclude.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetExclude.html new file mode 100644 index 0000000..fe7b3c6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetExclude.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery.GetExclude Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetField.html new file mode 100644 index 0000000..5532441 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetInclude.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetInclude.html new file mode 100644 index 0000000..c4704cd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetInclude.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery.GetInclude Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetSpans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetSpans.html new file mode 100644 index 0000000..6201e9e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetSpans.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery.GetSpans Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetTerms.html new file mode 100644 index 0000000..472a05f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.ToString_overload_1.html new file mode 100644 index 0000000..d2912d5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.html new file mode 100644 index 0000000..7028ee8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQuery.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryConstructor.html new file mode 100644 index 0000000..3098e5e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryMembers.html new file mode 100644 index 0000000..bcb1fb0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryMembers.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryMethods.html new file mode 100644 index 0000000..f064284 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanNotQueryMethods.html @@ -0,0 +1,15 @@ + + + + + SpanNotQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetClauses.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetClauses.html new file mode 100644 index 0000000..81cd769 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetClauses.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery.GetClauses Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetField.html new file mode 100644 index 0000000..4041de9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetSpans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetSpans.html new file mode 100644 index 0000000..9087638 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetSpans.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery.GetSpans Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetTerms.html new file mode 100644 index 0000000..910f956 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.ToString_overload_1.html new file mode 100644 index 0000000..a61b264 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.html new file mode 100644 index 0000000..e92790c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQuery.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryConstructor.html new file mode 100644 index 0000000..45a7111 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryMembers.html new file mode 100644 index 0000000..c53a6f1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryMembers.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryMethods.html new file mode 100644 index 0000000..c10c96e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanOrQueryMethods.html @@ -0,0 +1,15 @@ + + + + + SpanOrQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.CreateWeight.html new file mode 100644 index 0000000..dbada0a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + SpanQuery.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetField.html new file mode 100644 index 0000000..432c858 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + SpanQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetSpans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetSpans.html new file mode 100644 index 0000000..446e5d4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetSpans.html @@ -0,0 +1,15 @@ + + + + + SpanQuery.GetSpans Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetTerms.html new file mode 100644 index 0000000..641a7ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + SpanQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.html new file mode 100644 index 0000000..5b533d7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQuery.html @@ -0,0 +1,15 @@ + + + + + SpanQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryConstructor.html new file mode 100644 index 0000000..5d32442 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + SpanQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryMembers.html new file mode 100644 index 0000000..b7819a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryMembers.html @@ -0,0 +1,15 @@ + + + + + SpanQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryMethods.html new file mode 100644 index 0000000..ee116c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanQueryMethods.html @@ -0,0 +1,15 @@ + + + + + SpanQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetField.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetField.html new file mode 100644 index 0000000..aec18ee --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetField.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery.GetField Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetSpans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetSpans.html new file mode 100644 index 0000000..0e4e6bf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetSpans.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery.GetSpans Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetTerm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetTerm.html new file mode 100644 index 0000000..11d564e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetTerm.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery.GetTerm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetTerms.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetTerms.html new file mode 100644 index 0000000..76b7386 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.GetTerms.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery.GetTerms Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.ToString_overload_1.html new file mode 100644 index 0000000..f5896e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.html new file mode 100644 index 0000000..43e7e37 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQuery.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryConstructor.html new file mode 100644 index 0000000..a39bed4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryMembers.html new file mode 100644 index 0000000..36e1bfe --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryMembers.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryMethods.html new file mode 100644 index 0000000..1e89e76 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpanTermQueryMethods.html @@ -0,0 +1,15 @@ + + + + + SpanTermQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Doc.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Doc.html new file mode 100644 index 0000000..668cef9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Doc.html @@ -0,0 +1,15 @@ + + + + + Spans.Doc Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.End.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.End.html new file mode 100644 index 0000000..7577913 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.End.html @@ -0,0 +1,15 @@ + + + + + Spans.End Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Next.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Next.html new file mode 100644 index 0000000..f9a7804 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Next.html @@ -0,0 +1,15 @@ + + + + + Spans.Next Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.SkipTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.SkipTo.html new file mode 100644 index 0000000..fbcec70 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.SkipTo.html @@ -0,0 +1,15 @@ + + + + + Spans.SkipTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Start.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Start.html new file mode 100644 index 0000000..e47f334 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.Start.html @@ -0,0 +1,15 @@ + + + + + Spans.Start Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.html new file mode 100644 index 0000000..cdec98f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.Spans.html @@ -0,0 +1,15 @@ + + + + + Spans Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpansMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpansMembers.html new file mode 100644 index 0000000..bdfabbc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpansMembers.html @@ -0,0 +1,15 @@ + + + + + Spans Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpansMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpansMethods.html new file mode 100644 index 0000000..03027a4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.SpansMethods.html @@ -0,0 +1,15 @@ + + + + + Spans Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.html new file mode 100644 index 0000000..897ebfd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Spans.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Search.Spans + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.SpansHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.SpansHierarchy.html new file mode 100644 index 0000000..da9b28f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.SpansHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Search.SpansHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.html new file mode 100644 index 0000000..bbeb084 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.html @@ -0,0 +1,15 @@ + + + + + StringIndex Class + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.lookup.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.lookup.html new file mode 100644 index 0000000..a639767 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.lookup.html @@ -0,0 +1,15 @@ + + + + + StringIndex.lookup Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.order.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.order.html new file mode 100644 index 0000000..14400ec --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndex.order.html @@ -0,0 +1,15 @@ + + + + + StringIndex.order Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexConstructor.html new file mode 100644 index 0000000..9121c57 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexConstructor.html @@ -0,0 +1,15 @@ + + + + + StringIndex Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexFields.html new file mode 100644 index 0000000..b22d3ca --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexFields.html @@ -0,0 +1,15 @@ + + + + + StringIndex Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexMembers.html new file mode 100644 index 0000000..b2a920f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.StringIndexMembers.html @@ -0,0 +1,15 @@ + + + + + StringIndex Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.Clone.html new file mode 100644 index 0000000..91f2617 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.Clone.html @@ -0,0 +1,15 @@ + + + + + TermQuery.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.CreateWeight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.CreateWeight.html new file mode 100644 index 0000000..0b2b530 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.CreateWeight.html @@ -0,0 +1,15 @@ + + + + + TermQuery.CreateWeight Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.Equals.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.Equals.html new file mode 100644 index 0000000..60bc775 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.Equals.html @@ -0,0 +1,15 @@ + + + + + TermQuery.Equals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.GetHashCode.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.GetHashCode.html new file mode 100644 index 0000000..ee7760e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.GetHashCode.html @@ -0,0 +1,15 @@ + + + + + TermQuery.GetHashCode Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.GetTerm.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.GetTerm.html new file mode 100644 index 0000000..9640c8c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.GetTerm.html @@ -0,0 +1,15 @@ + + + + + TermQuery.GetTerm Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.ToString_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.ToString_overload_1.html new file mode 100644 index 0000000..be6a451 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.ToString_overload_1.html @@ -0,0 +1,15 @@ + + + + + TermQuery.ToString Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.ToString_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.html new file mode 100644 index 0000000..caaf271 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQuery.html @@ -0,0 +1,15 @@ + + + + + TermQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryConstructor.html new file mode 100644 index 0000000..1cfd97f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + TermQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryMembers.html new file mode 100644 index 0000000..e52e008 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryMembers.html @@ -0,0 +1,15 @@ + + + + + TermQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryMethods.html new file mode 100644 index 0000000..0857d77 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TermQueryMethods.html @@ -0,0 +1,15 @@ + + + + + TermQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.html new file mode 100644 index 0000000..ab6808a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.html @@ -0,0 +1,15 @@ + + + + + TopDocs Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.scoreDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.scoreDocs.html new file mode 100644 index 0000000..4be0088 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.scoreDocs.html @@ -0,0 +1,15 @@ + + + + + TopDocs.scoreDocs Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.totalHits.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.totalHits.html new file mode 100644 index 0000000..45060bb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocs.totalHits.html @@ -0,0 +1,15 @@ + + + + + TopDocs.totalHits Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocsFields.html new file mode 100644 index 0000000..af7d57a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocsFields.html @@ -0,0 +1,15 @@ + + + + + TopDocs Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocsMembers.html new file mode 100644 index 0000000..62136dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopDocsMembers.html @@ -0,0 +1,15 @@ + + + + + TopDocs Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocs.fields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocs.fields.html new file mode 100644 index 0000000..3ea1879 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocs.fields.html @@ -0,0 +1,15 @@ + + + + + TopFieldDocs.fields Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocs.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocs.html new file mode 100644 index 0000000..2745218 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocs.html @@ -0,0 +1,15 @@ + + + + + TopFieldDocs Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocsFields.html new file mode 100644 index 0000000..9d95afa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocsFields.html @@ -0,0 +1,15 @@ + + + + + TopFieldDocs Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocsMembers.html new file mode 100644 index 0000000..5d295eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.TopFieldDocsMembers.html @@ -0,0 +1,15 @@ + + + + + TopFieldDocs Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Explain.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Explain.html new file mode 100644 index 0000000..45baaee --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Explain.html @@ -0,0 +1,15 @@ + + + + + Weight.Explain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Normalize.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Normalize.html new file mode 100644 index 0000000..b1857d5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Normalize.html @@ -0,0 +1,15 @@ + + + + + Weight.Normalize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Query.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Query.html new file mode 100644 index 0000000..c476b00 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Query.html @@ -0,0 +1,15 @@ + + + + + Weight.Query Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Scorer.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Scorer.html new file mode 100644 index 0000000..c3a71fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Scorer.html @@ -0,0 +1,15 @@ + + + + + Weight.Scorer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.SumOfSquaredWeights.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.SumOfSquaredWeights.html new file mode 100644 index 0000000..691ce0e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.SumOfSquaredWeights.html @@ -0,0 +1,15 @@ + + + + + Weight.SumOfSquaredWeights Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Value.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Value.html new file mode 100644 index 0000000..1f26732 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.Value.html @@ -0,0 +1,15 @@ + + + + + Weight.Value Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.html new file mode 100644 index 0000000..9a4721e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.Weight.html @@ -0,0 +1,15 @@ + + + + + Weight Interface + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightMembers.html new file mode 100644 index 0000000..930c580 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightMembers.html @@ -0,0 +1,15 @@ + + + + + Weight Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightMethods.html new file mode 100644 index 0000000..98df51f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightMethods.html @@ -0,0 +1,15 @@ + + + + + Weight Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightProperties.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightProperties.html new file mode 100644 index 0000000..09a8876 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WeightProperties.html @@ -0,0 +1,15 @@ + + + + + Weight Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQuery.GetEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQuery.GetEnum.html new file mode 100644 index 0000000..a799c0a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQuery.GetEnum.html @@ -0,0 +1,15 @@ + + + + + WildcardQuery.GetEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQuery.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQuery.html new file mode 100644 index 0000000..60d89d5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQuery.html @@ -0,0 +1,15 @@ + + + + + WildcardQuery Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryConstructor.html new file mode 100644 index 0000000..331a7f8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryConstructor.html @@ -0,0 +1,15 @@ + + + + + WildcardQuery Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryMembers.html new file mode 100644 index 0000000..e96fed4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryMembers.html @@ -0,0 +1,15 @@ + + + + + WildcardQuery Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryMethods.html new file mode 100644 index 0000000..1d1309e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardQueryMethods.html @@ -0,0 +1,15 @@ + + + + + WildcardQuery Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.Close.html new file mode 100644 index 0000000..ff198b6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.Close.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.Difference.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.Difference.html new file mode 100644 index 0000000..bb1669e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.Difference.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.Difference Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.EndEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.EndEnum.html new file mode 100644 index 0000000..f754e57 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.EndEnum.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.EndEnum Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.TermCompare.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.TermCompare.html new file mode 100644 index 0000000..528bfeb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.TermCompare.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.TermCompare Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WILDCARD_CHAR.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WILDCARD_CHAR.html new file mode 100644 index 0000000..f8ca8a7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WILDCARD_CHAR.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.WILDCARD_CHAR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WILDCARD_STRING.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WILDCARD_STRING.html new file mode 100644 index 0000000..6eb7032 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WILDCARD_STRING.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.WILDCARD_STRING Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WildcardEquals.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WildcardEquals.html new file mode 100644 index 0000000..94c8136 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.WildcardEquals.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum.WildcardEquals Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.html new file mode 100644 index 0000000..fd9f049 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnum.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumConstructor.html new file mode 100644 index 0000000..0bce189 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumConstructor.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumFields.html new file mode 100644 index 0000000..660ad50 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumFields.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumMembers.html new file mode 100644 index 0000000..b1115cf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumMembers.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumMethods.html new file mode 100644 index 0000000..fddf8e0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.WildcardTermEnumMethods.html @@ -0,0 +1,15 @@ + + + + + WildcardTermEnum Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Search.html b/wwwroot/Searcher/1.4/Lucene.Net.Search.html new file mode 100644 index 0000000..f59fcba --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Search.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Search + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.SearchHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.SearchHierarchy.html new file mode 100644 index 0000000..61e2354 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.SearchHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.SearchHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.Close.html new file mode 100644 index 0000000..7030b4e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.Close.html @@ -0,0 +1,15 @@ + + + + + Directory.Close Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.CreateFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.CreateFile.html new file mode 100644 index 0000000..3bd9cf9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.CreateFile.html @@ -0,0 +1,15 @@ + + + + + Directory.CreateFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.DeleteFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.DeleteFile.html new file mode 100644 index 0000000..9b95ec4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.DeleteFile.html @@ -0,0 +1,15 @@ + + + + + Directory.DeleteFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileExists.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileExists.html new file mode 100644 index 0000000..1fdda81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileExists.html @@ -0,0 +1,15 @@ + + + + + Directory.FileExists Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileLength.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileLength.html new file mode 100644 index 0000000..dded9eb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileLength.html @@ -0,0 +1,15 @@ + + + + + Directory.FileLength Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileModified.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileModified.html new file mode 100644 index 0000000..06c8e4f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.FileModified.html @@ -0,0 +1,15 @@ + + + + + Directory.FileModified Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.List.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.List.html new file mode 100644 index 0000000..8b5fea5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.List.html @@ -0,0 +1,15 @@ + + + + + Directory.List Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.MakeLock.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.MakeLock.html new file mode 100644 index 0000000..4efdc07 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.MakeLock.html @@ -0,0 +1,15 @@ + + + + + Directory.MakeLock Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.OpenFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.OpenFile.html new file mode 100644 index 0000000..4f41f9b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.OpenFile.html @@ -0,0 +1,15 @@ + + + + + Directory.OpenFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.RenameFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.RenameFile.html new file mode 100644 index 0000000..e44cacd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.RenameFile.html @@ -0,0 +1,15 @@ + + + + + Directory.RenameFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.TouchFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.TouchFile.html new file mode 100644 index 0000000..226c969 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.TouchFile.html @@ -0,0 +1,15 @@ + + + + + Directory.TouchFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.html new file mode 100644 index 0000000..9bf37f4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Directory.html @@ -0,0 +1,15 @@ + + + + + Directory Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryConstructor.html new file mode 100644 index 0000000..0c51ca9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryConstructor.html @@ -0,0 +1,15 @@ + + + + + Directory Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryMembers.html new file mode 100644 index 0000000..a0bb232 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryMembers.html @@ -0,0 +1,15 @@ + + + + + Directory Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryMethods.html new file mode 100644 index 0000000..f7b67e3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.DirectoryMethods.html @@ -0,0 +1,15 @@ + + + + + Directory Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.Close.html new file mode 100644 index 0000000..86b8fe9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.Close.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.CreateFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.CreateFile.html new file mode 100644 index 0000000..fe58269 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.CreateFile.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.CreateFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.DeleteFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.DeleteFile.html new file mode 100644 index 0000000..1b5c94b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.DeleteFile.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.DeleteFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileExists.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileExists.html new file mode 100644 index 0000000..2b78b98 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileExists.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.FileExists Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileLength.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileLength.html new file mode 100644 index 0000000..9a3f020 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileLength.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.FileLength Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overload_1.html new file mode 100644 index 0000000..3145382 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overload_1.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.FileModified Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overload_2.html new file mode 100644 index 0000000..86cdcf9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overload_2.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.FileModified Method (FileInfo, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overloads.html new file mode 100644 index 0000000..ea4087c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.FileModified_overloads.html @@ -0,0 +1,15 @@ + + + + + FileModified Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overload_1.html new file mode 100644 index 0000000..965518e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overload_1.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.GetDirectory Method (String, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overload_2.html new file mode 100644 index 0000000..962758d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overload_2.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.GetDirectory Method (FileInfo, Boolean) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overloads.html new file mode 100644 index 0000000..d52f610 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetDirectory_overloads.html @@ -0,0 +1,15 @@ + + + + + GetDirectory Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetFile.html new file mode 100644 index 0000000..d60e96a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.GetFile.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.GetFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.LOCK_DIR.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.LOCK_DIR.html new file mode 100644 index 0000000..ee2bb0c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.LOCK_DIR.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.LOCK_DIR Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.List.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.List.html new file mode 100644 index 0000000..f256917 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.List.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.List Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.MakeLock.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.MakeLock.html new file mode 100644 index 0000000..615a97a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.MakeLock.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.MakeLock Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.OpenFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.OpenFile.html new file mode 100644 index 0000000..e23da25 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.OpenFile.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.OpenFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.RenameFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.RenameFile.html new file mode 100644 index 0000000..acc2e3a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.RenameFile.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.RenameFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.ToString.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.ToString.html new file mode 100644 index 0000000..9fe672d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.ToString.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.TouchFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.TouchFile.html new file mode 100644 index 0000000..3ac6560 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.TouchFile.html @@ -0,0 +1,15 @@ + + + + + FSDirectory.TouchFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.html new file mode 100644 index 0000000..b299e67 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectory.html @@ -0,0 +1,15 @@ + + + + + FSDirectory Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryFields.html new file mode 100644 index 0000000..6584a38 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryFields.html @@ -0,0 +1,15 @@ + + + + + FSDirectory Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryMembers.html new file mode 100644 index 0000000..f268b10 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryMembers.html @@ -0,0 +1,15 @@ + + + + + FSDirectory Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryMethods.html new file mode 100644 index 0000000..a3d12cf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSDirectoryMethods.html @@ -0,0 +1,15 @@ + + + + + FSDirectory Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.Clone.html new file mode 100644 index 0000000..2f3fa93 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.Clone.html @@ -0,0 +1,15 @@ + + + + + FSInputStream.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.Close.html new file mode 100644 index 0000000..cd9346e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.Close.html @@ -0,0 +1,15 @@ + + + + + FSInputStream.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.IsFDValid.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.IsFDValid.html new file mode 100644 index 0000000..316772c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.IsFDValid.html @@ -0,0 +1,15 @@ + + + + + FSInputStream.IsFDValid Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.ReadInternal.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.ReadInternal.html new file mode 100644 index 0000000..c50c51b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.ReadInternal.html @@ -0,0 +1,15 @@ + + + + + FSInputStream.ReadInternal Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.SeekInternal.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.SeekInternal.html new file mode 100644 index 0000000..f7e2c36 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.SeekInternal.html @@ -0,0 +1,15 @@ + + + + + FSInputStream.SeekInternal Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.html new file mode 100644 index 0000000..12acc2d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.html @@ -0,0 +1,15 @@ + + + + + FSInputStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.isClone.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.isClone.html new file mode 100644 index 0000000..cd554ed --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStream.isClone.html @@ -0,0 +1,15 @@ + + + + + FSInputStream.isClone Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamConstructor.html new file mode 100644 index 0000000..8038d21 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamConstructor.html @@ -0,0 +1,15 @@ + + + + + FSInputStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamFields.html new file mode 100644 index 0000000..2ebf790 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamFields.html @@ -0,0 +1,15 @@ + + + + + FSInputStream Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamMembers.html new file mode 100644 index 0000000..f6edf58 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamMembers.html @@ -0,0 +1,15 @@ + + + + + FSInputStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamMethods.html new file mode 100644 index 0000000..a5b83ee --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.FSInputStreamMethods.html @@ -0,0 +1,15 @@ + + + + + FSInputStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Clone.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Clone.html new file mode 100644 index 0000000..570f270 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Clone.html @@ -0,0 +1,15 @@ + + + + + InputStream.Clone Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Close.html new file mode 100644 index 0000000..69d2bf7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Close.html @@ -0,0 +1,15 @@ + + + + + InputStream.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.GetFilePointer.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.GetFilePointer.html new file mode 100644 index 0000000..71d2e91 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.GetFilePointer.html @@ -0,0 +1,15 @@ + + + + + InputStream.GetFilePointer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadByte.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadByte.html new file mode 100644 index 0000000..e2a4738 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadByte.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadByte Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadBytes.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadBytes.html new file mode 100644 index 0000000..83b5b81 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadBytes.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadBytes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadChars.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadChars.html new file mode 100644 index 0000000..abfba7f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadChars.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadChars Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadInt.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadInt.html new file mode 100644 index 0000000..df0f57a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadInt.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadInt Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadInternal.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadInternal.html new file mode 100644 index 0000000..fa256b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadInternal.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadInternal Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadLong.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadLong.html new file mode 100644 index 0000000..2a08278 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadLong.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadLong Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadString.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadString.html new file mode 100644 index 0000000..ef086c1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadString.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadVInt.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadVInt.html new file mode 100644 index 0000000..5a617e5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadVInt.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadVInt Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadVLong.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadVLong.html new file mode 100644 index 0000000..c40e57f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.ReadVLong.html @@ -0,0 +1,15 @@ + + + + + InputStream.ReadVLong Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Seek.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Seek.html new file mode 100644 index 0000000..030b6fb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.Seek.html @@ -0,0 +1,15 @@ + + + + + InputStream.Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.SeekInternal.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.SeekInternal.html new file mode 100644 index 0000000..bf2d9d3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.SeekInternal.html @@ -0,0 +1,15 @@ + + + + + InputStream.SeekInternal Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.html new file mode 100644 index 0000000..ffa9e58 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.html @@ -0,0 +1,15 @@ + + + + + InputStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.length.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.length.html new file mode 100644 index 0000000..343bb49 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStream.length.html @@ -0,0 +1,15 @@ + + + + + InputStream.Length Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamConstructor.html new file mode 100644 index 0000000..15b3a7c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamConstructor.html @@ -0,0 +1,15 @@ + + + + + InputStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamFields.html new file mode 100644 index 0000000..0629937 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamFields.html @@ -0,0 +1,15 @@ + + + + + InputStream Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamMembers.html new file mode 100644 index 0000000..049b1b2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamMembers.html @@ -0,0 +1,15 @@ + + + + + InputStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamMethods.html new file mode 100644 index 0000000..8d6b3dc --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.InputStreamMethods.html @@ -0,0 +1,15 @@ + + + + + InputStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.IsLocked.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.IsLocked.html new file mode 100644 index 0000000..b90a6a1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.IsLocked.html @@ -0,0 +1,15 @@ + + + + + Lock.IsLocked Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.LOCK_POLL_INTERVAL.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.LOCK_POLL_INTERVAL.html new file mode 100644 index 0000000..b8d2fe2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.LOCK_POLL_INTERVAL.html @@ -0,0 +1,15 @@ + + + + + Lock.LOCK_POLL_INTERVAL Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overload_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overload_1.html new file mode 100644 index 0000000..e8a3856 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overload_1.html @@ -0,0 +1,15 @@ + + + + + Lock.Obtain Method (Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overload_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overload_2.html new file mode 100644 index 0000000..1b528f5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overload_2.html @@ -0,0 +1,15 @@ + + + + + Lock.Obtain Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overloads.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overloads.html new file mode 100644 index 0000000..59c9d4a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Obtain_overloads.html @@ -0,0 +1,15 @@ + + + + + Obtain Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Release.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Release.html new file mode 100644 index 0000000..776e176 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.Release.html @@ -0,0 +1,15 @@ + + + + + Lock.Release Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.DoBody.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.DoBody.html new file mode 100644 index 0000000..084cbc6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.DoBody.html @@ -0,0 +1,15 @@ + + + + + Lock.With.DoBody Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.html new file mode 100644 index 0000000..06af894 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.html @@ -0,0 +1,15 @@ + + + + + Lock.With Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.run.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.run.html new file mode 100644 index 0000000..8f42863 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.With.run.html @@ -0,0 +1,15 @@ + + + + + Lock.With.run Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor.html new file mode 100644 index 0000000..05b7852 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor.html @@ -0,0 +1,15 @@ + + + + + Lock.With Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor1.html new file mode 100644 index 0000000..4baf783 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor1.html @@ -0,0 +1,15 @@ + + + + + Lock.With Constructor (Lock) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor2.html new file mode 100644 index 0000000..8a19049 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithConstructor2.html @@ -0,0 +1,15 @@ + + + + + Lock.With Constructor (Lock, Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithMembers.html new file mode 100644 index 0000000..d1a4f67 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithMembers.html @@ -0,0 +1,15 @@ + + + + + Lock.With Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithMethods.html new file mode 100644 index 0000000..0ba1756 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.WithMethods.html @@ -0,0 +1,15 @@ + + + + + Lock.With Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.html new file mode 100644 index 0000000..f2ff2de --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.Lock.html @@ -0,0 +1,15 @@ + + + + + Lock Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.LockConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockConstructor.html new file mode 100644 index 0000000..a1f1d02 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockConstructor.html @@ -0,0 +1,15 @@ + + + + + Lock Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.LockFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockFields.html new file mode 100644 index 0000000..bb086cb --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockFields.html @@ -0,0 +1,15 @@ + + + + + Lock Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.LockMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockMembers.html new file mode 100644 index 0000000..7c64f44 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockMembers.html @@ -0,0 +1,15 @@ + + + + + Lock Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.LockMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockMethods.html new file mode 100644 index 0000000..4c3df4e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.LockMethods.html @@ -0,0 +1,15 @@ + + + + + Lock Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Close.html new file mode 100644 index 0000000..3ab34c1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Close.html @@ -0,0 +1,15 @@ + + + + + OutputStream.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Flush.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Flush.html new file mode 100644 index 0000000..823631c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Flush.html @@ -0,0 +1,15 @@ + + + + + OutputStream.Flush Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.FlushBuffer.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.FlushBuffer.html new file mode 100644 index 0000000..2194f8a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.FlushBuffer.html @@ -0,0 +1,15 @@ + + + + + OutputStream.FlushBuffer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.GetFilePointer.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.GetFilePointer.html new file mode 100644 index 0000000..ef6db19 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.GetFilePointer.html @@ -0,0 +1,15 @@ + + + + + OutputStream.GetFilePointer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Length.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Length.html new file mode 100644 index 0000000..0775298 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Length.html @@ -0,0 +1,15 @@ + + + + + OutputStream.Length Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Seek.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Seek.html new file mode 100644 index 0000000..18877d7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.Seek.html @@ -0,0 +1,15 @@ + + + + + OutputStream.Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteByte.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteByte.html new file mode 100644 index 0000000..93727c7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteByte.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteByte Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteBytes.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteBytes.html new file mode 100644 index 0000000..eaf5ff9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteBytes.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteBytes Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteChars.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteChars.html new file mode 100644 index 0000000..9fbca1f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteChars.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteChars Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteInt.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteInt.html new file mode 100644 index 0000000..5854920 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteInt.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteInt Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteLong.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteLong.html new file mode 100644 index 0000000..ae55f8b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteLong.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteLong Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteString.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteString.html new file mode 100644 index 0000000..998d99c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteString.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteVInt.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteVInt.html new file mode 100644 index 0000000..be75fac --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteVInt.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteVInt Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteVLong.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteVLong.html new file mode 100644 index 0000000..f28a150 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.WriteVLong.html @@ -0,0 +1,15 @@ + + + + + OutputStream.WriteVLong Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.html new file mode 100644 index 0000000..ef01bde --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStream.html @@ -0,0 +1,15 @@ + + + + + OutputStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamConstructor.html new file mode 100644 index 0000000..bd29b4a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamConstructor.html @@ -0,0 +1,15 @@ + + + + + OutputStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamMembers.html new file mode 100644 index 0000000..188ba6f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamMembers.html @@ -0,0 +1,15 @@ + + + + + OutputStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamMethods.html new file mode 100644 index 0000000..b2dcbc7 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.OutputStreamMethods.html @@ -0,0 +1,15 @@ + + + + + OutputStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.Close.html new file mode 100644 index 0000000..6e9f85b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.Close.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.CreateFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.CreateFile.html new file mode 100644 index 0000000..474332d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.CreateFile.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.CreateFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.DeleteFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.DeleteFile.html new file mode 100644 index 0000000..8d3c60b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.DeleteFile.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.DeleteFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileExists.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileExists.html new file mode 100644 index 0000000..3b45394 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileExists.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.FileExists Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileLength.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileLength.html new file mode 100644 index 0000000..7a16498 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileLength.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.FileLength Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileModified.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileModified.html new file mode 100644 index 0000000..60b00ab --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.FileModified.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.FileModified Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.List.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.List.html new file mode 100644 index 0000000..8e7f03f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.List.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.List Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.MakeLock.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.MakeLock.html new file mode 100644 index 0000000..e65fa10 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.MakeLock.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.MakeLock Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.OpenFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.OpenFile.html new file mode 100644 index 0000000..cd6a68d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.OpenFile.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.OpenFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.RenameFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.RenameFile.html new file mode 100644 index 0000000..929d1c2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.RenameFile.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.RenameFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.TouchFile.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.TouchFile.html new file mode 100644 index 0000000..4772358 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.TouchFile.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory.TouchFile Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.html new file mode 100644 index 0000000..0cf95b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectory.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor.html new file mode 100644 index 0000000..6e50273 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor1.html new file mode 100644 index 0000000..123ae75 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor1.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor2.html new file mode 100644 index 0000000..54b12ff --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor2.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Constructor (Directory) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor3.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor3.html new file mode 100644 index 0000000..5c0723f --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor3.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Constructor (FileInfo) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor4.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor4.html new file mode 100644 index 0000000..d923622 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryConstructor4.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryMembers.html new file mode 100644 index 0000000..e27c4f1 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryMembers.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryMethods.html new file mode 100644 index 0000000..4666e21 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMDirectoryMethods.html @@ -0,0 +1,15 @@ + + + + + RAMDirectory Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Close.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Close.html new file mode 100644 index 0000000..2e9f7c4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Close.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream.Close Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.FlushBuffer.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.FlushBuffer.html new file mode 100644 index 0000000..3373b14 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.FlushBuffer.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream.FlushBuffer Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Length.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Length.html new file mode 100644 index 0000000..e1b208a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Length.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream.Length Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Leset.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Leset.html new file mode 100644 index 0000000..aa94440 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Leset.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream.Leset Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Seek.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Seek.html new file mode 100644 index 0000000..7a35dc9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.Seek.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream.Seek Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.WriteTo.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.WriteTo.html new file mode 100644 index 0000000..523bea5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.WriteTo.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream.WriteTo Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.html new file mode 100644 index 0000000..8f7ce61 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStream.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamConstructor1.html new file mode 100644 index 0000000..9bb6860 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamConstructor1.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamMembers.html new file mode 100644 index 0000000..df43b9c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamMembers.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamMethods.html new file mode 100644 index 0000000..db6b281 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.RAMOutputStreamMethods.html @@ -0,0 +1,15 @@ + + + + + RAMOutputStream Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Store.html b/wwwroot/Searcher/1.4/Lucene.Net.Store.html new file mode 100644 index 0000000..4e69042 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Store.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Store + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.StoreHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.StoreHierarchy.html new file mode 100644 index 0000000..d440e94 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.StoreHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.StoreHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Clear.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Clear.html new file mode 100644 index 0000000..6f00531 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Clear.html @@ -0,0 +1,15 @@ + + + + + BitVector.Clear Method + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Count.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Count.html new file mode 100644 index 0000000..55190b3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Count.html @@ -0,0 +1,15 @@ + + + + + BitVector.Count Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Get.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Get.html new file mode 100644 index 0000000..8762e11 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Get.html @@ -0,0 +1,15 @@ + + + + + BitVector.Get Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Set.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Set.html new file mode 100644 index 0000000..d5940f9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Set.html @@ -0,0 +1,15 @@ + + + + + BitVector.Set Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Size.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Size.html new file mode 100644 index 0000000..d965890 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Size.html @@ -0,0 +1,15 @@ + + + + + BitVector.Size Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Write.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Write.html new file mode 100644 index 0000000..f51c3f9 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.Write.html @@ -0,0 +1,15 @@ + + + + + BitVector.Write Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.html new file mode 100644 index 0000000..99368b8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVector.html @@ -0,0 +1,15 @@ + + + + + BitVector Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor.html new file mode 100644 index 0000000..fd02be2 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor.html @@ -0,0 +1,15 @@ + + + + + BitVector Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor1.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor1.html new file mode 100644 index 0000000..12f8971 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor1.html @@ -0,0 +1,15 @@ + + + + + BitVector Constructor (Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor2.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor2.html new file mode 100644 index 0000000..7ffccb4 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorConstructor2.html @@ -0,0 +1,15 @@ + + + + + BitVector Constructor (Directory, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorMembers.html new file mode 100644 index 0000000..3f58944 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorMembers.html @@ -0,0 +1,15 @@ + + + + + BitVector Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorMethods.html new file mode 100644 index 0000000..13258a5 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.BitVectorMethods.html @@ -0,0 +1,15 @@ + + + + + BitVector Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_1.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_1.html new file mode 100644 index 0000000..e130dbf --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_1.html @@ -0,0 +1,15 @@ + + + + + Constants.JAVA_1_1 Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_2.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_2.html new file mode 100644 index 0000000..6ff853a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_2.html @@ -0,0 +1,15 @@ + + + + + Constants.JAVA_1_2 Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_3.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_3.html new file mode 100644 index 0000000..b3a2663 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_1_3.html @@ -0,0 +1,15 @@ + + + + + Constants.JAVA_1_3 Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_VERSION.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_VERSION.html new file mode 100644 index 0000000..4ed2986 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.JAVA_VERSION.html @@ -0,0 +1,15 @@ + + + + + Constants.JAVA_VERSION Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.LINUX.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.LINUX.html new file mode 100644 index 0000000..2f47acd --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.LINUX.html @@ -0,0 +1,15 @@ + + + + + Constants.LINUX Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.OS_NAME.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.OS_NAME.html new file mode 100644 index 0000000..49f847b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.OS_NAME.html @@ -0,0 +1,15 @@ + + + + + Constants.OS_NAME Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.SUN_OS.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.SUN_OS.html new file mode 100644 index 0000000..8642c46 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.SUN_OS.html @@ -0,0 +1,15 @@ + + + + + Constants.SUN_OS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.WINDOWS.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.WINDOWS.html new file mode 100644 index 0000000..4f0fd3b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.WINDOWS.html @@ -0,0 +1,15 @@ + + + + + Constants.WINDOWS Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.html new file mode 100644 index 0000000..1491340 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.Constants.html @@ -0,0 +1,15 @@ + + + + + Constants Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.ConstantsFields.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.ConstantsFields.html new file mode 100644 index 0000000..0c990a0 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.ConstantsFields.html @@ -0,0 +1,15 @@ + + + + + Constants Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.ConstantsMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.ConstantsMembers.html new file mode 100644 index 0000000..4c898df --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.ConstantsMembers.html @@ -0,0 +1,15 @@ + + + + + Constants Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.AdjustTop.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.AdjustTop.html new file mode 100644 index 0000000..9affbae --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.AdjustTop.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.AdjustTop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Clear.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Clear.html new file mode 100644 index 0000000..02e69f8 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Clear.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Clear Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Initialize.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Initialize.html new file mode 100644 index 0000000..a0c5ba6 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Initialize.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Initialize Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Insert.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Insert.html new file mode 100644 index 0000000..d37c1d3 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Insert.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Insert Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.LessThan.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.LessThan.html new file mode 100644 index 0000000..2b7612e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.LessThan.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.LessThan Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Pop.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Pop.html new file mode 100644 index 0000000..28a584a --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Pop.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Pop Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Put.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Put.html new file mode 100644 index 0000000..487696e --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Put.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Put Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Size.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Size.html new file mode 100644 index 0000000..e4b227c --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Size.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Size Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Top.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Top.html new file mode 100644 index 0000000..6aedf38 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.Top.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue.Top Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.html new file mode 100644 index 0000000..9d0c814 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueue.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueConstructor.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueConstructor.html new file mode 100644 index 0000000..5f0b724 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueConstructor.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueMembers.html new file mode 100644 index 0000000..00e2746 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueMembers.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueMethods.html new file mode 100644 index 0000000..327e60b --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.PriorityQueueMethods.html @@ -0,0 +1,15 @@ + + + + + PriorityQueue Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelper.StringDifference.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelper.StringDifference.html new file mode 100644 index 0000000..6075617 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelper.StringDifference.html @@ -0,0 +1,15 @@ + + + + + StringHelper.StringDifference Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelper.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelper.html new file mode 100644 index 0000000..b833c3d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelper.html @@ -0,0 +1,15 @@ + + + + + StringHelper Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelperMembers.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelperMembers.html new file mode 100644 index 0000000..3123492 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelperMembers.html @@ -0,0 +1,15 @@ + + + + + StringHelper Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelperMethods.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelperMethods.html new file mode 100644 index 0000000..a89c44d --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.StringHelperMethods.html @@ -0,0 +1,15 @@ + + + + + StringHelper Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.Util.html b/wwwroot/Searcher/1.4/Lucene.Net.Util.html new file mode 100644 index 0000000..ffb7e11 --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.Util.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.Util + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/Lucene.Net.UtilHierarchy.html b/wwwroot/Searcher/1.4/Lucene.Net.UtilHierarchy.html new file mode 100644 index 0000000..bcee5fa --- /dev/null +++ b/wwwroot/Searcher/1.4/Lucene.Net.UtilHierarchy.html @@ -0,0 +1,15 @@ + + + + + Lucene.Net.UtilHierarchy + + + + + + +
+
+
DotLucene 1.4 API Documentation
diff --git a/wwwroot/Searcher/1.4/MSDN.css b/wwwroot/Searcher/1.4/MSDN.css new file mode 100644 index 0000000..b2005c3 --- /dev/null +++ b/wwwroot/Searcher/1.4/MSDN.css @@ -0,0 +1,15 @@ +body /* This body tag requires the use of one of the sets of banner and/or text div ids */ + { + margin: 0px 0px 0px 0px; + padding: 0px 0px 0px 0px; + background: #ffffff; + color: #000000; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 70%; + width: 100%; + /*overflow: expression('hidden');*/ + } +div#scrollyes /* Allows topic to scroll with correct margins. Cannot be used with running head banner */ + { /* Must immediately follow . */ + padding: 2px 15px 2px 22px; + width: 100%; diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_1.html b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_1.html new file mode 100644 index 0000000..0d1d719 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_1.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings.Get Method (String, Int32) + + + + + +
+
+
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_2.html b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_2.html new file mode 100644 index 0000000..a2ab534 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_2.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings.Get Method (String, Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_3.html b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_3.html new file mode 100644 index 0000000..9d54ef4 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overload_3.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings.Get Method (String, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overloads.html b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overloads.html new file mode 100644 index 0000000..0189bdd --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettings.Get_overloads.html @@ -0,0 +1,15 @@ + + + + + Get Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettings.html b/wwwroot/Searcher/1.4/SupportClass.AppSettings.html new file mode 100644 index 0000000..f366f2c --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettings.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettingsConstructor.html b/wwwroot/Searcher/1.4/SupportClass.AppSettingsConstructor.html new file mode 100644 index 0000000..aa63003 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettingsConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettingsMembers.html b/wwwroot/Searcher/1.4/SupportClass.AppSettingsMembers.html new file mode 100644 index 0000000..2ff30f3 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettingsMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.AppSettingsMethods.html b/wwwroot/Searcher/1.4/SupportClass.AppSettingsMethods.html new file mode 100644 index 0000000..fea268b --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.AppSettingsMethods.html @@ -0,0 +1,15 @@ + + + + + SupportClass.AppSettings Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Character.ForDigit.html b/wwwroot/Searcher/1.4/SupportClass.Character.ForDigit.html new file mode 100644 index 0000000..b2109ab --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Character.ForDigit.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character.ForDigit Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Character.MAX_RADIX.html b/wwwroot/Searcher/1.4/SupportClass.Character.MAX_RADIX.html new file mode 100644 index 0000000..40ef022 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Character.MAX_RADIX.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character.MAX_RADIX Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Character.MIN_RADIX.html b/wwwroot/Searcher/1.4/SupportClass.Character.MIN_RADIX.html new file mode 100644 index 0000000..d8936f4 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Character.MIN_RADIX.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character.MIN_RADIX Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Character.html b/wwwroot/Searcher/1.4/SupportClass.Character.html new file mode 100644 index 0000000..9b8b6be --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Character.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.CharacterConstructor.html b/wwwroot/Searcher/1.4/SupportClass.CharacterConstructor.html new file mode 100644 index 0000000..f0f7b91 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.CharacterConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.CharacterMembers.html b/wwwroot/Searcher/1.4/SupportClass.CharacterMembers.html new file mode 100644 index 0000000..165fd5e --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.CharacterMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.CharacterMethods.html b/wwwroot/Searcher/1.4/SupportClass.CharacterMethods.html new file mode 100644 index 0000000..3d2c2d0 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.CharacterMethods.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.CharacterProperties.html b/wwwroot/Searcher/1.4/SupportClass.CharacterProperties.html new file mode 100644 index 0000000..902f7b6 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.CharacterProperties.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Character Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Date.GetTime.html b/wwwroot/Searcher/1.4/SupportClass.Date.GetTime.html new file mode 100644 index 0000000..3f66719 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Date.GetTime.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Date.GetTime Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Date.html b/wwwroot/Searcher/1.4/SupportClass.Date.html new file mode 100644 index 0000000..7cc98a6 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Date.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Date Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.DateConstructor.html b/wwwroot/Searcher/1.4/SupportClass.DateConstructor.html new file mode 100644 index 0000000..c763501 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.DateConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Date Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.DateMembers.html b/wwwroot/Searcher/1.4/SupportClass.DateMembers.html new file mode 100644 index 0000000..9ab3e44 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.DateMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Date Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.DateMethods.html b/wwwroot/Searcher/1.4/SupportClass.DateMethods.html new file mode 100644 index 0000000..a404881 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.DateMethods.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Date Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.MAX_RADIX.html b/wwwroot/Searcher/1.4/SupportClass.Number.MAX_RADIX.html new file mode 100644 index 0000000..8498c94 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.MAX_RADIX.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number.MAX_RADIX Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.MIN_RADIX.html b/wwwroot/Searcher/1.4/SupportClass.Number.MIN_RADIX.html new file mode 100644 index 0000000..1fee245 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.MIN_RADIX.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number.MIN_RADIX Field + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.Parse.html b/wwwroot/Searcher/1.4/SupportClass.Number.Parse.html new file mode 100644 index 0000000..cbaf1cb --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.Parse.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number.Parse Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overload_2.html b/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overload_2.html new file mode 100644 index 0000000..cb5a2a1 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overload_2.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number.ToString Method (Single) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overload_3.html b/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overload_3.html new file mode 100644 index 0000000..b96db8a --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overload_3.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number.ToString Method (Int64, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overloads.html b/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overloads.html new file mode 100644 index 0000000..277ab80 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.ToString_overloads.html @@ -0,0 +1,15 @@ + + + + + ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Number.html b/wwwroot/Searcher/1.4/SupportClass.Number.html new file mode 100644 index 0000000..aaaad36 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Number.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.NumberConstructor.html b/wwwroot/Searcher/1.4/SupportClass.NumberConstructor.html new file mode 100644 index 0000000..ec3e65a --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.NumberConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.NumberFields.html b/wwwroot/Searcher/1.4/SupportClass.NumberFields.html new file mode 100644 index 0000000..fc69c40 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.NumberFields.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number Fields + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.NumberMembers.html b/wwwroot/Searcher/1.4/SupportClass.NumberMembers.html new file mode 100644 index 0000000..4e4e968 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.NumberMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.NumberMethods.html b/wwwroot/Searcher/1.4/SupportClass.NumberMethods.html new file mode 100644 index 0000000..6611574 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.NumberMethods.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Number Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_1.html b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_1.html new file mode 100644 index 0000000..f0c43ff --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_1.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single.Parse Method (String, NumberStyles, IFormatProvider) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_2.html b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_2.html new file mode 100644 index 0000000..87d3ba9 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_2.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single.Parse Method (String, IFormatProvider) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_3.html b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_3.html new file mode 100644 index 0000000..84fa77e --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_3.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single.Parse Method (String, NumberStyles) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_4.html b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_4.html new file mode 100644 index 0000000..18a51d9 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overload_4.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single.Parse Method (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overloads.html b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overloads.html new file mode 100644 index 0000000..42f68b9 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Single.Parse_overloads.html @@ -0,0 +1,15 @@ + + + + + Parse Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.Single.html b/wwwroot/Searcher/1.4/SupportClass.Single.html new file mode 100644 index 0000000..f75cb66 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.Single.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.SingleConstructor.html b/wwwroot/Searcher/1.4/SupportClass.SingleConstructor.html new file mode 100644 index 0000000..98754d8 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.SingleConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.SingleMembers.html b/wwwroot/Searcher/1.4/SupportClass.SingleMembers.html new file mode 100644 index 0000000..eac2b84 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.SingleMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.SingleMethods.html b/wwwroot/Searcher/1.4/SupportClass.SingleMethods.html new file mode 100644 index 0000000..f05da40 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.SingleMethods.html @@ -0,0 +1,15 @@ + + + + + SupportClass.Single Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overload_1.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overload_1.html new file mode 100644 index 0000000..58242f8 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overload_1.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Abort Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overload_2.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overload_2.html new file mode 100644 index 0000000..e5c4068 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overload_2.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Abort Method (Object) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overloads.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overloads.html new file mode 100644 index 0000000..10f7b4b --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Abort_overloads.html @@ -0,0 +1,15 @@ + + + + + Abort Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Current.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Current.html new file mode 100644 index 0000000..a27d581 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Current.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Current Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Instance.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Instance.html new file mode 100644 index 0000000..a30dcb5 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Instance.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Instance Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Interrupt.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Interrupt.html new file mode 100644 index 0000000..9f1c9c0 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Interrupt.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Interrupt Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.IsAlive.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.IsAlive.html new file mode 100644 index 0000000..527ba72 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.IsAlive.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.IsAlive Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.IsBackground.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.IsBackground.html new file mode 100644 index 0000000..56c7dcc --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.IsBackground.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.IsBackground Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_1.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_1.html new file mode 100644 index 0000000..582aef2 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_1.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Join Method () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_2.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_2.html new file mode 100644 index 0000000..80cfc0c --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_2.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Join Method (Int64) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_3.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_3.html new file mode 100644 index 0000000..c8a84fb --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overload_3.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Join Method (Int64, Int32) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overloads.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overloads.html new file mode 100644 index 0000000..b2c53de --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Join_overloads.html @@ -0,0 +1,15 @@ + + + + + Join Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Name.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Name.html new file mode 100644 index 0000000..73ee1b5 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Name.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Name Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Priority.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Priority.html new file mode 100644 index 0000000..80c0f5f --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Priority.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Priority Property + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Resume.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Resume.html new file mode 100644 index 0000000..765b046 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Resume.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Resume Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Run.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Run.html new file mode 100644 index 0000000..8c9e21d --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Run.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Run Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Start.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Start.html new file mode 100644 index 0000000..136e2a2 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Start.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Start Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Suspend.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Suspend.html new file mode 100644 index 0000000..57ef698 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.Suspend.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.Suspend Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.ToString.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.ToString.html new file mode 100644 index 0000000..e825538 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.ToString.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass.ToString Method + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClass.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.html new file mode 100644 index 0000000..3b9ac09 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClass.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor.html new file mode 100644 index 0000000..df0ad50 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor1.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor1.html new file mode 100644 index 0000000..aa364df --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor1.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Constructor () + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor2.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor2.html new file mode 100644 index 0000000..d32a097 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor2.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Constructor (String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor3.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor3.html new file mode 100644 index 0000000..6caaf68 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor3.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Constructor (ThreadStart) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor4.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor4.html new file mode 100644 index 0000000..baf6a97 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassConstructor4.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Constructor (ThreadStart, String) + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassMembers.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassMembers.html new file mode 100644 index 0000000..acb7566 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassMethods.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassMethods.html new file mode 100644 index 0000000..9526e6e --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassMethods.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Methods + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.ThreadClassProperties.html b/wwwroot/Searcher/1.4/SupportClass.ThreadClassProperties.html new file mode 100644 index 0000000..599fbc5 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.ThreadClassProperties.html @@ -0,0 +1,15 @@ + + + + + SupportClass.ThreadClass Properties + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClass.html b/wwwroot/Searcher/1.4/SupportClass.html new file mode 100644 index 0000000..af895ca --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClass.html @@ -0,0 +1,15 @@ + + + + + SupportClass Class + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClassConstructor.html b/wwwroot/Searcher/1.4/SupportClassConstructor.html new file mode 100644 index 0000000..604d897 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClassConstructor.html @@ -0,0 +1,15 @@ + + + + + SupportClass Constructor + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/SupportClassMembers.html b/wwwroot/Searcher/1.4/SupportClassMembers.html new file mode 100644 index 0000000..3173685 --- /dev/null +++ b/wwwroot/Searcher/1.4/SupportClassMembers.html @@ -0,0 +1,15 @@ + + + + + SupportClass Members + + + + + +
+
+
DotLucene 1.4 API Documentation
+ + diff --git a/wwwroot/Searcher/1.4/contents.html b/wwwroot/Searcher/1.4/contents.html new file mode 100644 index 0000000..c69d537 --- /dev/null +++ b/wwwroot/Searcher/1.4/contents.html @@ -0,0 +1,15 @@ + + + Contents + + + + + + +
sync toc
+
+
+
+ diff --git a/wwwroot/Searcher/1.4/index.html b/wwwroot/Searcher/1.4/index.html new file mode 100644 index 0000000..e22f14c --- /dev/null +++ b/wwwroot/Searcher/1.4/index.html @@ -0,0 +1,15 @@ + + + + + Documentation + + + + diff --git a/wwwroot/Searcher/1.4/tree.css b/wwwroot/Searcher/1.4/tree.css new file mode 100644 index 0000000..2500fd5 --- /dev/null +++ b/wwwroot/Searcher/1.4/tree.css @@ -0,0 +1,15 @@ +.treeDiv +{ + font-family: verdana; + font-size: 70.5%; + font-weight: normal; + background-color: #f1f1f1; + color: Black; + overflow: auto; + margin: 0px 0px 0px 0px; + padding: 0px 0px 0px 0px; +} + +.treeNode +{ + white-space: nowrap; diff --git a/wwwroot/Searcher/1.4/tree.js b/wwwroot/Searcher/1.4/tree.js new file mode 100644 index 0000000..a50ab60 --- /dev/null +++ b/wwwroot/Searcher/1.4/tree.js @@ -0,0 +1,15 @@ +/* Copyright � 2002 Jean-Claude Manoli [jc@manoli.net] + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the author(s) be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software + * in a product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * diff --git a/wwwroot/Searcher/AssemblyInfo.cs b/wwwroot/Searcher/AssemblyInfo.cs new file mode 100644 index 0000000..b80359f --- /dev/null +++ b/wwwroot/Searcher/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] diff --git a/wwwroot/Searcher/Global.asax b/wwwroot/Searcher/Global.asax new file mode 100644 index 0000000..fe48148 --- /dev/null +++ b/wwwroot/Searcher/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="Searcher.Global" %> diff --git a/wwwroot/Searcher/Global.asax.cs b/wwwroot/Searcher/Global.asax.cs new file mode 100644 index 0000000..f767294 --- /dev/null +++ b/wwwroot/Searcher/Global.asax.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Web; +using System.Web.SessionState; + +namespace Searcher +{ + /// + /// Summary description for Global. + /// + public class Global : System.Web.HttpApplication + { + /// + /// Required designer variable. diff --git a/wwwroot/Searcher/Searcher.csproj b/wwwroot/Searcher/Searcher.csproj new file mode 100644 index 0000000..a4acb0b --- /dev/null +++ b/wwwroot/Searcher/Searcher.csproj @@ -0,0 +1,15 @@ + + + 8.0.50727 + 2.0 + {3EF96343-4DEB-4D86-9418-04515BBCEFC0} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Debug + AnyCPU + + + + + Searcher + + diff --git a/wwwroot/Searcher/Web.config b/wwwroot/Searcher/Web.config new file mode 100644 index 0000000..7eb66a7 --- /dev/null +++ b/wwwroot/Searcher/Web.config @@ -0,0 +1,15 @@ + + + + + + + diff --git a/wwwroot/Searcher/_index.html b/wwwroot/Searcher/_index.html new file mode 100644 index 0000000..8002cac --- /dev/null +++ b/wwwroot/Searcher/_index.html @@ -0,0 +1,15 @@ + + + + DotLucene 1.4 API Documentation Search + + + +

 

+

 

+

 

+

DotLucene Demo

+

Search DotLucene 1.4 API Documentation

+
+

 

+ diff --git a/wwwroot/Searcher/default.aspx b/wwwroot/Searcher/default.aspx new file mode 100644 index 0000000..a6fa162 --- /dev/null +++ b/wwwroot/Searcher/default.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="True" Inherits="Searcher.Search" enableViewState="False"%> + + + + DotLucene Search Demo|-lucene.51aspx.com + + + + + + + +
+
DotLucene 1.4 API Documentation
+ diff --git a/wwwroot/Searcher/default.aspx.cs b/wwwroot/Searcher/default.aspx.cs new file mode 100644 index 0000000..26f0815 --- /dev/null +++ b/wwwroot/Searcher/default.aspx.cs @@ -0,0 +1,15 @@ +/* + * Copyright 2005 dotlucene.net + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.51aspx.com/CV/DotLucene + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/wwwroot/Searcher/default.aspx.designer.cs b/wwwroot/Searcher/default.aspx.designer.cs new file mode 100644 index 0000000..5b62e31 --- /dev/null +++ b/wwwroot/Searcher/default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// �˴����ɹ������ɡ� +// ����ʱ�汾:2.0.50727.3082 +// +// �Դ��ļ��ĸ��Ŀ��ܻᵼ�²���ȷ����Ϊ��������� +// �������ɴ��룬��Щ���Ľ��ᶪʧ�� +// +//------------------------------------------------------------------------------ + +namespace Searcher { + + + /// + /// Search �ࡣ diff --git a/wwwroot/Searcher/main.css b/wwwroot/Searcher/main.css new file mode 100644 index 0000000..4658c46 --- /dev/null +++ b/wwwroot/Searcher/main.css @@ -0,0 +1,15 @@ +P { + FONT-FAMILY: Arial, Helvetica, sans-serif +} +h1 { + font-family: Arial, Helvetica, sans-serif; +} +.header { + PADDING-RIGHT: 2px; + BORDER-TOP: #191970 1px solid; + padding: 3px; + FONT-SIZE: 13pt; + BACKGROUND-COLOR: #e5ecf9; + width: 100%; + margin-top: 10px; +} diff --git a/wwwroot/Searcher/obj/Searcher.csproj.FileListAbsolute.txt b/wwwroot/Searcher/obj/Searcher.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a8cd946 --- /dev/null +++ b/wwwroot/Searcher/obj/Searcher.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Searcher.dll +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Searcher.pdb +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Highlighter.dll +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Lucene.Net.dll +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\obj\Debug\ResolveAssemblyReference.cache +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\obj\Debug\Searcher.dll +F:\work\51aspx\reference\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\obj\Debug\Searcher.pdb +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Searcher.dll +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Searcher.pdb +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Highlighter.dll +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Lucene.Net.dll +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\obj\Debug\ResolveAssemblyReference.cache +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\obj\Debug\Searcher.dll +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\obj\Debug\Searcher.pdb +E:\downcode\DotLuceneAPISearchDemo-1.1\wwwroot\Searcher\bin\Indexer.exe