Welcome to mirror list, hosted at ThFree Co, Russian Federation.

monodoc.cs « v4.5.2 « src - github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32ac03d1083b801c299db2d0f54a0899cc9ed2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

[assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(258))]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
namespace Lucene.Net
{
    public sealed partial class LucenePackage
    {
        internal LucenePackage() { }
    }
}
namespace Lucene.Net.Analysis
{
    public abstract partial class Analyzer : System.IDisposable
    {
        [System.ObsoleteAttribute]
        protected internal bool overridesTokenStreamMethod;
        protected Analyzer() { }
        protected internal virtual object PreviousTokenStream { get { throw null; } set { } }
        public void Close() { }
        public virtual void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public virtual int GetOffsetGap(Lucene.Net.Documents.IFieldable field) { throw null; }
        public virtual int GetPositionIncrementGap(string fieldName) { throw null; }
        public virtual Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        [System.ObsoleteAttribute("This is only present to preserve back-compat of classes that subclass a core analyzer and override tokenStream but not reusableTokenStream ")]
        protected internal virtual void SetOverridesTokenStreamMethod<TClass>() where TClass : Lucene.Net.Analysis.Analyzer { }
        public abstract Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader);
    }
    public sealed partial class ASCIIFoldingFilter : Lucene.Net.Analysis.TokenFilter
    {
        public ASCIIFoldingFilter(Lucene.Net.Analysis.TokenStream input) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public void FoldToASCII(char[] input, int length) { }
        public override bool IncrementToken() { throw null; }
    }
    public abstract partial class BaseCharFilter : Lucene.Net.Analysis.CharFilter
    {
        protected BaseCharFilter(Lucene.Net.Analysis.CharStream @in) : base (default(Lucene.Net.Analysis.CharStream)) { }
        protected int LastCumulativeDiff { get { throw null; } }
        protected void AddOffCorrectMap(int off, int cumulativeDiff) { }
        protected internal override int Correct(int currentOff) { throw null; }
        [System.ObsoleteAttribute("Use LastCumulativeDiff property instead")]
        protected int GetLastCumulativeDiff() { throw null; }
    }
    public sealed partial class CachingTokenFilter : Lucene.Net.Analysis.TokenFilter
    {
        public CachingTokenFilter(Lucene.Net.Analysis.TokenStream input) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public override void End() { }
        public override bool IncrementToken() { throw null; }
        public override void Reset() { }
    }
    public partial class CharArraySet : System.Collections.Generic.ICollection<string>, System.Collections.Generic.IEnumerable<string>, System.Collections.Generic.ISet<string>, System.Collections.IEnumerable
    {
        public static Lucene.Net.Analysis.CharArraySet EMPTY_SET;
        public CharArraySet(System.Collections.Generic.IEnumerable<object> c, bool ignoreCase) { }
        public CharArraySet(System.Collections.Generic.IEnumerable<string> c, bool ignoreCase) { }
        public CharArraySet(int startSize, bool ignoreCase) { }
        public int Count { get { throw null; } }
        public bool IsEmpty { get { throw null; } }
        public bool IsReadOnly { get { throw null; } }
        public bool Add(char[] text) { throw null; }
        public bool Add(object item) { throw null; }
        public bool Add(string text) { throw null; }
        public void AddAll(System.Collections.Generic.IEnumerable<string> coll) { }
        public void Clear() { }
        public virtual bool Contains(char[] text, int off, int len) { throw null; }
        public bool Contains(object item) { throw null; }
        public virtual bool Contains(string text) { throw null; }
        public static Lucene.Net.Analysis.CharArraySet Copy<T>(System.Collections.Generic.ISet<T> @set) { throw null; }
        public System.Collections.Generic.IEnumerator<string> GetEnumerator() { throw null; }
        public void RemoveAll(System.Collections.Generic.ICollection<string> c) { }
        public void RetainAll(System.Collections.Generic.ICollection<string> c) { }
        public System.Collections.Generic.IEnumerator<string> StringEnumerator() { throw null; }
        void System.Collections.Generic.ICollection<string>.Add(string item) { }
        void System.Collections.Generic.ICollection<string>.CopyTo(string[] array, int arrayIndex) { }
        bool System.Collections.Generic.ICollection<string>.Remove(string item) { throw null; }
        void System.Collections.Generic.ISet<string>.ExceptWith(System.Collections.Generic.IEnumerable<string> other) { }
        void System.Collections.Generic.ISet<string>.IntersectWith(System.Collections.Generic.IEnumerable<string> other) { }
        bool System.Collections.Generic.ISet<string>.IsProperSubsetOf(System.Collections.Generic.IEnumerable<string> other) { throw null; }
        bool System.Collections.Generic.ISet<string>.IsProperSupersetOf(System.Collections.Generic.IEnumerable<string> other) { throw null; }
        bool System.Collections.Generic.ISet<string>.IsSubsetOf(System.Collections.Generic.IEnumerable<string> other) { throw null; }
        bool System.Collections.Generic.ISet<string>.IsSupersetOf(System.Collections.Generic.IEnumerable<string> other) { throw null; }
        bool System.Collections.Generic.ISet<string>.Overlaps(System.Collections.Generic.IEnumerable<string> other) { throw null; }
        bool System.Collections.Generic.ISet<string>.SetEquals(System.Collections.Generic.IEnumerable<string> other) { throw null; }
        void System.Collections.Generic.ISet<string>.SymmetricExceptWith(System.Collections.Generic.IEnumerable<string> other) { }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        public void UnionWith(System.Collections.Generic.IEnumerable<string> other) { }
        public static Lucene.Net.Analysis.CharArraySet UnmodifiableSet(Lucene.Net.Analysis.CharArraySet @set) { throw null; }
        public partial class CharArraySetEnumerator : System.Collections.Generic.IEnumerator<string>, System.Collections.IEnumerator, System.IDisposable
        {
            protected internal CharArraySetEnumerator(Lucene.Net.Analysis.CharArraySet creator) { }
            public string Current { get { throw null; } }
            object System.Collections.IEnumerator.Current { get { throw null; } }
            public void Dispose() { }
            public bool MoveNext() { throw null; }
            public char[] NextCharArray() { throw null; }
            public void Reset() { }
        }
    }
    public abstract partial class CharFilter : Lucene.Net.Analysis.CharStream
    {
        protected internal Lucene.Net.Analysis.CharStream input;
        protected internal CharFilter(Lucene.Net.Analysis.CharStream in_Renamed) : base (default(System.IO.StreamReader)) { }
        protected internal virtual int Correct(int currentOff) { throw null; }
        public override int CorrectOffset(int currentOff) { throw null; }
        protected override void Dispose(bool disposing) { }
        public void Mark(int readAheadLimit) { }
        public bool MarkSupported() { throw null; }
        public override int Read(char[] cbuf, int off, int len) { throw null; }
        public void Reset() { }
    }
    public sealed partial class CharReader : Lucene.Net.Analysis.CharStream
    {
        internal CharReader() : base (default(System.IO.StreamReader)) { }
        public override int CorrectOffset(int currentOff) { throw null; }
        protected override void Dispose(bool disposing) { }
        public static Lucene.Net.Analysis.CharStream Get(System.IO.TextReader input) { throw null; }
        public void Mark(int readAheadLimit) { }
        public bool MarkSupported() { throw null; }
        public override int Read(char[] cbuf, int off, int len) { throw null; }
        public void Reset() { }
    }
    public abstract partial class CharStream : System.IO.StreamReader
    {
        protected CharStream(System.IO.StreamReader reader) : base (default(System.IO.Stream)) { }
        public abstract int CorrectOffset(int currentOff);
    }
    public abstract partial class CharTokenizer : Lucene.Net.Analysis.Tokenizer
    {
        protected CharTokenizer(Lucene.Net.Util.AttributeSource source, System.IO.TextReader input) { }
        protected CharTokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader input) { }
        protected CharTokenizer(System.IO.TextReader input) { }
        public override void End() { }
        public override bool IncrementToken() { throw null; }
        protected internal abstract bool IsTokenChar(char c);
        protected internal virtual char Normalize(char c) { throw null; }
        public override void Reset(System.IO.TextReader input) { }
    }
    [System.ObsoleteAttribute("If you build a new index, use ASCIIFoldingFilter which covers a superset of Latin 1.  This class is included for use with existing indexes and will be removed in a future release (possible Lucene 4.0).")]
    public partial class ISOLatin1AccentFilter : Lucene.Net.Analysis.TokenFilter
    {
        public ISOLatin1AccentFilter(Lucene.Net.Analysis.TokenStream input) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public override bool IncrementToken() { throw null; }
        public void RemoveAccents(char[] input, int length) { }
    }
    public partial class KeywordAnalyzer : Lucene.Net.Analysis.Analyzer
    {
        public KeywordAnalyzer() { }
        public override Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
    }
    public sealed partial class KeywordTokenizer : Lucene.Net.Analysis.Tokenizer
    {
        public KeywordTokenizer(Lucene.Net.Util.AttributeSource source, System.IO.TextReader input, int bufferSize) { }
        public KeywordTokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader input, int bufferSize) { }
        public KeywordTokenizer(System.IO.TextReader input) { }
        public KeywordTokenizer(System.IO.TextReader input, int bufferSize) { }
        public override void End() { }
        public override bool IncrementToken() { throw null; }
        public override void Reset(System.IO.TextReader input) { }
    }
    public sealed partial class LengthFilter : Lucene.Net.Analysis.TokenFilter
    {
        public LengthFilter(Lucene.Net.Analysis.TokenStream in_Renamed, int min, int max) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public override bool IncrementToken() { throw null; }
    }
    public partial class LetterTokenizer : Lucene.Net.Analysis.CharTokenizer
    {
        public LetterTokenizer(Lucene.Net.Util.AttributeSource source, System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        public LetterTokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        public LetterTokenizer(System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        protected internal override bool IsTokenChar(char c) { throw null; }
    }
    public sealed partial class LowerCaseFilter : Lucene.Net.Analysis.TokenFilter
    {
        public LowerCaseFilter(Lucene.Net.Analysis.TokenStream @in) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public override bool IncrementToken() { throw null; }
    }
    public sealed partial class LowerCaseTokenizer : Lucene.Net.Analysis.LetterTokenizer
    {
        public LowerCaseTokenizer(Lucene.Net.Util.AttributeSource source, System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        public LowerCaseTokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        public LowerCaseTokenizer(System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        protected internal override char Normalize(char c) { throw null; }
    }
    public partial class MappingCharFilter : Lucene.Net.Analysis.BaseCharFilter
    {
        public MappingCharFilter(Lucene.Net.Analysis.NormalizeCharMap normMap, Lucene.Net.Analysis.CharStream @in) : base (default(Lucene.Net.Analysis.CharStream)) { }
        public MappingCharFilter(Lucene.Net.Analysis.NormalizeCharMap normMap, System.IO.TextReader @in) : base (default(Lucene.Net.Analysis.CharStream)) { }
        public override int Read() { throw null; }
        public override int Read(char[] cbuf, int off, int len) { throw null; }
    }
    public partial class NormalizeCharMap
    {
        public NormalizeCharMap() { }
        public virtual void Add(string singleMatch, string replacement) { }
    }
    public sealed partial class NumericTokenStream : Lucene.Net.Analysis.TokenStream
    {
        public const string TOKEN_TYPE_FULL_PREC = "fullPrecNumeric";
        public const string TOKEN_TYPE_LOWER_PREC = "lowerPrecNumeric";
        public NumericTokenStream() { }
        public NumericTokenStream(Lucene.Net.Util.AttributeSource source, int precisionStep) { }
        public NumericTokenStream(Lucene.Net.Util.AttributeSource.AttributeFactory factory, int precisionStep) { }
        public NumericTokenStream(int precisionStep) { }
        protected override void Dispose(bool disposing) { }
        public override bool IncrementToken() { throw null; }
        public override void Reset() { }
        public Lucene.Net.Analysis.NumericTokenStream SetDoubleValue(double value_Renamed) { throw null; }
        public Lucene.Net.Analysis.NumericTokenStream SetFloatValue(float value_Renamed) { throw null; }
        public Lucene.Net.Analysis.NumericTokenStream SetIntValue(int value_Renamed) { throw null; }
        public Lucene.Net.Analysis.NumericTokenStream SetLongValue(long value_Renamed) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class PerFieldAnalyzerWrapper : Lucene.Net.Analysis.Analyzer
    {
        public PerFieldAnalyzerWrapper(Lucene.Net.Analysis.Analyzer defaultAnalyzer) { }
        public PerFieldAnalyzerWrapper(Lucene.Net.Analysis.Analyzer defaultAnalyzer, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Lucene.Net.Analysis.Analyzer>> fieldAnalyzers) { }
        public virtual void AddAnalyzer(string fieldName, Lucene.Net.Analysis.Analyzer analyzer) { }
        public override int GetOffsetGap(Lucene.Net.Documents.IFieldable field) { throw null; }
        public override int GetPositionIncrementGap(string fieldName) { throw null; }
        public override Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override string ToString() { throw null; }
    }
    public sealed partial class PorterStemFilter : Lucene.Net.Analysis.TokenFilter
    {
        public PorterStemFilter(Lucene.Net.Analysis.TokenStream in_Renamed) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public override bool IncrementToken() { throw null; }
    }
    public sealed partial class SimpleAnalyzer : Lucene.Net.Analysis.Analyzer
    {
        public SimpleAnalyzer() { }
        public override Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
    }
    public sealed partial class StopAnalyzer : Lucene.Net.Analysis.Analyzer
    {
        public static System.Collections.Generic.ISet<string> ENGLISH_STOP_WORDS_SET;
        public StopAnalyzer(Lucene.Net.Util.Version matchVersion) { }
        public StopAnalyzer(Lucene.Net.Util.Version matchVersion, System.Collections.Generic.ISet<string> stopWords) { }
        public StopAnalyzer(Lucene.Net.Util.Version matchVersion, System.IO.FileInfo stopwordsFile) { }
        public StopAnalyzer(Lucene.Net.Util.Version matchVersion, System.IO.TextReader stopwords) { }
        public override Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
    }
    public sealed partial class StopFilter : Lucene.Net.Analysis.TokenFilter
    {
        public StopFilter(bool enablePositionIncrements, Lucene.Net.Analysis.TokenStream @in, System.Collections.Generic.ISet<string> stopWords) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public StopFilter(bool enablePositionIncrements, Lucene.Net.Analysis.TokenStream input, System.Collections.Generic.ISet<string> stopWords, bool ignoreCase) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public bool EnablePositionIncrements { get { throw null; } set { } }
        public static bool GetEnablePositionIncrementsVersionDefault(Lucene.Net.Util.Version matchVersion) { throw null; }
        public override bool IncrementToken() { throw null; }
        public static System.Collections.Generic.ISet<string> MakeStopSet(System.Collections.Generic.IList<object> stopWords) { throw null; }
        public static System.Collections.Generic.ISet<string> MakeStopSet(System.Collections.Generic.IList<object> stopWords, bool ignoreCase) { throw null; }
        public static System.Collections.Generic.ISet<string> MakeStopSet(params string[] stopWords) { throw null; }
        public static System.Collections.Generic.ISet<string> MakeStopSet(string[] stopWords, bool ignoreCase) { throw null; }
    }
    public sealed partial class TeeSinkTokenFilter : Lucene.Net.Analysis.TokenFilter
    {
        public TeeSinkTokenFilter(Lucene.Net.Analysis.TokenStream input) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public void AddSinkTokenStream(Lucene.Net.Analysis.TeeSinkTokenFilter.SinkTokenStream sink) { }
        public void ConsumeAllTokens() { }
        public override void End() { }
        public override bool IncrementToken() { throw null; }
        public Lucene.Net.Analysis.TeeSinkTokenFilter.SinkTokenStream NewSinkTokenStream() { throw null; }
        public Lucene.Net.Analysis.TeeSinkTokenFilter.SinkTokenStream NewSinkTokenStream(Lucene.Net.Analysis.TeeSinkTokenFilter.SinkFilter filter) { throw null; }
        public partial class AnonymousClassSinkFilter : Lucene.Net.Analysis.TeeSinkTokenFilter.SinkFilter
        {
            public AnonymousClassSinkFilter() { }
            public override bool Accept(Lucene.Net.Util.AttributeSource source) { throw null; }
        }
        public abstract partial class SinkFilter
        {
            protected SinkFilter() { }
            public abstract bool Accept(Lucene.Net.Util.AttributeSource source);
            public virtual void Reset() { }
        }
        public sealed partial class SinkTokenStream : Lucene.Net.Analysis.TokenStream
        {
            internal SinkTokenStream() { }
            protected override void Dispose(bool disposing) { }
            public override void End() { }
            public override bool IncrementToken() { throw null; }
            public override void Reset() { }
        }
    }
    [System.SerializableAttribute]
    public partial class Token : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.IFlagsAttribute, Lucene.Net.Analysis.Tokenattributes.IOffsetAttribute, Lucene.Net.Analysis.Tokenattributes.IPayloadAttribute, Lucene.Net.Analysis.Tokenattributes.IPositionIncrementAttribute, Lucene.Net.Analysis.Tokenattributes.ITermAttribute, Lucene.Net.Analysis.Tokenattributes.ITypeAttribute, Lucene.Net.Util.IAttribute
    {
        public const string DEFAULT_TYPE = "word";
        public static Lucene.Net.Util.AttributeSource.AttributeFactory TOKEN_ATTRIBUTE_FACTORY;
        public Token() { }
        public Token(char[] startTermBuffer, int termBufferOffset, int termBufferLength, int start, int end) { }
        public Token(int start, int end) { }
        public Token(int start, int end, int flags) { }
        public Token(int start, int end, string typ) { }
        public Token(string text, int start, int end) { }
        public Token(string text, int start, int end, int flags) { }
        public Token(string text, int start, int end, string typ) { }
        public virtual int EndOffset { get { throw null; } set { } }
        public virtual int Flags { get { throw null; } set { } }
        public virtual Lucene.Net.Index.Payload Payload { get { throw null; } set { } }
        public virtual int PositionIncrement { get { throw null; } set { } }
        public virtual int StartOffset { get { throw null; } set { } }
        public string Term { get { throw null; } }
        public string Type { get { throw null; } set { } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public virtual Lucene.Net.Analysis.Token Clone(char[] newTermBuffer, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset) { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual void Reinit(Lucene.Net.Analysis.Token prototype) { }
        public virtual void Reinit(Lucene.Net.Analysis.Token prototype, char[] newTermBuffer, int offset, int length) { }
        public virtual void Reinit(Lucene.Net.Analysis.Token prototype, string newTerm) { }
        public virtual Lucene.Net.Analysis.Token Reinit(char[] newTermBuffer, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset) { throw null; }
        public virtual Lucene.Net.Analysis.Token Reinit(char[] newTermBuffer, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset, string newType) { throw null; }
        public virtual Lucene.Net.Analysis.Token Reinit(string newTerm, int newStartOffset, int newEndOffset) { throw null; }
        public virtual Lucene.Net.Analysis.Token Reinit(string newTerm, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset) { throw null; }
        public virtual Lucene.Net.Analysis.Token Reinit(string newTerm, int newTermOffset, int newTermLength, int newStartOffset, int newEndOffset, string newType) { throw null; }
        public virtual Lucene.Net.Analysis.Token Reinit(string newTerm, int newStartOffset, int newEndOffset, string newType) { throw null; }
        public virtual char[] ResizeTermBuffer(int newSize) { throw null; }
        public virtual void SetOffset(int startOffset, int endOffset) { }
        public void SetTermBuffer(char[] buffer, int offset, int length) { }
        public void SetTermBuffer(string buffer) { }
        public void SetTermBuffer(string buffer, int offset, int length) { }
        public void SetTermLength(int length) { }
        public char[] TermBuffer() { throw null; }
        public int TermLength() { throw null; }
        public override string ToString() { throw null; }
        public partial class TokenAttributeFactory : Lucene.Net.Util.AttributeSource.AttributeFactory
        {
            public TokenAttributeFactory(Lucene.Net.Util.AttributeSource.AttributeFactory delegateFactory) { }
            public override Lucene.Net.Util.Attribute CreateAttributeInstance<T>() { throw null; }
            public override bool Equals(object other) { throw null; }
            public override int GetHashCode() { throw null; }
        }
    }
    public abstract partial class TokenFilter : Lucene.Net.Analysis.TokenStream
    {
        protected internal Lucene.Net.Analysis.TokenStream input;
        protected internal TokenFilter(Lucene.Net.Analysis.TokenStream input) { }
        protected override void Dispose(bool disposing) { }
        public override void End() { }
        public override void Reset() { }
    }
    public abstract partial class Tokenizer : Lucene.Net.Analysis.TokenStream
    {
        protected internal System.IO.TextReader input;
        protected internal Tokenizer() { }
        protected internal Tokenizer(Lucene.Net.Util.AttributeSource source) { }
        protected internal Tokenizer(Lucene.Net.Util.AttributeSource source, System.IO.TextReader input) { }
        protected internal Tokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory) { }
        protected internal Tokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader input) { }
        protected internal Tokenizer(System.IO.TextReader input) { }
        protected internal int CorrectOffset(int currentOff) { throw null; }
        protected override void Dispose(bool disposing) { }
        public virtual void Reset(System.IO.TextReader input) { }
    }
    public abstract partial class TokenStream : Lucene.Net.Util.AttributeSource, System.IDisposable
    {
        protected internal TokenStream() { }
        protected internal TokenStream(Lucene.Net.Util.AttributeSource input) { }
        protected internal TokenStream(Lucene.Net.Util.AttributeSource.AttributeFactory factory) { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public virtual void End() { }
        public abstract bool IncrementToken();
        public virtual void Reset() { }
    }
    public sealed partial class WhitespaceAnalyzer : Lucene.Net.Analysis.Analyzer
    {
        public WhitespaceAnalyzer() { }
        public override Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
    }
    public partial class WhitespaceTokenizer : Lucene.Net.Analysis.CharTokenizer
    {
        public WhitespaceTokenizer(Lucene.Net.Util.AttributeSource source, System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        public WhitespaceTokenizer(Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        public WhitespaceTokenizer(System.IO.TextReader @in) : base (default(System.IO.TextReader)) { }
        protected internal override bool IsTokenChar(char c) { throw null; }
    }
    public partial class WordlistLoader
    {
        public WordlistLoader() { }
        public static System.Collections.Generic.Dictionary<string, string> GetStemDict(System.IO.FileInfo wordstemfile) { throw null; }
        public static System.Collections.Generic.ISet<string> GetWordSet(System.IO.FileInfo wordfile) { throw null; }
        public static System.Collections.Generic.ISet<string> GetWordSet(System.IO.FileInfo wordfile, string comment) { throw null; }
        public static System.Collections.Generic.ISet<string> GetWordSet(System.IO.TextReader reader) { throw null; }
        public static System.Collections.Generic.ISet<string> GetWordSet(System.IO.TextReader reader, string comment) { throw null; }
    }
}
namespace Lucene.Net.Analysis.Standard
{
    public partial class StandardAnalyzer : Lucene.Net.Analysis.Analyzer
    {
        public const int DEFAULT_MAX_TOKEN_LENGTH = 255;
        public static readonly System.Collections.Generic.ISet<string> STOP_WORDS_SET;
        public StandardAnalyzer(Lucene.Net.Util.Version matchVersion) { }
        public StandardAnalyzer(Lucene.Net.Util.Version matchVersion, System.Collections.Generic.ISet<string> stopWords) { }
        public StandardAnalyzer(Lucene.Net.Util.Version matchVersion, System.IO.FileInfo stopwords) { }
        public StandardAnalyzer(Lucene.Net.Util.Version matchVersion, System.IO.TextReader stopwords) { }
        public virtual int MaxTokenLength { get { throw null; } set { } }
        public override Lucene.Net.Analysis.TokenStream ReusableTokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
        public override Lucene.Net.Analysis.TokenStream TokenStream(string fieldName, System.IO.TextReader reader) { throw null; }
    }
    public sealed partial class StandardFilter : Lucene.Net.Analysis.TokenFilter
    {
        public StandardFilter(Lucene.Net.Analysis.TokenStream in_Renamed) : base (default(Lucene.Net.Analysis.TokenStream)) { }
        public override bool IncrementToken() { throw null; }
    }
    public sealed partial class StandardTokenizer : Lucene.Net.Analysis.Tokenizer
    {
        public const int ACRONYM = 2;
        [System.ObsoleteAttribute("this solves a bug where HOSTs that end with '.' are identified as ACRONYMs.")]
        public const int ACRONYM_DEP = 8;
        public const int ALPHANUM = 0;
        public const int APOSTROPHE = 1;
        public const int CJ = 7;
        public const int COMPANY = 3;
        public const int EMAIL = 4;
        public const int HOST = 5;
        public const int NUM = 6;
        public static readonly string[] TOKEN_TYPES;
        public StandardTokenizer(Lucene.Net.Util.Version matchVersion, Lucene.Net.Util.AttributeSource source, System.IO.TextReader input) { }
        public StandardTokenizer(Lucene.Net.Util.Version matchVersion, Lucene.Net.Util.AttributeSource.AttributeFactory factory, System.IO.TextReader input) { }
        public StandardTokenizer(Lucene.Net.Util.Version matchVersion, System.IO.TextReader input) { }
        public int MaxTokenLength { get { throw null; } set { } }
        public override void End() { }
        public override bool IncrementToken() { throw null; }
        public override void Reset(System.IO.TextReader reader) { }
        [System.ObsoleteAttribute("Remove in 3.X and make true the only valid value. See https://issues.apache.org/jira/browse/LUCENE-1068")]
        public void SetReplaceInvalidAcronym(bool replaceInvalidAcronym) { }
    }
}
namespace Lucene.Net.Analysis.Tokenattributes
{
    [System.SerializableAttribute]
    public partial class FlagsAttribute : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.IFlagsAttribute, Lucene.Net.Util.IAttribute, System.ICloneable
    {
        public FlagsAttribute() { }
        public virtual int Flags { get { throw null; } set { } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    public partial interface IFlagsAttribute : Lucene.Net.Util.IAttribute
    {
        int Flags { get; set; }
    }
    public partial interface IOffsetAttribute : Lucene.Net.Util.IAttribute
    {
        int EndOffset { get; }
        int StartOffset { get; }
        void SetOffset(int startOffset, int endOffset);
    }
    public partial interface IPayloadAttribute : Lucene.Net.Util.IAttribute
    {
        Lucene.Net.Index.Payload Payload { get; set; }
    }
    public partial interface IPositionIncrementAttribute : Lucene.Net.Util.IAttribute
    {
        int PositionIncrement { get; set; }
    }
    public partial interface ITermAttribute : Lucene.Net.Util.IAttribute
    {
        string Term { get; }
        char[] ResizeTermBuffer(int newSize);
        void SetTermBuffer(char[] buffer, int offset, int length);
        void SetTermBuffer(string buffer);
        void SetTermBuffer(string buffer, int offset, int length);
        void SetTermLength(int length);
        char[] TermBuffer();
        int TermLength();
    }
    public partial interface ITypeAttribute : Lucene.Net.Util.IAttribute
    {
        string Type { get; set; }
    }
    [System.SerializableAttribute]
    public partial class OffsetAttribute : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.IOffsetAttribute, Lucene.Net.Util.IAttribute, System.ICloneable
    {
        public OffsetAttribute() { }
        public virtual int EndOffset { get { throw null; } }
        public virtual int StartOffset { get { throw null; } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual void SetOffset(int startOffset, int endOffset) { }
    }
    [System.SerializableAttribute]
    public partial class PayloadAttribute : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.IPayloadAttribute, Lucene.Net.Util.IAttribute, System.ICloneable
    {
        public PayloadAttribute() { }
        public PayloadAttribute(Lucene.Net.Index.Payload payload) { }
        public virtual Lucene.Net.Index.Payload Payload { get { throw null; } set { } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class PositionIncrementAttribute : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.IPositionIncrementAttribute, Lucene.Net.Util.IAttribute, System.ICloneable
    {
        public PositionIncrementAttribute() { }
        public virtual int PositionIncrement { get { throw null; } set { } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class TermAttribute : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.ITermAttribute, Lucene.Net.Util.IAttribute, System.ICloneable
    {
        public TermAttribute() { }
        public virtual string Term { get { throw null; } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual char[] ResizeTermBuffer(int newSize) { throw null; }
        public virtual void SetTermBuffer(char[] buffer, int offset, int length) { }
        public virtual void SetTermBuffer(string buffer) { }
        public virtual void SetTermBuffer(string buffer, int offset, int length) { }
        public virtual void SetTermLength(int length) { }
        public virtual char[] TermBuffer() { throw null; }
        public virtual int TermLength() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class TypeAttribute : Lucene.Net.Util.Attribute, Lucene.Net.Analysis.Tokenattributes.ITypeAttribute, Lucene.Net.Util.IAttribute, System.ICloneable
    {
        public const string DEFAULT_TYPE = "word";
        public TypeAttribute() { }
        public TypeAttribute(string type) { }
        public virtual string Type { get { throw null; } set { } }
        public override void Clear() { }
        public override object Clone() { throw null; }
        public override void CopyTo(Lucene.Net.Util.Attribute target) { }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
    }
}
namespace Lucene.Net.Documents
{
    [System.SerializableAttribute]
    public abstract partial class AbstractField : Lucene.Net.Documents.IFieldable
    {
        protected internal object fieldsData;
        protected internal int internalBinaryLength;
        protected internal int internalbinaryOffset;
        protected internal float internalBoost;
        protected internal bool internalIsBinary;
        protected internal bool internalIsIndexed;
        protected internal bool internalIsStored;
        protected internal bool internalIsTokenized;
        protected internal string internalName;
        protected internal bool internalOmitNorms;
        protected internal bool internalOmitTermFreqAndPositions;
        protected internal bool lazy;
        protected internal bool storeOffsetWithTermVector;
        protected internal bool storePositionWithTermVector;
        protected internal bool storeTermVector;
        protected internal Lucene.Net.Analysis.TokenStream tokenStream;
        protected internal AbstractField() { }
        protected internal AbstractField(string name, Lucene.Net.Documents.Field.Store store, Lucene.Net.Documents.Field.Index index, Lucene.Net.Documents.Field.TermVector termVector) { }
        public virtual int BinaryLength { get { throw null; } }
        public virtual int BinaryOffset { get { throw null; } }
        public virtual float Boost { get { throw null; } set { } }
        public bool IsBinary { get { throw null; } }
        public bool IsIndexed { get { throw null; } }
        public virtual bool IsLazy { get { throw null; } }
        public bool IsStored { get { throw null; } }
        public virtual bool IsStoreOffsetWithTermVector { get { throw null; } }
        public virtual bool IsStorePositionWithTermVector { get { throw null; } }
        public bool IsTermVectorStored { get { throw null; } }
        public bool IsTokenized { get { throw null; } }
        public virtual string Name { get { throw null; } }
        public virtual bool OmitNorms { get { throw null; } set { } }
        public virtual bool OmitTermFreqAndPositions { get { throw null; } set { } }
        public abstract System.IO.TextReader ReaderValue { get; }
        public abstract string StringValue { get; }
        public abstract Lucene.Net.Analysis.TokenStream TokenStreamValue { get; }
        public virtual byte[] GetBinaryValue() { throw null; }
        public virtual byte[] GetBinaryValue(byte[] result) { throw null; }
        protected internal virtual void SetStoreTermVector(Lucene.Net.Documents.Field.TermVector termVector) { }
        public override string ToString() { throw null; }
    }
    public partial class CompressionTools
    {
        internal CompressionTools() { }
        public static byte[] Compress(byte[] value_Renamed) { throw null; }
        public static byte[] Compress(byte[] value_Renamed, int offset, int length) { throw null; }
        public static byte[] Compress(byte[] value_Renamed, int offset, int length, int compressionLevel) { throw null; }
        public static byte[] CompressString(string value_Renamed) { throw null; }
        public static byte[] CompressString(string value_Renamed, int compressionLevel) { throw null; }
        public static byte[] Decompress(byte[] value_Renamed) { throw null; }
        public static string DecompressString(byte[] value_Renamed) { throw null; }
    }
    [System.ObsoleteAttribute("If you build a new index, use DateTools or NumericField instead.This class is included for use with existing indices and will be removed in a future release (possibly Lucene 4.0).")]
    public partial class DateField
    {
        internal DateField() { }
        public static string DateToString(System.DateTime date) { throw null; }
        public static string MAX_DATE_STRING() { throw null; }
        public static string MIN_DATE_STRING() { throw null; }
        public static System.DateTime StringToDate(string s) { throw null; }
        public static long StringToTime(string s) { throw null; }
        public static string TimeToString(long time) { throw null; }
    }
    public partial class DateTools
    {
        internal DateTools() { }
        public static string DateToString(System.DateTime date, Lucene.Net.Documents.DateTools.Resolution resolution) { throw null; }
        public static System.DateTime Round(System.DateTime date, Lucene.Net.Documents.DateTools.Resolution resolution) { throw null; }
        public static long Round(long time, Lucene.Net.Documents.DateTools.Resolution resolution) { throw null; }
        public static System.DateTime StringToDate(string dateString) { throw null; }
        public static long StringToTime(string dateString) { throw null; }
        public static string TimeToString(long time, Lucene.Net.Documents.DateTools.Resolution resolution) { throw null; }
        public partial class Resolution
        {
            internal Resolution() { }
            public static readonly Lucene.Net.Documents.DateTools.Resolution DAY;
            public static readonly Lucene.Net.Documents.DateTools.Resolution HOUR;
            public static readonly Lucene.Net.Documents.DateTools.Resolution MILLISECOND;
            public static readonly Lucene.Net.Documents.DateTools.Resolution MINUTE;
            public static readonly Lucene.Net.Documents.DateTools.Resolution MONTH;
            public static readonly Lucene.Net.Documents.DateTools.Resolution SECOND;
            public static readonly Lucene.Net.Documents.DateTools.Resolution YEAR;
            public override string ToString() { throw null; }
        }
    }
    [System.SerializableAttribute]
    public sealed partial class Document
    {
        public Document() { }
        public float Boost { get { throw null; } set { } }
        public System.Collections.Generic.IList<Lucene.Net.Documents.IFieldable> fields_ForNUnit { get { throw null; } }
        public void Add(Lucene.Net.Documents.IFieldable field) { }
        public string Get(string name) { throw null; }
        public byte[] GetBinaryValue(string name) { throw null; }
        public byte[][] GetBinaryValues(string name) { throw null; }
        public Lucene.Net.Documents.Field GetField(string name) { throw null; }
        public Lucene.Net.Documents.IFieldable GetFieldable(string name) { throw null; }
        public Lucene.Net.Documents.IFieldable[] GetFieldables(string name) { throw null; }
        public System.Collections.Generic.IList<Lucene.Net.Documents.IFieldable> GetFields() { throw null; }
        public Lucene.Net.Documents.Field[] GetFields(string name) { throw null; }
        public string[] GetValues(string name) { throw null; }
        public void RemoveField(string name) { }
        public void RemoveFields(string name) { }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class Field : Lucene.Net.Documents.AbstractField, Lucene.Net.Documents.IFieldable
    {
        public Field(string name, Lucene.Net.Analysis.TokenStream tokenStream) { }
        public Field(string name, Lucene.Net.Analysis.TokenStream tokenStream, Lucene.Net.Documents.Field.TermVector termVector) { }
        public Field(string name, bool internName, string value, Lucene.Net.Documents.Field.Store store, Lucene.Net.Documents.Field.Index index, Lucene.Net.Documents.Field.TermVector termVector) { }
        public Field(string name, byte[] value_Renamed, Lucene.Net.Documents.Field.Store store) { }
        public Field(string name, byte[] value_Renamed, int offset, int length, Lucene.Net.Documents.Field.Store store) { }
        public Field(string name, System.IO.TextReader reader) { }
        public Field(string name, System.IO.TextReader reader, Lucene.Net.Documents.Field.TermVector termVector) { }
        public Field(string name, string value, Lucene.Net.Documents.Field.Store store, Lucene.Net.Documents.Field.Index index) { }
        public Field(string name, string value, Lucene.Net.Documents.Field.Store store, Lucene.Net.Documents.Field.Index index, Lucene.Net.Documents.Field.TermVector termVector) { }
        public override System.IO.TextReader ReaderValue { get { throw null; } }
        public override string StringValue { get { throw null; } }
        public override Lucene.Net.Analysis.TokenStream TokenStreamValue { get { throw null; } }
        public void SetTokenStream(Lucene.Net.Analysis.TokenStream tokenStream) { }
        public void SetValue(byte[] value) { }
        public void SetValue(byte[] value, int offset, int length) { }
        public void SetValue(System.IO.TextReader value) { }
        public void SetValue(string value) { }
        public enum Index
        {
            ANALYZED = 1,
            ANALYZED_NO_NORMS = 4,
            NO = 0,
            NOT_ANALYZED = 2,
            NOT_ANALYZED_NO_NORMS = 3,
        }
        public enum Store
        {
            NO = 1,
            YES = 0,
        }
        public enum TermVector
        {
            NO = 0,
            WITH_OFFSETS = 3,
            WITH_POSITIONS = 2,
            WITH_POSITIONS_OFFSETS = 4,
            YES = 1,
        }
    }
    public static partial class FieldExtensions
    {
        public static bool IsAnalyzed(this Lucene.Net.Documents.Field.Index index) { throw null; }
        public static bool IsIndexed(this Lucene.Net.Documents.Field.Index index) { throw null; }
        public static bool IsStored(this Lucene.Net.Documents.Field.Store store) { throw null; }
        public static bool IsStored(this Lucene.Net.Documents.Field.TermVector tv) { throw null; }
        public static bool OmitNorms(this Lucene.Net.Documents.Field.Index index) { throw null; }
        public static Lucene.Net.Documents.Field.Index ToIndex(bool indexed, bool analyed) { throw null; }
        public static Lucene.Net.Documents.Field.Index ToIndex(bool indexed, bool analyzed, bool omitNorms) { throw null; }
        public static Lucene.Net.Documents.Field.TermVector ToTermVector(bool stored, bool withOffsets, bool withPositions) { throw null; }
        public static bool WithOffsets(this Lucene.Net.Documents.Field.TermVector tv) { throw null; }
        public static bool WithPositions(this Lucene.Net.Documents.Field.TermVector tv) { throw null; }
    }
    public partial interface FieldSelector
    {
        Lucene.Net.Documents.FieldSelectorResult Accept(string fieldName);
    }
    public enum FieldSelectorResult
    {
        INVALID = 0,
        LAZY_LOAD = 2,
        LOAD = 1,
        LOAD_AND_BREAK = 4,
        NO_LOAD = 3,
        SIZE = 5,
        SIZE_AND_BREAK = 6,
    }
    public partial interface IFieldable
    {
        int BinaryLength { get; }
        int BinaryOffset { get; }
        float Boost { get; set; }
        bool IsBinary { get; }
        bool IsIndexed { get; }
        bool IsLazy { get; }
        bool IsStored { get; }
        bool IsStoreOffsetWithTermVector { get; }
        bool IsStorePositionWithTermVector { get; }
        bool IsTermVectorStored { get; }
        bool IsTokenized { get; }
        string Name { get; }
        bool OmitNorms { get; set; }
        bool OmitTermFreqAndPositions { get; set; }
        System.IO.TextReader ReaderValue { get; }
        string StringValue { get; }
        Lucene.Net.Analysis.TokenStream TokenStreamValue { get; }
        byte[] GetBinaryValue();
        byte[] GetBinaryValue(byte[] result);
    }
    [System.SerializableAttribute]
    public partial class LoadFirstFieldSelector : Lucene.Net.Documents.FieldSelector
    {
        public LoadFirstFieldSelector() { }
        public virtual Lucene.Net.Documents.FieldSelectorResult Accept(string fieldName) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class MapFieldSelector : Lucene.Net.Documents.FieldSelector
    {
        public MapFieldSelector(System.Collections.Generic.IDictionary<string, Lucene.Net.Documents.FieldSelectorResult> fieldSelections) { }
        public MapFieldSelector(System.Collections.Generic.IList<string> fields) { }
        public MapFieldSelector(params string[] fields) { }
        public virtual Lucene.Net.Documents.FieldSelectorResult Accept(string field) { throw null; }
    }
    [System.ObsoleteAttribute("For new indexes use NumericUtils instead, which provides a sortable binary representation (prefix encoded) of numeric values. To index and efficiently query numeric values use NumericField and NumericRangeQuery. This class is included for use with existing indices and will be removed in a future release (possibly Lucene 4.0).")]
    public partial class NumberTools
    {
        public static readonly string MAX_STRING_VALUE;
        public static readonly string MIN_STRING_VALUE;
        public static readonly int STR_SIZE;
        public NumberTools() { }
        public static string LongToString(long l) { throw null; }
        public static long StringToLong(string str) { throw null; }
        public static long ToLong(string t) { throw null; }
        public static string ToString(long lval) { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class NumericField : Lucene.Net.Documents.AbstractField
    {
        public NumericField(string name) { }
        public NumericField(string name, Lucene.Net.Documents.Field.Store store, bool index) { }
        public NumericField(string name, int precisionStep) { }
        public NumericField(string name, int precisionStep, Lucene.Net.Documents.Field.Store store, bool index) { }
        public System.ValueType NumericValue { get { throw null; } }
        public override System.IO.TextReader ReaderValue { get { throw null; } }
        public override string StringValue { get { throw null; } }
        public override Lucene.Net.Analysis.TokenStream TokenStreamValue { get { throw null; } }
        public override byte[] GetBinaryValue(byte[] result) { throw null; }
        public Lucene.Net.Documents.NumericField SetDoubleValue(double value_Renamed) { throw null; }
        public Lucene.Net.Documents.NumericField SetFloatValue(float value_Renamed) { throw null; }
        public Lucene.Net.Documents.NumericField SetIntValue(int value_Renamed) { throw null; }
        public Lucene.Net.Documents.NumericField SetLongValue(long value_Renamed) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SetBasedFieldSelector : Lucene.Net.Documents.FieldSelector
    {
        public SetBasedFieldSelector(System.Collections.Generic.ISet<string> fieldsToLoad, System.Collections.Generic.ISet<string> lazyFieldsToLoad) { }
        public virtual Lucene.Net.Documents.FieldSelectorResult Accept(string fieldName) { throw null; }
    }
}
namespace Lucene.Net.Index
{
    public abstract partial class AbstractAllTermDocs : Lucene.Net.Index.TermDocs, System.IDisposable
    {
        protected int internalDoc;
        protected int maxDoc;
        protected AbstractAllTermDocs(int maxDoc) { }
        public int Doc { get { throw null; } }
        public int Freq { get { throw null; } }
        public void Close() { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract bool IsDeleted(int doc);
        public bool Next() { throw null; }
        public int Read(int[] docs, int[] freqs) { throw null; }
        public void Seek(Lucene.Net.Index.Term term) { }
        public void Seek(Lucene.Net.Index.TermEnum termEnum) { }
        public bool SkipTo(int target) { throw null; }
    }
    public sealed partial class ByteBlockPool
    {
        public byte[] buffer;
        public byte[][] buffers;
        public int byteOffset;
        public int byteUpto;
        public static readonly int FIRST_LEVEL_SIZE_For_NUnit_Test;
        public ByteBlockPool(Lucene.Net.Index.ByteBlockPool.Allocator allocator, bool trackAllocations) { }
        public static int FIRST_LEVEL_SIZE_ForNUnit { get { throw null; } }
        public int AllocSlice(byte[] slice, int upto) { throw null; }
        public int NewSlice(int size) { throw null; }
        public void NextBuffer() { }
        public void Reset() { }
        public abstract partial class Allocator
        {
            protected Allocator() { }
            public abstract byte[] GetByteBlock(bool trackAllocations);
            public abstract void RecycleByteBlocks(byte[][] blocks, int start, int end);
            public abstract void RecycleByteBlocks(System.Collections.Generic.IList<byte[]> blocks);
        }
    }
    public sealed partial class ByteSliceReader : Lucene.Net.Store.IndexInput
    {
        public int bufferOffset;
        public int endIndex;
        public int upto;
        public ByteSliceReader() { }
        public override long FilePointer { get { throw null; } }
        public override object Clone() { throw null; }
        protected override void Dispose(bool disposing) { }
        public bool Eof() { throw null; }
        public void Init(Lucene.Net.Index.ByteBlockPool pool, int startIndex, int endIndex) { }
        public override long Length() { throw null; }
        public void NextSlice() { }
        public override byte ReadByte() { throw null; }
        public override void ReadBytes(byte[] b, int offset, int len) { }
        public override void Seek(long pos) { }
        public long WriteTo(Lucene.Net.Store.IndexOutput @out) { throw null; }
    }
    public sealed partial class ByteSliceWriter
    {
        public ByteSliceWriter(Lucene.Net.Index.ByteBlockPool pool) { }
        public int Address { get { throw null; } }
        public void Init(int address) { }
        public void WriteByte(byte b) { }
        public void WriteBytes(byte[] b, int offset, int len) { }
        public void WriteVInt(int i) { }
    }
    public partial class CheckIndex
    {
        public CheckIndex(Lucene.Net.Store.Directory dir) { }
        public virtual Lucene.Net.Index.CheckIndex.Status CheckIndex_Renamed_Method() { throw null; }
        public virtual Lucene.Net.Index.CheckIndex.Status CheckIndex_Renamed_Method(System.Collections.Generic.List<string> onlySegments) { throw null; }
        public virtual void FixIndex(Lucene.Net.Index.CheckIndex.Status result) { }
        [System.STAThreadAttribute]
        public static void Main(string[] args) { }
        public virtual void SetInfoStream(System.IO.StreamWriter @out) { }
        public partial class Status
        {
            public bool cantOpenSegments;
            public bool clean;
            public Lucene.Net.Store.Directory dir;
            public bool missingSegments;
            public bool missingSegmentVersion;
            public int numBadSegments;
            public int numSegments;
            public bool @partial;
            public string segmentFormat;
            public System.Collections.Generic.IList<Lucene.Net.Index.CheckIndex.Status.SegmentInfoStatus> segmentInfos;
            public System.Collections.Generic.List<string> segmentsChecked;
            public string segmentsFileName;
            public bool toolOutOfDate;
            public int totLoseDocCount;
            public System.Collections.Generic.IDictionary<string, string> userData;
            public Status() { }
            public sealed partial class FieldNormStatus
            {
                public System.Exception error;
                public long totFields;
                public FieldNormStatus() { }
            }
            public partial class SegmentInfoStatus
            {
                public bool compound;
                public string deletionsFileName;
                public System.Collections.Generic.IDictionary<string, string> diagnostics;
                public int docCount;
                public bool docStoreCompoundFile;
                public int docStoreOffset;
                public string docStoreSegment;
                public Lucene.Net.Index.CheckIndex.Status.FieldNormStatus fieldNormStatus;
                public bool hasDeletions;
                public bool hasProx;
                public string name;
                public int numDeleted;
                public int numFiles;
                public bool openReaderPassed;
                public double sizeMB;
                public Lucene.Net.Index.CheckIndex.Status.StoredFieldStatus storedFieldStatus;
                public Lucene.Net.Index.CheckIndex.Status.TermIndexStatus termIndexStatus;
                public Lucene.Net.Index.CheckIndex.Status.TermVectorStatus termVectorStatus;
                public SegmentInfoStatus() { }
            }
            public sealed partial class StoredFieldStatus
            {
                public int docCount;
                public System.Exception error;
                public long totFields;
                public StoredFieldStatus() { }
            }
            public sealed partial class TermIndexStatus
            {
                public System.Exception error;
                public long termCount;
                public long totFreq;
                public long totPos;
                public TermIndexStatus() { }
            }
            public sealed partial class TermVectorStatus
            {
                public int docCount;
                public System.Exception error;
                public long totVectors;
                public TermVectorStatus() { }
            }
        }
    }
    public partial class CompoundFileReader : Lucene.Net.Store.Directory
    {
        public CompoundFileReader(Lucene.Net.Store.Directory dir, string name) { }
        public CompoundFileReader(Lucene.Net.Store.Directory dir, string name, int readBufferSize) { }
        public virtual Lucene.Net.Store.Directory Directory { get { throw null; } }
        public virtual string Name { get { throw null; } }
        public override Lucene.Net.Store.IndexOutput CreateOutput(string name) { throw null; }
        public override void DeleteFile(string name) { }
        protected override void Dispose(bool disposing) { }
        public override bool FileExists(string name) { throw null; }
        public override long FileLength(string name) { throw null; }
        public override long FileModified(string name) { throw null; }
        public override string[] ListAll() { throw null; }
        public override Lucene.Net.Store.Lock MakeLock(string name) { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string id) { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string id, int readBufferSize) { throw null; }
        public void RenameFile(string from, string to) { }
        public override void TouchFile(string name) { }
        public sealed partial class CSIndexInput : Lucene.Net.Store.BufferedIndexInput
        {
            internal CSIndexInput() { }
            public Lucene.Net.Store.IndexInput base_Renamed_ForNUnit { get { throw null; } }
            public override object Clone() { throw null; }
            protected override void Dispose(bool disposing) { }
            public override long Length() { throw null; }
            public override void ReadInternal(byte[] b, int offset, int len) { }
            public override void SeekInternal(long pos) { }
        }
    }
    public sealed partial class CompoundFileWriter : System.IDisposable
    {
        public CompoundFileWriter(Lucene.Net.Store.Directory dir, string name) { }
        public Lucene.Net.Store.Directory Directory { get { throw null; } }
        public string Name { get { throw null; } }
        public void AddFile(string file) { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Dispose() { }
    }
    public partial class ConcurrentMergeScheduler : Lucene.Net.Index.MergeScheduler
    {
        protected internal Lucene.Net.Store.Directory dir;
        protected internal int mergeThreadCount;
        protected internal System.Collections.Generic.IList<Lucene.Net.Index.ConcurrentMergeScheduler.MergeThread> mergeThreads;
        protected internal Lucene.Net.Index.IndexWriter writer;
        public ConcurrentMergeScheduler() { }
        public virtual int MaxThreadCount { get { throw null; } set { } }
        public static bool AnyUnhandledExceptions() { throw null; }
        public virtual void ClearSuppressExceptions() { }
        public static void ClearUnhandledExceptions() { }
        protected override void Dispose(bool disposing) { }
        protected internal virtual void DoMerge(Lucene.Net.Index.MergePolicy.OneMerge merge) { }
        protected internal virtual Lucene.Net.Index.ConcurrentMergeScheduler.MergeThread GetMergeThread(Lucene.Net.Index.IndexWriter writer, Lucene.Net.Index.MergePolicy.OneMerge merge) { throw null; }
        public virtual int GetMergeThreadPriority() { throw null; }
        protected internal virtual void HandleMergeException(System.Exception exc) { }
        public override void Merge(Lucene.Net.Index.IndexWriter writer) { }
        public virtual void SetMergeThreadPriority(int pri) { }
        public virtual void SetSuppressExceptions() { }
        public static void SetTestMode() { }
        public virtual void Sync() { }
        public partial class MergeThread : Lucene.Net.Support.ThreadClass
        {
            public MergeThread(Lucene.Net.Index.ConcurrentMergeScheduler enclosingInstance, Lucene.Net.Index.IndexWriter writer, Lucene.Net.Index.MergePolicy.OneMerge startMerge) { }
            public Lucene.Net.Index.ConcurrentMergeScheduler Enclosing_Instance { get { throw null; } }
            public virtual Lucene.Net.Index.MergePolicy.OneMerge RunningMerge { get { throw null; } }
            public override void Run() { }
            public virtual void SetRunningMerge(Lucene.Net.Index.MergePolicy.OneMerge merge) { }
            public virtual void SetThreadPriority(int pri) { }
            public override string ToString() { throw null; }
        }
    }
    [System.SerializableAttribute]
    public partial class CorruptIndexException : System.IO.IOException
    {
        public CorruptIndexException(string message) { }
        public CorruptIndexException(string message, System.Exception exp) { }
    }
    public partial class DirectoryReader : Lucene.Net.Index.IndexReader
    {
        internal DirectoryReader() { }
        protected internal Lucene.Net.Store.Directory internalDirectory;
        protected internal bool readOnly;
        public override System.Collections.Generic.IDictionary<string, string> CommitUserData { get { throw null; } }
        public override bool HasDeletions { get { throw null; } }
        public override Lucene.Net.Index.IndexCommit IndexCommit { get { throw null; } }
        public override int MaxDoc { get { throw null; } }
        public override int TermInfosIndexDivisor { get { throw null; } }
        public override long Version { get { throw null; } }
        protected internal override void AcquireWriteLock() { }
        public override object Clone() { throw null; }
        public override Lucene.Net.Index.IndexReader Clone(bool openReadOnly) { throw null; }
        public override Lucene.Net.Store.Directory Directory() { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term t) { throw null; }
        protected internal override void DoClose() { }
        protected internal override void DoCommit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public override Lucene.Net.Documents.Document Document(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        protected internal override void DoDelete(int n) { }
        protected internal override void DoSetNorm(int n, string field, byte value_Renamed) { }
        protected internal override void DoUndeleteAll() { }
        public override System.Collections.Generic.ICollection<string> GetFieldNames(Lucene.Net.Index.IndexReader.FieldOption fieldNames) { throw null; }
        public override Lucene.Net.Index.IndexReader[] GetSequentialSubReaders() { throw null; }
        public override void GetTermFreqVector(int docNumber, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector GetTermFreqVector(int n, string field) { throw null; }
        public override void GetTermFreqVector(int docNumber, string field, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector[] GetTermFreqVectors(int n) { throw null; }
        public override bool HasNorms(string field) { throw null; }
        public override bool IsCurrent() { throw null; }
        public override bool IsDeleted(int n) { throw null; }
        public override bool IsOptimized() { throw null; }
        public static new System.Collections.Generic.ICollection<Lucene.Net.Index.IndexCommit> ListCommits(Lucene.Net.Store.Directory dir) { throw null; }
        public override byte[] Norms(string field) { throw null; }
        public override void Norms(string field, byte[] result, int offset) { }
        public override int NumDocs() { throw null; }
        public override Lucene.Net.Index.IndexReader Reopen() { throw null; }
        public override Lucene.Net.Index.IndexReader Reopen(Lucene.Net.Index.IndexCommit commit) { throw null; }
        public override Lucene.Net.Index.IndexReader Reopen(bool openReadOnly) { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs() { throw null; }
        public override Lucene.Net.Index.TermPositions TermPositions() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms(Lucene.Net.Index.Term term) { throw null; }
    }
    public sealed partial class DocumentsWriter : System.IDisposable
    {
        internal DocumentsWriter() { }
        public static int BYTE_BLOCK_SIZE_ForNUnit { get { throw null; } }
        public static int CHAR_BLOCK_SIZE_ForNUnit { get { throw null; } }
        public void Dispose() { }
    }
    public sealed partial class FieldInfo : System.ICloneable
    {
        internal FieldInfo() { }
        public bool isIndexed_ForNUnit { get { throw null; } }
        public string name_ForNUnit { get { throw null; } }
        public bool omitNorms_ForNUnit { get { throw null; } }
        public bool omitTermFreqAndPositions_ForNUnit { get { throw null; } }
        public bool storePayloads_ForNUnit { get { throw null; } }
        public bool storeTermVector_ForNUnit { get { throw null; } }
        public object Clone() { throw null; }
    }
    public sealed partial class FieldInfos : System.ICloneable
    {
        public const int FORMAT_PRE = -1;
        public const int FORMAT_START = -2;
        public FieldInfos() { }
        public FieldInfos(Lucene.Net.Store.Directory d, string name) { }
        public void Add(Lucene.Net.Documents.Document doc) { }
        public void Add(System.Collections.Generic.ICollection<string> names, bool isIndexed) { }
        public void Add(string name, bool isIndexed) { }
        public void Add(string name, bool isIndexed, bool storeTermVector) { }
        public void Add(string name, bool isIndexed, bool storeTermVector, bool storePositionWithTermVector, bool storeOffsetWithTermVector) { }
        public void Add(string name, bool isIndexed, bool storeTermVector, bool storePositionWithTermVector, bool storeOffsetWithTermVector, bool omitNorms) { }
        public Lucene.Net.Index.FieldInfo Add(string name, bool isIndexed, bool storeTermVector, bool storePositionWithTermVector, bool storeOffsetWithTermVector, bool omitNorms, bool storePayloads, bool omitTermFreqAndPositions) { throw null; }
        public void AddIndexed(System.Collections.Generic.ICollection<string> names, bool storeTermVectors, bool storePositionWithTermVector, bool storeOffsetWithTermVector) { }
        public object Clone() { throw null; }
        public Lucene.Net.Index.FieldInfo FieldInfo(int fieldNumber) { throw null; }
        public Lucene.Net.Index.FieldInfo FieldInfo(string fieldName) { throw null; }
        public string FieldName(int fieldNumber) { throw null; }
        public int FieldNumber(string fieldName) { throw null; }
        public bool HasVectors() { throw null; }
        public int Size() { throw null; }
        public void Write(Lucene.Net.Store.Directory d, string name) { }
        public void Write(Lucene.Net.Store.IndexOutput output) { }
    }
    public sealed partial class FieldInvertState
    {
        public FieldInvertState() { }
        public FieldInvertState(int position, int length, int numOverlap, int offset, float boost) { }
        public Lucene.Net.Util.AttributeSource AttributeSource { get { throw null; } }
        public float Boost { get { throw null; } }
        public int Length { get { throw null; } }
        public int NumOverlap { get { throw null; } }
        public int Offset { get { throw null; } }
        public int Position { get { throw null; } }
    }
    [System.SerializableAttribute]
    public partial class FieldReaderException : System.SystemException
    {
        public FieldReaderException() { }
        public FieldReaderException(System.Exception cause) { }
        public FieldReaderException(string message) { }
        public FieldReaderException(string message, System.Exception cause) { }
    }
    public partial class FieldSortedTermVectorMapper : Lucene.Net.Index.TermVectorMapper
    {
        public FieldSortedTermVectorMapper(bool ignoringPositions, bool ignoringOffsets, System.Collections.Generic.IComparer<Lucene.Net.Index.TermVectorEntry> comparator) { }
        public FieldSortedTermVectorMapper(System.Collections.Generic.IComparer<Lucene.Net.Index.TermVectorEntry> comparator) { }
        public virtual System.Collections.Generic.IComparer<Lucene.Net.Index.TermVectorEntry> Comparator { get { throw null; } }
        public virtual System.Collections.Generic.IDictionary<string, System.Collections.Generic.SortedSet<Lucene.Net.Index.TermVectorEntry>> FieldToTerms { get { throw null; } }
        public override void Map(string term, int frequency, Lucene.Net.Index.TermVectorOffsetInfo[] offsets, int[] positions) { }
        public override void SetExpectations(string field, int numTerms, bool storeOffsets, bool storePositions) { }
    }
    public sealed partial class FieldsReader : System.ICloneable, System.IDisposable
    {
        public FieldsReader(Lucene.Net.Store.Directory d, string segment, Lucene.Net.Index.FieldInfos fn) { }
        public object Clone() { throw null; }
        public void Dispose() { }
        public Lucene.Net.Documents.Document Doc(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        public int Size() { throw null; }
    }
    public partial class FilterIndexReader : Lucene.Net.Index.IndexReader
    {
        protected internal Lucene.Net.Index.IndexReader in_Renamed;
        public FilterIndexReader(Lucene.Net.Index.IndexReader in_Renamed) { }
        public override object DeletesCacheKey { get { throw null; } }
        public override object FieldCacheKey { get { throw null; } }
        public override bool HasDeletions { get { throw null; } }
        public override int MaxDoc { get { throw null; } }
        public override long Version { get { throw null; } }
        public override object Clone() { throw null; }
        public override Lucene.Net.Store.Directory Directory() { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term t) { throw null; }
        protected internal override void DoClose() { }
        protected internal override void DoCommit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public override Lucene.Net.Documents.Document Document(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        protected internal override void DoDelete(int n) { }
        protected internal override void DoSetNorm(int d, string f, byte b) { }
        protected internal override void DoUndeleteAll() { }
        public override System.Collections.Generic.ICollection<string> GetFieldNames(Lucene.Net.Index.IndexReader.FieldOption fieldNames) { throw null; }
        public override Lucene.Net.Index.IndexReader[] GetSequentialSubReaders() { throw null; }
        public override void GetTermFreqVector(int docNumber, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector GetTermFreqVector(int docNumber, string field) { throw null; }
        public override void GetTermFreqVector(int docNumber, string field, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector[] GetTermFreqVectors(int docNumber) { throw null; }
        public override bool HasNorms(string field) { throw null; }
        public override bool IsCurrent() { throw null; }
        public override bool IsDeleted(int n) { throw null; }
        public override bool IsOptimized() { throw null; }
        public override byte[] Norms(string f) { throw null; }
        public override void Norms(string f, byte[] bytes, int offset) { }
        public override int NumDocs() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs(Lucene.Net.Index.Term term) { throw null; }
        public override Lucene.Net.Index.TermPositions TermPositions() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms(Lucene.Net.Index.Term t) { throw null; }
        public partial class FilterTermDocs : Lucene.Net.Index.TermDocs, System.IDisposable
        {
            protected internal Lucene.Net.Index.TermDocs in_Renamed;
            public FilterTermDocs(Lucene.Net.Index.TermDocs in_Renamed) { }
            public virtual int Doc { get { throw null; } }
            public virtual int Freq { get { throw null; } }
            public void Close() { }
            public void Dispose() { }
            protected virtual void Dispose(bool disposing) { }
            public virtual bool Next() { throw null; }
            public virtual int Read(int[] docs, int[] freqs) { throw null; }
            public virtual void Seek(Lucene.Net.Index.Term term) { }
            public virtual void Seek(Lucene.Net.Index.TermEnum termEnum) { }
            public virtual bool SkipTo(int i) { throw null; }
        }
        public partial class FilterTermEnum : Lucene.Net.Index.TermEnum
        {
            protected internal Lucene.Net.Index.TermEnum in_Renamed;
            public FilterTermEnum(Lucene.Net.Index.TermEnum in_Renamed) { }
            public override Lucene.Net.Index.Term Term { get { throw null; } }
            protected override void Dispose(bool disposing) { }
            public override int DocFreq() { throw null; }
            public override bool Next() { throw null; }
        }
        public partial class FilterTermPositions : Lucene.Net.Index.FilterIndexReader.FilterTermDocs, Lucene.Net.Index.TermDocs, Lucene.Net.Index.TermPositions, System.IDisposable
        {
            public FilterTermPositions(Lucene.Net.Index.TermPositions in_Renamed) : base (default(Lucene.Net.Index.TermDocs)) { }
            public virtual bool IsPayloadAvailable { get { throw null; } }
            public virtual int PayloadLength { get { throw null; } }
            public virtual byte[] GetPayload(byte[] data, int offset) { throw null; }
            public virtual int NextPosition() { throw null; }
        }
    }
    public abstract partial class IndexCommit
    {
        protected IndexCommit() { }
        public abstract Lucene.Net.Store.Directory Directory { get; }
        public abstract System.Collections.Generic.ICollection<string> FileNames { get; }
        public abstract long Generation { get; }
        public abstract bool IsDeleted { get; }
        public abstract bool IsOptimized { get; }
        public abstract string SegmentsFileName { get; }
        public virtual long Timestamp { get { throw null; } }
        public abstract System.Collections.Generic.IDictionary<string, string> UserData { get; }
        public abstract long Version { get; }
        public abstract void Delete();
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    public partial interface IndexDeletionPolicy
    {
        void OnCommit<T>(System.Collections.Generic.IList<T> commits) where T : Lucene.Net.Index.IndexCommit;
        void OnInit<T>(System.Collections.Generic.IList<T> commits) where T : Lucene.Net.Index.IndexCommit;
    }
    public sealed partial class IndexFileDeleter : System.IDisposable
    {
        public static bool VERBOSE_REF_COUNTS;
        public IndexFileDeleter(Lucene.Net.Store.Directory directory, Lucene.Net.Index.IndexDeletionPolicy policy, Lucene.Net.Index.SegmentInfos segmentInfos, System.IO.StreamWriter infoStream, Lucene.Net.Index.DocumentsWriter docWriter, System.Collections.Generic.HashSet<string> synced) { }
        public Lucene.Net.Index.SegmentInfos LastSegmentInfos { get { throw null; } }
        public void Checkpoint(Lucene.Net.Index.SegmentInfos segmentInfos, bool isCommit) { }
        public void Dispose() { }
        public bool Exists(string fileName) { throw null; }
        public void Refresh() { }
        public void Refresh(string segmentName) { }
    }
    public partial class IndexFileNameFilter
    {
        internal IndexFileNameFilter() { }
        public static Lucene.Net.Index.IndexFileNameFilter Filter { get { throw null; } }
        public virtual bool Accept(System.IO.FileInfo dir, string name) { throw null; }
        public virtual bool IsCFSFile(string name) { throw null; }
    }
    public sealed partial class IndexFileNames
    {
        public static readonly string[] COMPOUND_EXTENSIONS;
        public const string COMPOUND_FILE_EXTENSION = "cfs";
        public const string COMPOUND_FILE_STORE_EXTENSION = "cfx";
        public const string DELETABLE = "deletable";
        public const string FIELDS_EXTENSION = "fdt";
        public const string FIELDS_INDEX_EXTENSION = "fdx";
        public const string FIELD_INFOS_EXTENSION = "fnm";
        public const string FREQ_EXTENSION = "frq";
        public const string GEN_EXTENSION = "gen";
        public static readonly string[] INDEX_EXTENSIONS;
        public static readonly string[] INDEX_EXTENSIONS_IN_COMPOUND_FILE;
        public static readonly string[] NON_STORE_INDEX_EXTENSIONS;
        public const string NORMS_EXTENSION = "nrm";
        public const string PLAIN_NORMS_EXTENSION = "f";
        public const string PROX_EXTENSION = "prx";
        public const string SEGMENTS = "segments";
        public const string SEGMENTS_GEN = "segments.gen";
        public const string SEPARATE_NORMS_EXTENSION = "s";
        public static readonly string[] STORE_INDEX_EXTENSIONS;
        public const string TERMS_EXTENSION = "tis";
        public const string TERMS_INDEX_EXTENSION = "tii";
        public const string VECTORS_DOCUMENTS_EXTENSION = "tvd";
        public const string VECTORS_FIELDS_EXTENSION = "tvf";
        public const string VECTORS_INDEX_EXTENSION = "tvx";
        public static readonly string[] VECTOR_EXTENSIONS;
        public IndexFileNames() { }
        public static string FileNameFromGeneration(string base_Renamed, string extension, long gen) { throw null; }
    }
    public abstract partial class IndexReader : System.ICloneable, System.IDisposable
    {
        protected internal static int DEFAULT_TERMS_INDEX_DIVISOR;
        protected internal bool hasChanges;
        protected internal IndexReader() { }
        public virtual System.Collections.Generic.IDictionary<string, string> CommitUserData { get { throw null; } }
        public virtual object DeletesCacheKey { get { throw null; } }
        public virtual object FieldCacheKey { get { throw null; } }
        public abstract bool HasDeletions { get; }
        public virtual Lucene.Net.Index.IndexCommit IndexCommit { get { throw null; } }
        public Lucene.Net.Documents.Document this[int doc] { get { throw null; } }
        public abstract int MaxDoc { get; }
        public virtual int NumDeletedDocs { get { throw null; } }
        public virtual int RefCount { get { throw null; } }
        public virtual int TermInfosIndexDivisor { get { throw null; } }
        public virtual long UniqueTermCount { get { throw null; } }
        public virtual long Version { get { throw null; } }
        protected internal virtual void AcquireWriteLock() { }
        public virtual object Clone() { throw null; }
        public virtual Lucene.Net.Index.IndexReader Clone(bool openReadOnly) { throw null; }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Commit() { }
        public void Commit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public virtual void DecRef() { }
        public virtual void DeleteDocument(int docNum) { }
        public virtual int DeleteDocuments(Lucene.Net.Index.Term term) { throw null; }
        public virtual Lucene.Net.Store.Directory Directory() { throw null; }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public abstract int DocFreq(Lucene.Net.Index.Term t);
        protected internal abstract void DoClose();
        protected internal abstract void DoCommit(System.Collections.Generic.IDictionary<string, string> commitUserData);
        public virtual Lucene.Net.Documents.Document Document(int n) { throw null; }
        public abstract Lucene.Net.Documents.Document Document(int n, Lucene.Net.Documents.FieldSelector fieldSelector);
        protected internal abstract void DoDelete(int docNum);
        protected internal abstract void DoSetNorm(int doc, string field, byte value_Renamed);
        protected internal abstract void DoUndeleteAll();
        protected internal void EnsureOpen() { }
        public void Flush() { }
        public void Flush(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public static System.Collections.Generic.IDictionary<string, string> GetCommitUserData(Lucene.Net.Store.Directory directory) { throw null; }
        public static long GetCurrentVersion(Lucene.Net.Store.Directory directory) { throw null; }
        public abstract System.Collections.Generic.ICollection<string> GetFieldNames(Lucene.Net.Index.IndexReader.FieldOption fldOption);
        public virtual Lucene.Net.Index.IndexReader[] GetSequentialSubReaders() { throw null; }
        public abstract void GetTermFreqVector(int docNumber, Lucene.Net.Index.TermVectorMapper mapper);
        public abstract Lucene.Net.Index.ITermFreqVector GetTermFreqVector(int docNumber, string field);
        public abstract void GetTermFreqVector(int docNumber, string field, Lucene.Net.Index.TermVectorMapper mapper);
        public abstract Lucene.Net.Index.ITermFreqVector[] GetTermFreqVectors(int docNumber);
        public virtual bool HasNorms(string field) { throw null; }
        public virtual void IncRef() { }
        public static bool IndexExists(Lucene.Net.Store.Directory directory) { throw null; }
        public virtual bool IsCurrent() { throw null; }
        public abstract bool IsDeleted(int n);
        public virtual bool IsOptimized() { throw null; }
        public static long LastModified(Lucene.Net.Store.Directory directory2) { throw null; }
        public static System.Collections.Generic.ICollection<Lucene.Net.Index.IndexCommit> ListCommits(Lucene.Net.Store.Directory dir) { throw null; }
        [System.STAThreadAttribute]
        public static void Main(string[] args) { }
        public abstract byte[] Norms(string field);
        public abstract void Norms(string field, byte[] bytes, int offset);
        public abstract int NumDocs();
        public static Lucene.Net.Index.IndexReader Open(Lucene.Net.Index.IndexCommit commit, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, bool readOnly) { throw null; }
        public static Lucene.Net.Index.IndexReader Open(Lucene.Net.Index.IndexCommit commit, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, bool readOnly, int termInfosIndexDivisor) { throw null; }
        public static Lucene.Net.Index.IndexReader Open(Lucene.Net.Index.IndexCommit commit, bool readOnly) { throw null; }
        public static Lucene.Net.Index.IndexReader Open(Lucene.Net.Store.Directory directory, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, bool readOnly) { throw null; }
        public static Lucene.Net.Index.IndexReader Open(Lucene.Net.Store.Directory directory, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, bool readOnly, int termInfosIndexDivisor) { throw null; }
        public static Lucene.Net.Index.IndexReader Open(Lucene.Net.Store.Directory directory, bool readOnly) { throw null; }
        public virtual Lucene.Net.Index.IndexReader Reopen() { throw null; }
        public virtual Lucene.Net.Index.IndexReader Reopen(Lucene.Net.Index.IndexCommit commit) { throw null; }
        public virtual Lucene.Net.Index.IndexReader Reopen(bool openReadOnly) { throw null; }
        public virtual void SetNorm(int doc, string field, byte value) { }
        public virtual void SetNorm(int doc, string field, float value) { }
        public abstract Lucene.Net.Index.TermDocs TermDocs();
        public virtual Lucene.Net.Index.TermDocs TermDocs(Lucene.Net.Index.Term term) { throw null; }
        public abstract Lucene.Net.Index.TermPositions TermPositions();
        public virtual Lucene.Net.Index.TermPositions TermPositions(Lucene.Net.Index.Term term) { throw null; }
        public abstract Lucene.Net.Index.TermEnum Terms();
        public abstract Lucene.Net.Index.TermEnum Terms(Lucene.Net.Index.Term t);
        public virtual void UndeleteAll() { }
        public sealed partial class FieldOption
        {
            internal FieldOption() { }
            public static readonly Lucene.Net.Index.IndexReader.FieldOption ALL;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption INDEXED;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption INDEXED_NO_TERMVECTOR;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption INDEXED_WITH_TERMVECTOR;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption OMIT_TERM_FREQ_AND_POSITIONS;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption STORES_PAYLOADS;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption TERMVECTOR;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption TERMVECTOR_WITH_OFFSET;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption TERMVECTOR_WITH_POSITION;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption TERMVECTOR_WITH_POSITION_OFFSET;
            public static readonly Lucene.Net.Index.IndexReader.FieldOption UNINDEXED;
            public override string ToString() { throw null; }
        }
    }
    public partial class IndexWriter : System.IDisposable
    {
        public static readonly int DEFAULT_MAX_BUFFERED_DELETE_TERMS;
        public static readonly int DEFAULT_MAX_BUFFERED_DOCS;
        public const int DEFAULT_MAX_FIELD_LENGTH = 10000;
        public const double DEFAULT_RAM_BUFFER_SIZE_MB = 16;
        public const int DEFAULT_TERM_INDEX_INTERVAL = 128;
        public const int DISABLE_AUTO_FLUSH = -1;
        public static readonly int MAX_TERM_LENGTH;
        public const string WRITE_LOCK_NAME = "write.lock";
        public static long WRITE_LOCK_TIMEOUT;
        public IndexWriter(Lucene.Net.Store.Directory d, Lucene.Net.Analysis.Analyzer a, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, Lucene.Net.Index.IndexWriter.MaxFieldLength mfl) { }
        public IndexWriter(Lucene.Net.Store.Directory d, Lucene.Net.Analysis.Analyzer a, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, Lucene.Net.Index.IndexWriter.MaxFieldLength mfl, Lucene.Net.Index.IndexCommit commit) { }
        public IndexWriter(Lucene.Net.Store.Directory d, Lucene.Net.Analysis.Analyzer a, Lucene.Net.Index.IndexWriter.MaxFieldLength mfl) { }
        public IndexWriter(Lucene.Net.Store.Directory d, Lucene.Net.Analysis.Analyzer a, bool create, Lucene.Net.Index.IndexDeletionPolicy deletionPolicy, Lucene.Net.Index.IndexWriter.MaxFieldLength mfl) { }
        public IndexWriter(Lucene.Net.Store.Directory d, Lucene.Net.Analysis.Analyzer a, bool create, Lucene.Net.Index.IndexWriter.MaxFieldLength mfl) { }
        public virtual Lucene.Net.Analysis.Analyzer Analyzer { get { throw null; } }
        public static System.IO.StreamWriter DefaultInfoStream { get { throw null; } set { } }
        public static long DefaultWriteLockTimeout { get { throw null; } set { } }
        public virtual Lucene.Net.Store.Directory Directory { get { throw null; } }
        public virtual System.IO.StreamWriter InfoStream { get { throw null; } }
        public virtual int MaxMergeDocs { get { throw null; } set { } }
        public virtual Lucene.Net.Index.IndexWriter.IndexReaderWarmer MergedSegmentWarmer { get { throw null; } set { } }
        public virtual int MergeFactor { get { throw null; } set { } }
        public virtual Lucene.Net.Index.MergePolicy MergePolicy { get { throw null; } }
        public virtual Lucene.Net.Index.MergeScheduler MergeScheduler { get { throw null; } }
        public int ReaderTermsIndexDivisor { get { throw null; } set { } }
        public virtual Lucene.Net.Search.Similarity Similarity { get { throw null; } }
        public virtual int TermIndexInterval { get { throw null; } set { } }
        public virtual bool UseCompoundFile { get { throw null; } set { } }
        public virtual bool Verbose { get { throw null; } }
        public virtual long WriteLockTimeout { get { throw null; } set { } }
        public virtual void AddDocument(Lucene.Net.Documents.Document doc) { }
        public virtual void AddDocument(Lucene.Net.Documents.Document doc, Lucene.Net.Analysis.Analyzer analyzer) { }
        public virtual void AddIndexes(params Lucene.Net.Index.IndexReader[] readers) { }
        public virtual void AddIndexesNoOptimize(params Lucene.Net.Store.Directory[] dirs) { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        [System.ObsoleteAttribute("Use Dispose(bool) instead")]
        public virtual void Close(bool waitForMerges) { }
        public void Commit() { }
        public void Commit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public virtual void DeleteAll() { }
        public virtual void DeleteDocuments(Lucene.Net.Index.Term term) { }
        public virtual void DeleteDocuments(params Lucene.Net.Index.Term[] terms) { }
        public virtual void DeleteDocuments(Lucene.Net.Search.Query query) { }
        public virtual void DeleteDocuments(params Lucene.Net.Search.Query[] queries) { }
        public virtual void Dispose() { }
        public virtual void Dispose(bool waitForMerges) { }
        protected virtual void Dispose(bool disposing, bool waitForMerges) { }
        protected virtual void DoAfterFlush() { }
        protected virtual void DoBeforeFlush() { }
        protected internal void EnsureOpen() { }
        protected internal void EnsureOpen(bool includePendingClose) { }
        public virtual void ExpungeDeletes() { }
        public virtual void ExpungeDeletes(bool doWait) { }
        public void Flush(bool triggerMerge, bool flushDocStores, bool flushDeletes) { }
        public int GetDocCount(int i) { throw null; }
        public virtual int GetMaxBufferedDeleteTerms() { throw null; }
        public virtual int GetMaxBufferedDocs() { throw null; }
        public virtual int GetMaxFieldLength() { throw null; }
        public virtual double GetRAMBufferSizeMB() { throw null; }
        public virtual Lucene.Net.Index.IndexReader GetReader() { throw null; }
        public virtual Lucene.Net.Index.IndexReader GetReader(int termInfosIndexDivisor) { throw null; }
        public virtual bool HasDeletions() { throw null; }
        public static bool IsLocked(Lucene.Net.Store.Directory directory) { throw null; }
        public virtual int MaxDoc() { throw null; }
        public void MaybeMerge() { }
        public void Merge_ForNUnit(Lucene.Net.Index.MergePolicy.OneMerge merge) { }
        public virtual void Message(string message) { }
        public virtual Lucene.Net.Index.SegmentInfo NewestSegment() { throw null; }
        public virtual int NumDeletedDocs(Lucene.Net.Index.SegmentInfo info) { throw null; }
        public virtual int NumDocs() { throw null; }
        public int NumRamDocs() { throw null; }
        public virtual void Optimize() { }
        public virtual void Optimize(bool doWait) { }
        public virtual void Optimize(int maxNumSegments) { }
        public virtual void Optimize(int maxNumSegments, bool doWait) { }
        public void PrepareCommit() { }
        public long RamSizeInBytes() { throw null; }
        public virtual void Rollback() { }
        public virtual string SegString() { throw null; }
        public virtual void SetInfoStream(System.IO.StreamWriter infoStream) { }
        public virtual void SetMaxBufferedDeleteTerms(int maxBufferedDeleteTerms) { }
        public virtual void SetMaxBufferedDocs(int maxBufferedDocs) { }
        public virtual void SetMaxFieldLength(int maxFieldLength) { }
        public virtual void SetMergePolicy(Lucene.Net.Index.MergePolicy mp) { }
        public virtual void SetMergeScheduler(Lucene.Net.Index.MergeScheduler mergeScheduler) { }
        public virtual void SetRAMBufferSizeMB(double mb) { }
        public virtual void SetSimilarity(Lucene.Net.Search.Similarity similarity) { }
        public virtual bool TestPoint(string name) { throw null; }
        public static void Unlock(Lucene.Net.Store.Directory directory) { }
        public virtual void UpdateDocument(Lucene.Net.Index.Term term, Lucene.Net.Documents.Document doc) { }
        public virtual void UpdateDocument(Lucene.Net.Index.Term term, Lucene.Net.Documents.Document doc, Lucene.Net.Analysis.Analyzer analyzer) { }
        public virtual void WaitForMerges() { }
        public abstract partial class IndexReaderWarmer
        {
            protected IndexReaderWarmer() { }
            public abstract void Warm(Lucene.Net.Index.IndexReader reader);
        }
        public sealed partial class MaxFieldLength
        {
            public static readonly Lucene.Net.Index.IndexWriter.MaxFieldLength LIMITED;
            public static readonly Lucene.Net.Index.IndexWriter.MaxFieldLength UNLIMITED;
            public MaxFieldLength(int limit) { }
            public int Limit { get { throw null; } }
            public override string ToString() { throw null; }
        }
    }
    public partial interface ITermFreqVector
    {
        string Field { get; }
        int Size { get; }
        int[] GetTermFrequencies();
        string[] GetTerms();
        int[] IndexesOf(string[] terms, int start, int len);
        int IndexOf(string term);
    }
    public sealed partial class KeepOnlyLastCommitDeletionPolicy : Lucene.Net.Index.IndexDeletionPolicy
    {
        public KeepOnlyLastCommitDeletionPolicy() { }
        public void OnCommit<T>(System.Collections.Generic.IList<T> commits) where T : Lucene.Net.Index.IndexCommit { }
        public void OnInit<T>(System.Collections.Generic.IList<T> commits) where T : Lucene.Net.Index.IndexCommit { }
    }
    public partial class LogByteSizeMergePolicy : Lucene.Net.Index.LogMergePolicy
    {
        public static readonly long DEFAULT_MAX_MERGE_MB;
        public const double DEFAULT_MIN_MERGE_MB = 1.6;
        public LogByteSizeMergePolicy(Lucene.Net.Index.IndexWriter writer) : base (default(Lucene.Net.Index.IndexWriter)) { }
        public virtual double MaxMergeMB { get { throw null; } set { } }
        public virtual double MinMergeMB { get { throw null; } set { } }
        protected override void Dispose(bool disposing) { }
        protected internal override long Size(Lucene.Net.Index.SegmentInfo info) { throw null; }
    }
    public partial class LogDocMergePolicy : Lucene.Net.Index.LogMergePolicy
    {
        public const int DEFAULT_MIN_MERGE_DOCS = 1000;
        public LogDocMergePolicy(Lucene.Net.Index.IndexWriter writer) : base (default(Lucene.Net.Index.IndexWriter)) { }
        public virtual int MinMergeDocs { get { throw null; } set { } }
        protected override void Dispose(bool disposing) { }
        protected internal override long Size(Lucene.Net.Index.SegmentInfo info) { throw null; }
    }
    public abstract partial class LogMergePolicy : Lucene.Net.Index.MergePolicy
    {
        public static readonly int DEFAULT_MAX_MERGE_DOCS;
        public const int DEFAULT_MERGE_FACTOR = 10;
        public static double DEFAULT_NO_CFS_RATIO;
        protected internal bool internalCalibrateSizeByDeletes;
        protected double internalNoCFSRatio;
        public const double LEVEL_LOG_SPAN = 0.75;
        protected LogMergePolicy(Lucene.Net.Index.IndexWriter writer) : base (default(Lucene.Net.Index.IndexWriter)) { }
        public virtual bool CalibrateSizeByDeletes { get { throw null; } set { } }
        public virtual int MaxMergeDocs { get { throw null; } set { } }
        public virtual int MergeFactor { get { throw null; } set { } }
        public double NoCFSRatio { get { throw null; } set { } }
        public override Lucene.Net.Index.MergePolicy.MergeSpecification FindMerges(Lucene.Net.Index.SegmentInfos infos) { throw null; }
        public override Lucene.Net.Index.MergePolicy.MergeSpecification FindMergesForOptimize(Lucene.Net.Index.SegmentInfos infos, int maxNumSegments, System.Collections.Generic.ISet<Lucene.Net.Index.SegmentInfo> segmentsToOptimize) { throw null; }
        public override Lucene.Net.Index.MergePolicy.MergeSpecification FindMergesToExpungeDeletes(Lucene.Net.Index.SegmentInfos segmentInfos) { throw null; }
        public virtual bool GetUseCompoundDocStore() { throw null; }
        public virtual bool GetUseCompoundFile() { throw null; }
        protected Lucene.Net.Index.MergePolicy.OneMerge MakeOneMerge(Lucene.Net.Index.SegmentInfos infos, Lucene.Net.Index.SegmentInfos infosToMerge) { throw null; }
        public virtual void SetUseCompoundDocStore(bool useCompoundDocStore) { }
        public virtual void SetUseCompoundFile(bool useCompoundFile) { }
        protected internal abstract long Size(Lucene.Net.Index.SegmentInfo info);
        protected internal virtual long SizeBytes(Lucene.Net.Index.SegmentInfo info) { throw null; }
        protected internal virtual long SizeDocs(Lucene.Net.Index.SegmentInfo info) { throw null; }
        public override bool UseCompoundDocStore(Lucene.Net.Index.SegmentInfos infos) { throw null; }
        public override bool UseCompoundFile(Lucene.Net.Index.SegmentInfos infos, Lucene.Net.Index.SegmentInfo info) { throw null; }
        protected internal virtual bool Verbose() { throw null; }
    }
    public abstract partial class MergePolicy : System.IDisposable
    {
        protected internal Lucene.Net.Index.IndexWriter writer;
        protected MergePolicy(Lucene.Net.Index.IndexWriter writer) { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract Lucene.Net.Index.MergePolicy.MergeSpecification FindMerges(Lucene.Net.Index.SegmentInfos segmentInfos);
        public abstract Lucene.Net.Index.MergePolicy.MergeSpecification FindMergesForOptimize(Lucene.Net.Index.SegmentInfos segmentInfos, int maxSegmentCount, System.Collections.Generic.ISet<Lucene.Net.Index.SegmentInfo> segmentsToOptimize);
        public abstract Lucene.Net.Index.MergePolicy.MergeSpecification FindMergesToExpungeDeletes(Lucene.Net.Index.SegmentInfos segmentInfos);
        public abstract bool UseCompoundDocStore(Lucene.Net.Index.SegmentInfos segments);
        public abstract bool UseCompoundFile(Lucene.Net.Index.SegmentInfos segments, Lucene.Net.Index.SegmentInfo newSegment);
        [System.SerializableAttribute]
        public partial class MergeAbortedException : System.IO.IOException
        {
            public MergeAbortedException() { }
            public MergeAbortedException(string message) { }
        }
        [System.SerializableAttribute]
        public partial class MergeException : System.SystemException
        {
            public MergeException(System.Exception exc, Lucene.Net.Store.Directory dir) { }
            public MergeException(string message, Lucene.Net.Store.Directory dir) { }
            public virtual Lucene.Net.Store.Directory Directory { get { throw null; } }
        }
        public partial class MergeSpecification
        {
            public System.Collections.Generic.IList<Lucene.Net.Index.MergePolicy.OneMerge> merges;
            public MergeSpecification() { }
            public virtual void Add(Lucene.Net.Index.MergePolicy.OneMerge merge) { }
            public virtual string SegString(Lucene.Net.Store.Directory dir) { throw null; }
        }
        public partial class OneMerge
        {
            public OneMerge(Lucene.Net.Index.SegmentInfos segments, bool useCompoundFile) { }
            public Lucene.Net.Index.SegmentInfos segments_ForNUnit { get { throw null; } }
        }
    }
    public abstract partial class MergeScheduler : System.IDisposable
    {
        protected MergeScheduler() { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract void Merge(Lucene.Net.Index.IndexWriter writer);
    }
    public partial class MultipleTermPositions : Lucene.Net.Index.TermDocs, Lucene.Net.Index.TermPositions, System.IDisposable
    {
        public MultipleTermPositions(Lucene.Net.Index.IndexReader indexReader, Lucene.Net.Index.Term[] terms) { }
        public int Doc { get { throw null; } }
        public int Freq { get { throw null; } }
        public virtual bool IsPayloadAvailable { get { throw null; } }
        public virtual int PayloadLength { get { throw null; } }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public virtual byte[] GetPayload(byte[] data, int offset) { throw null; }
        public bool Next() { throw null; }
        public int NextPosition() { throw null; }
        public virtual int Read(int[] arg0, int[] arg1) { throw null; }
        public virtual void Seek(Lucene.Net.Index.Term arg0) { }
        public virtual void Seek(Lucene.Net.Index.TermEnum termEnum) { }
        public bool SkipTo(int target) { throw null; }
    }
    public partial class MultiReader : Lucene.Net.Index.IndexReader, System.ICloneable
    {
        protected internal Lucene.Net.Index.IndexReader[] subReaders;
        public MultiReader(params Lucene.Net.Index.IndexReader[] subReaders) { }
        public MultiReader(Lucene.Net.Index.IndexReader[] subReaders, bool closeSubReaders) { }
        public override bool HasDeletions { get { throw null; } }
        public override int MaxDoc { get { throw null; } }
        public override long Version { get { throw null; } }
        public override object Clone() { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term t) { throw null; }
        protected internal override void DoClose() { }
        protected internal override void DoCommit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public override Lucene.Net.Documents.Document Document(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        protected internal override void DoDelete(int n) { }
        protected internal virtual Lucene.Net.Index.IndexReader DoReopen(bool doClone) { throw null; }
        protected internal override void DoSetNorm(int n, string field, byte value_Renamed) { }
        protected internal override void DoUndeleteAll() { }
        public override System.Collections.Generic.ICollection<string> GetFieldNames(Lucene.Net.Index.IndexReader.FieldOption fieldNames) { throw null; }
        public override Lucene.Net.Index.IndexReader[] GetSequentialSubReaders() { throw null; }
        public override void GetTermFreqVector(int docNumber, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector GetTermFreqVector(int n, string field) { throw null; }
        public override void GetTermFreqVector(int docNumber, string field, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector[] GetTermFreqVectors(int n) { throw null; }
        public override bool HasNorms(string field) { throw null; }
        public override bool IsCurrent() { throw null; }
        public override bool IsDeleted(int n) { throw null; }
        public override bool IsOptimized() { throw null; }
        public override byte[] Norms(string field) { throw null; }
        public override void Norms(string field, byte[] result, int offset) { }
        public override int NumDocs() { throw null; }
        public override Lucene.Net.Index.IndexReader Reopen() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs() { throw null; }
        public override Lucene.Net.Index.TermPositions TermPositions() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms(Lucene.Net.Index.Term term) { throw null; }
    }
    public partial class ParallelReader : Lucene.Net.Index.IndexReader, System.ICloneable
    {
        public ParallelReader() { }
        public ParallelReader(bool closeSubReaders) { }
        public override bool HasDeletions { get { throw null; } }
        public override int MaxDoc { get { throw null; } }
        public override long Version { get { throw null; } }
        public virtual void Add(Lucene.Net.Index.IndexReader reader) { }
        public virtual void Add(Lucene.Net.Index.IndexReader reader, bool ignoreStoredFields) { }
        public override object Clone() { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term term) { throw null; }
        protected internal override void DoClose() { }
        protected internal override void DoCommit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public override Lucene.Net.Documents.Document Document(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        protected internal override void DoDelete(int n) { }
        protected internal virtual Lucene.Net.Index.IndexReader DoReopen(bool doClone) { throw null; }
        protected internal override void DoSetNorm(int n, string field, byte value_Renamed) { }
        protected internal override void DoUndeleteAll() { }
        public override System.Collections.Generic.ICollection<string> GetFieldNames(Lucene.Net.Index.IndexReader.FieldOption fieldNames) { throw null; }
        public virtual Lucene.Net.Index.IndexReader[] GetSubReaders() { throw null; }
        public override void GetTermFreqVector(int docNumber, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector GetTermFreqVector(int n, string field) { throw null; }
        public override void GetTermFreqVector(int docNumber, string field, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector[] GetTermFreqVectors(int n) { throw null; }
        public override bool HasNorms(string field) { throw null; }
        public override bool IsCurrent() { throw null; }
        public override bool IsDeleted(int n) { throw null; }
        public override bool IsOptimized() { throw null; }
        public override byte[] Norms(string field) { throw null; }
        public override void Norms(string field, byte[] result, int offset) { }
        public override int NumDocs() { throw null; }
        public override Lucene.Net.Index.IndexReader Reopen() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs(Lucene.Net.Index.Term term) { throw null; }
        public override Lucene.Net.Index.TermPositions TermPositions() { throw null; }
        public override Lucene.Net.Index.TermPositions TermPositions(Lucene.Net.Index.Term term) { throw null; }
        public override Lucene.Net.Index.TermEnum Terms() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms(Lucene.Net.Index.Term term) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class Payload : System.ICloneable
    {
        protected internal byte[] data;
        protected internal int internalLength;
        protected internal int internalOffset;
        public Payload() { }
        public Payload(byte[] data) { }
        public Payload(byte[] data, int offset, int length) { }
        public virtual int Length { get { throw null; } }
        public virtual int Offset { get { throw null; } }
        public virtual byte ByteAt(int index) { throw null; }
        public virtual object Clone() { throw null; }
        public virtual void CopyTo(byte[] target, int targetOffset) { }
        public override bool Equals(object obj) { throw null; }
        public virtual byte[] GetData() { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual void SetData(byte[] value) { }
        public virtual void SetData(byte[] value, int offset, int length) { }
        public virtual byte[] ToByteArray() { throw null; }
    }
    public partial class PositionBasedTermVectorMapper : Lucene.Net.Index.TermVectorMapper
    {
        public PositionBasedTermVectorMapper() { }
        public PositionBasedTermVectorMapper(bool ignoringOffsets) { }
        public virtual System.Collections.Generic.IDictionary<string, System.Collections.Generic.IDictionary<int, Lucene.Net.Index.PositionBasedTermVectorMapper.TVPositionInfo>> FieldToTerms { get { throw null; } }
        public override bool IsIgnoringPositions { get { throw null; } }
        public override void Map(string term, int frequency, Lucene.Net.Index.TermVectorOffsetInfo[] offsets, int[] positions) { }
        public override void SetExpectations(string field, int numTerms, bool storeOffsets, bool storePositions) { }
        public partial class TVPositionInfo
        {
            public TVPositionInfo(int position, bool storeOffsets) { }
            public virtual System.Collections.Generic.IList<Lucene.Net.Index.TermVectorOffsetInfo> Offsets { get { throw null; } }
            public virtual int Position { get { throw null; } }
            public virtual System.Collections.Generic.IList<string> Terms { get { throw null; } }
        }
    }
    public partial class ReadOnlyDirectoryReader : Lucene.Net.Index.DirectoryReader
    {
        internal ReadOnlyDirectoryReader() { }
        protected internal override void AcquireWriteLock() { }
    }
    public partial class ReadOnlySegmentReader : Lucene.Net.Index.SegmentReader
    {
        public ReadOnlySegmentReader() { }
        protected internal override void AcquireWriteLock() { }
        public override bool IsDeleted(int n) { throw null; }
    }
    public sealed partial class SegmentInfo : System.ICloneable
    {
        public Lucene.Net.Store.Directory dir;
        public int docCount;
        public string name;
        public SegmentInfo(string name, int docCount, Lucene.Net.Store.Directory dir) { }
        public SegmentInfo(string name, int docCount, Lucene.Net.Store.Directory dir, bool isCompoundFile, bool hasSingleNormFile) { }
        public SegmentInfo(string name, int docCount, Lucene.Net.Store.Directory dir, bool isCompoundFile, bool hasSingleNormFile, int docStoreOffset, string docStoreSegment, bool docStoreIsCompoundFile, bool hasProx) { }
        public System.Collections.Generic.IDictionary<string, string> Diagnostics { get { throw null; } }
        public bool DocStoreIsCompoundFile { get { throw null; } }
        public int DocStoreOffset { get { throw null; } }
        public string DocStoreSegment { get { throw null; } }
        public bool HasProx { get { throw null; } }
        public object Clone() { throw null; }
        public override bool Equals(object obj) { throw null; }
        public System.Collections.Generic.IList<string> Files() { throw null; }
        public int GetDelCount() { throw null; }
        public string GetDelFileName() { throw null; }
        public override int GetHashCode() { throw null; }
        public string GetNormFileName(int number) { throw null; }
        public bool GetUseCompoundFile() { throw null; }
        public bool HasDeletions() { throw null; }
        public bool HasSeparateNorms() { throw null; }
        public bool HasSeparateNorms(int fieldNumber) { throw null; }
        public string SegString(Lucene.Net.Store.Directory dir) { throw null; }
        public long SizeInBytes() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class SegmentInfos : System.Collections.Generic.List<Lucene.Net.Index.SegmentInfo>, System.ICloneable
    {
        public int counter;
        public const int FORMAT = -1;
        public const int FORMAT_CHECKSUM = -5;
        public const int FORMAT_DEL_COUNT = -6;
        public const int FORMAT_DIAGNOSTICS = -9;
        public const int FORMAT_HAS_PROX = -7;
        public const int FORMAT_LOCKLESS = -2;
        public const int FORMAT_SHARED_DOC_STORE = -4;
        public const int FORMAT_SINGLE_NORM_FILE = -3;
        public const int FORMAT_USER_DATA = -8;
        public SegmentInfos() { }
        public static int DefaultGenFileRetryCount { get { throw null; } set { } }
        public static int DefaultGenFileRetryPauseMsec { get { throw null; } set { } }
        public static int DefaultGenLookaheadCount { get { throw null; } set { } }
        public long Generation { get { throw null; } }
        public static System.IO.StreamWriter InfoStream { get { throw null; } }
        public long LastGeneration { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, string> UserData { get { throw null; } }
        public long Version { get { throw null; } }
        public object Clone() { throw null; }
        public void Commit(Lucene.Net.Store.Directory dir) { }
        public override bool Equals(object obj) { throw null; }
        public System.Collections.Generic.ICollection<string> Files(Lucene.Net.Store.Directory dir, bool includeSegmentsFile) { throw null; }
        public static long GenerationFromSegmentsFileName(string fileName) { throw null; }
        public string GetCurrentSegmentFileName() { throw null; }
        public static string GetCurrentSegmentFileName(Lucene.Net.Store.Directory directory) { throw null; }
        public static string GetCurrentSegmentFileName(string[] files) { throw null; }
        public static long GetCurrentSegmentGeneration(Lucene.Net.Store.Directory directory) { throw null; }
        public static long GetCurrentSegmentGeneration(string[] files) { throw null; }
        public override int GetHashCode() { throw null; }
        public string GetNextSegmentFileName() { throw null; }
        public bool HasExternalSegments(Lucene.Net.Store.Directory dir) { throw null; }
        public Lucene.Net.Index.SegmentInfo Info(int i) { throw null; }
        public Lucene.Net.Index.SegmentInfos Range(int first, int last) { throw null; }
        public void Read(Lucene.Net.Store.Directory directory) { }
        public void Read(Lucene.Net.Store.Directory directory, string segmentFileName) { }
        public static System.Collections.Generic.IDictionary<string, string> ReadCurrentUserData(Lucene.Net.Store.Directory directory) { throw null; }
        public static long ReadCurrentVersion(Lucene.Net.Store.Directory directory) { throw null; }
        public string SegString(Lucene.Net.Store.Directory directory) { throw null; }
        public static void SetInfoStream(System.IO.StreamWriter infoStream) { }
        public abstract partial class FindSegmentsFile
        {
            protected FindSegmentsFile(Lucene.Net.Store.Directory directory) { }
            public abstract object DoBody(string segmentFileName);
            public object Run() { throw null; }
            public object Run(Lucene.Net.Index.IndexCommit commit) { throw null; }
        }
    }
    public sealed partial class SegmentMerger
    {
        public SegmentMerger(Lucene.Net.Store.Directory dir, string name) { }
        public void Add(Lucene.Net.Index.IndexReader reader) { }
        public System.Collections.Generic.ICollection<string> CreateCompoundFile(string fileName) { throw null; }
        public int Merge() { throw null; }
    }
    public partial class SegmentReader : Lucene.Net.Index.IndexReader
    {
        protected internal bool readOnly;
        public SegmentReader() { }
        public Lucene.Net.Index.SegmentReader.CoreReaders core_ForNUnit { get { throw null; } }
        public Lucene.Net.Index.SegmentReader.Ref deletedDocsRef_ForNUnit { get { throw null; } }
        public Lucene.Net.Util.BitVector deletedDocs_ForNUnit { get { throw null; } }
        public override object DeletesCacheKey { get { throw null; } }
        public override object FieldCacheKey { get { throw null; } }
        public override bool HasDeletions { get { throw null; } }
        public override int MaxDoc { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, Lucene.Net.Index.SegmentReader.Norm> norms_ForNUnit { get { throw null; } }
        public virtual string SegmentName { get { throw null; } }
        public override int TermInfosIndexDivisor { get { throw null; } }
        public override long UniqueTermCount { get { throw null; } }
        public override object Clone() { throw null; }
        public override Lucene.Net.Index.IndexReader Clone(bool openReadOnly) { throw null; }
        protected internal virtual Lucene.Net.Util.BitVector CloneDeletedDocs(Lucene.Net.Util.BitVector bv) { throw null; }
        protected internal virtual byte[] CloneNormBytes(byte[] bytes) { throw null; }
        public override Lucene.Net.Store.Directory Directory() { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term t) { throw null; }
        protected internal override void DoClose() { }
        protected internal override void DoCommit(System.Collections.Generic.IDictionary<string, string> commitUserData) { }
        public override Lucene.Net.Documents.Document Document(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        protected internal override void DoDelete(int docNum) { }
        protected internal override void DoSetNorm(int doc, string field, byte value_Renamed) { }
        protected internal override void DoUndeleteAll() { }
        public virtual Lucene.Net.Index.FieldInfos FieldInfos() { throw null; }
        public static Lucene.Net.Index.SegmentReader Get(bool readOnly, Lucene.Net.Index.SegmentInfo si, int termInfosIndexDivisor) { throw null; }
        public static Lucene.Net.Index.SegmentReader Get(bool readOnly, Lucene.Net.Store.Directory dir, Lucene.Net.Index.SegmentInfo si, int readBufferSize, bool doOpenStores, int termInfosIndexDivisor) { throw null; }
        public override System.Collections.Generic.ICollection<string> GetFieldNames(Lucene.Net.Index.IndexReader.FieldOption fieldOption) { throw null; }
        protected internal virtual byte[] GetNorms(string field) { throw null; }
        public static Lucene.Net.Index.SegmentReader GetOnlySegmentReader(Lucene.Net.Index.IndexReader reader) { throw null; }
        [System.ObsoleteAttribute("Remove this when tests are fixed!")]
        public static Lucene.Net.Index.SegmentReader GetOnlySegmentReader(Lucene.Net.Store.Directory dir) { throw null; }
        public override void GetTermFreqVector(int docNumber, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector GetTermFreqVector(int docNumber, string field) { throw null; }
        public override void GetTermFreqVector(int docNumber, string field, Lucene.Net.Index.TermVectorMapper mapper) { }
        public override Lucene.Net.Index.ITermFreqVector[] GetTermFreqVectors(int docNumber) { throw null; }
        public override bool HasNorms(string field) { throw null; }
        public override bool IsDeleted(int n) { throw null; }
        public override byte[] Norms(string field) { throw null; }
        public override void Norms(string field, byte[] bytes, int offset) { }
        public virtual bool NormsClosed() { throw null; }
        public virtual bool NormsClosed(string field) { throw null; }
        public override int NumDocs() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs() { throw null; }
        public override Lucene.Net.Index.TermDocs TermDocs(Lucene.Net.Index.Term term) { throw null; }
        public override Lucene.Net.Index.TermPositions TermPositions() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms() { throw null; }
        public override Lucene.Net.Index.TermEnum Terms(Lucene.Net.Index.Term t) { throw null; }
        public virtual bool TermsIndexLoaded() { throw null; }
        public sealed partial class CoreReaders
        {
            internal CoreReaders() { }
            public Lucene.Net.Index.FieldInfos fieldInfos_ForNUnit { get { throw null; } }
        }
        public sealed partial class Norm : System.ICloneable
        {
            public Norm(Lucene.Net.Index.SegmentReader enclosingInstance, Lucene.Net.Store.IndexInput in_Renamed, int number, long normSeek) { }
            public Lucene.Net.Index.SegmentReader Enclosing_Instance { get { throw null; } }
            public byte[] Bytes() { throw null; }
            public void Bytes(byte[] bytesOut, int offset, int len) { }
            public Lucene.Net.Index.SegmentReader.Ref BytesRef() { throw null; }
            public object Clone() { throw null; }
            public byte[] CopyOnWrite() { throw null; }
            public void DecRef() { }
            public void IncRef() { }
            public void ReWrite(Lucene.Net.Index.SegmentInfo si) { }
        }
        public partial class Ref
        {
            public Ref() { }
            public virtual int DecRef() { throw null; }
            public virtual int IncRef() { throw null; }
            public virtual int RefCount() { throw null; }
            public override string ToString() { throw null; }
        }
    }
    public partial class SerialMergeScheduler : Lucene.Net.Index.MergeScheduler
    {
        public SerialMergeScheduler() { }
        protected override void Dispose(bool disposing) { }
        public override void Merge(Lucene.Net.Index.IndexWriter writer) { }
    }
    public partial class SnapshotDeletionPolicy : Lucene.Net.Index.IndexDeletionPolicy
    {
        public SnapshotDeletionPolicy(Lucene.Net.Index.IndexDeletionPolicy primary) { }
        public virtual void OnCommit<T>(System.Collections.Generic.IList<T> commits) where T : Lucene.Net.Index.IndexCommit { }
        public virtual void OnInit<T>(System.Collections.Generic.IList<T> commits) where T : Lucene.Net.Index.IndexCommit { }
        public virtual void Release() { }
        public virtual Lucene.Net.Index.IndexCommit Snapshot() { throw null; }
    }
    public partial class SortedTermVectorMapper : Lucene.Net.Index.TermVectorMapper
    {
        public const string ALL = "_ALL_";
        public SortedTermVectorMapper(bool ignoringPositions, bool ignoringOffsets, System.Collections.Generic.IComparer<Lucene.Net.Index.TermVectorEntry> comparator) { }
        public SortedTermVectorMapper(System.Collections.Generic.IComparer<Lucene.Net.Index.TermVectorEntry> comparator) { }
        public virtual System.Collections.Generic.SortedSet<Lucene.Net.Index.TermVectorEntry> TermVectorEntrySet { get { throw null; } }
        public override void Map(string term, int frequency, Lucene.Net.Index.TermVectorOffsetInfo[] offsets, int[] positions) { }
        public override void SetExpectations(string field, int numTerms, bool storeOffsets, bool storePositions) { }
    }
    [System.SerializableAttribute]
    public partial class StaleReaderException : System.IO.IOException
    {
        public StaleReaderException(string message) { }
    }
    [System.SerializableAttribute]
    public sealed partial class Term : System.IComparable<Lucene.Net.Index.Term>
    {
        public Term(string fld) { }
        public Term(string fld, string txt) { }
        public string Field { get { throw null; } }
        public string Text { get { throw null; } }
        public int CompareTo(Lucene.Net.Index.Term other) { throw null; }
        public Lucene.Net.Index.Term CreateTerm(string text) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial interface TermDocs : System.IDisposable
    {
        int Doc { get; }
        int Freq { get; }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        void Close();
        bool Next();
        int Read(int[] docs, int[] freqs);
        void Seek(Lucene.Net.Index.Term term);
        void Seek(Lucene.Net.Index.TermEnum termEnum);
        bool SkipTo(int target);
    }
    public abstract partial class TermEnum : System.IDisposable
    {
        protected TermEnum() { }
        public abstract Lucene.Net.Index.Term Term { get; }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract int DocFreq();
        public abstract bool Next();
    }
    public partial interface TermPositions : Lucene.Net.Index.TermDocs, System.IDisposable
    {
        bool IsPayloadAvailable { get; }
        int PayloadLength { get; }
        byte[] GetPayload(byte[] data, int offset);
        int NextPosition();
    }
    public partial interface TermPositionVector : Lucene.Net.Index.ITermFreqVector
    {
        Lucene.Net.Index.TermVectorOffsetInfo[] GetOffsets(int index);
        int[] GetTermPositions(int index);
    }
    public partial class TermVectorEntry
    {
        public TermVectorEntry() { }
        public TermVectorEntry(string field, string term, int frequency, Lucene.Net.Index.TermVectorOffsetInfo[] offsets, int[] positions) { }
        public virtual string Field { get { throw null; } }
        public virtual int Frequency { get { throw null; } }
        public virtual string Term { get { throw null; } }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual Lucene.Net.Index.TermVectorOffsetInfo[] GetOffsets() { throw null; }
        public virtual int[] GetPositions() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class TermVectorEntryFreqSortedComparator : System.Collections.Generic.IComparer<Lucene.Net.Index.TermVectorEntry>
    {
        public TermVectorEntryFreqSortedComparator() { }
        public virtual int Compare(Lucene.Net.Index.TermVectorEntry entry, Lucene.Net.Index.TermVectorEntry entry1) { throw null; }
    }
    public abstract partial class TermVectorMapper
    {
        protected internal TermVectorMapper() { }
        protected internal TermVectorMapper(bool ignoringPositions, bool ignoringOffsets) { }
        public virtual bool IsIgnoringOffsets { get { throw null; } }
        public virtual bool IsIgnoringPositions { get { throw null; } }
        public abstract void Map(string term, int frequency, Lucene.Net.Index.TermVectorOffsetInfo[] offsets, int[] positions);
        public virtual void SetDocumentNumber(int documentNumber) { }
        public abstract void SetExpectations(string field, int numTerms, bool storeOffsets, bool storePositions);
    }
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct TermVectorOffsetInfo : System.IEquatable<Lucene.Net.Index.TermVectorOffsetInfo>
    {
        [System.NonSerializedAttribute]
        public static readonly Lucene.Net.Index.TermVectorOffsetInfo[] EMPTY_OFFSET_INFO;
        [System.NonSerializedAttribute]
        public static readonly Lucene.Net.Index.TermVectorOffsetInfo Null;
        public TermVectorOffsetInfo(int startOffset, int endOffset) { throw null;}
        public int EndOffset { get { throw null; } set { } }
        public int StartOffset { get { throw null; } set { } }
        public bool Equals(Lucene.Net.Index.TermVectorOffsetInfo other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static bool operator ==(Lucene.Net.Index.TermVectorOffsetInfo left, object right) { throw null; }
        public static bool operator !=(Lucene.Net.Index.TermVectorOffsetInfo left, object right) { throw null; }
    }
}
namespace Lucene.Net.Messages
{
    public partial interface INLSException
    {
        Lucene.Net.Messages.Message MessageObject { get; }
    }
    public partial interface Message
    {
        string Key { get; }
        object[] GetArguments();
        string GetLocalizedMessage();
        string GetLocalizedMessage(System.Globalization.CultureInfo locale);
    }
    [System.SerializableAttribute]
    public partial class MessageImpl : Lucene.Net.Messages.Message
    {
        public MessageImpl(string key) { }
        public MessageImpl(string key, params object[] args) { }
        public virtual string Key { get { throw null; } }
        public virtual object[] GetArguments() { throw null; }
        public virtual string GetLocalizedMessage() { throw null; }
        public virtual string GetLocalizedMessage(System.Globalization.CultureInfo locale) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class NLS
    {
        protected internal NLS() { }
        public static string GetLocalizedMessage(string key) { throw null; }
        public static string GetLocalizedMessage(string key, System.Globalization.CultureInfo locale) { throw null; }
        public static string GetLocalizedMessage(string key, System.Globalization.CultureInfo locale, params object[] args) { throw null; }
        public static string GetLocalizedMessage(string key, params object[] args) { throw null; }
        protected internal static void InitializeMessages<T>(string bundleName) { }
        public partial interface IPriviligedAction
        {
            object Run();
        }
    }
}
namespace Lucene.Net.QueryParsers
{
    public sealed partial class FastCharStream : Lucene.Net.QueryParsers.ICharStream
    {
        public FastCharStream(System.IO.TextReader r) { }
        public int BeginColumn { get { throw null; } }
        public int BeginLine { get { throw null; } }
        public int Column { get { throw null; } }
        public int EndColumn { get { throw null; } }
        public int EndLine { get { throw null; } }
        public string Image { get { throw null; } }
        public int Line { get { throw null; } }
        public void Backup(int amount) { }
        public char BeginToken() { throw null; }
        public void Done() { }
        public char[] GetSuffix(int len) { throw null; }
        public char ReadChar() { throw null; }
    }
    public partial interface ICharStream
    {
        int BeginColumn { get; }
        int BeginLine { get; }
        [System.ObsoleteAttribute]
        int Column { get; }
        int EndColumn { get; }
        int EndLine { get; }
        string Image { get; }
        [System.ObsoleteAttribute]
        int Line { get; }
        void Backup(int amount);
        char BeginToken();
        void Done();
        char[] GetSuffix(int len);
        char ReadChar();
    }
    public partial class MultiFieldQueryParser : Lucene.Net.QueryParsers.QueryParser
    {
        protected internal System.Collections.Generic.IDictionary<string, float> boosts;
        protected internal string[] fields;
        public MultiFieldQueryParser(Lucene.Net.Util.Version matchVersion, string[] fields, Lucene.Net.Analysis.Analyzer analyzer) : base (default(Lucene.Net.Util.Version), default(string), default(Lucene.Net.Analysis.Analyzer)) { }
        public MultiFieldQueryParser(Lucene.Net.Util.Version matchVersion, string[] fields, Lucene.Net.Analysis.Analyzer analyzer, System.Collections.Generic.IDictionary<string, float> boosts) : base (default(Lucene.Net.Util.Version), default(string), default(Lucene.Net.Analysis.Analyzer)) { }
        protected internal override Lucene.Net.Search.Query GetFieldQuery(string field, string queryText) { throw null; }
        protected internal override Lucene.Net.Search.Query GetFieldQuery(string field, string queryText, int slop) { throw null; }
        protected internal override Lucene.Net.Search.Query GetFuzzyQuery(string field, string termStr, float minSimilarity) { throw null; }
        protected internal override Lucene.Net.Search.Query GetPrefixQuery(string field, string termStr) { throw null; }
        protected internal override Lucene.Net.Search.Query GetRangeQuery(string field, string part1, string part2, bool inclusive) { throw null; }
        protected internal override Lucene.Net.Search.Query GetWildcardQuery(string field, string termStr) { throw null; }
        public static Lucene.Net.Search.Query Parse(Lucene.Net.Util.Version matchVersion, string query, string[] fields, Lucene.Net.Search.Occur[] flags, Lucene.Net.Analysis.Analyzer analyzer) { throw null; }
        public static Lucene.Net.Search.Query Parse(Lucene.Net.Util.Version matchVersion, string[] queries, string[] fields, Lucene.Net.Analysis.Analyzer analyzer) { throw null; }
        public static Lucene.Net.Search.Query Parse(Lucene.Net.Util.Version matchVersion, string[] queries, string[] fields, Lucene.Net.Search.Occur[] flags, Lucene.Net.Analysis.Analyzer analyzer) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class ParseException : System.Exception
    {
        public Lucene.Net.QueryParsers.Token currentToken;
        protected internal string eol;
        public int[][] expectedTokenSequences;
        protected internal bool specialConstructor;
        public string[] tokenImage;
        public ParseException() { }
        public ParseException(Lucene.Net.QueryParsers.Token currentTokenVal, int[][] expectedTokenSequencesVal, string[] tokenImageVal) { }
        public ParseException(string message) { }
        public ParseException(string message, System.Exception ex) { }
        public override string Message { get { throw null; } }
        protected internal virtual string Add_escapes(string str) { throw null; }
    }
    public partial class QueryParser : Lucene.Net.QueryParsers.QueryParserConstants
    {
        public static Lucene.Net.QueryParsers.QueryParser.Operator AND_OPERATOR;
        public Lucene.Net.QueryParsers.Token jj_nt;
        public static Lucene.Net.QueryParsers.QueryParser.Operator OR_OPERATOR;
        public Lucene.Net.QueryParsers.Token token;
        public Lucene.Net.QueryParsers.QueryParserTokenManager token_source;
        protected internal QueryParser(Lucene.Net.QueryParsers.ICharStream stream) { }
        protected QueryParser(Lucene.Net.QueryParsers.QueryParserTokenManager tm) { }
        public QueryParser(Lucene.Net.Util.Version matchVersion, string f, Lucene.Net.Analysis.Analyzer a) { }
        public virtual bool AllowLeadingWildcard { get { throw null; } set { } }
        public virtual Lucene.Net.Analysis.Analyzer Analyzer { get { throw null; } }
        public virtual Lucene.Net.QueryParsers.QueryParser.Operator DefaultOperator { get { throw null; } set { } }
        public virtual bool EnablePositionIncrements { get { throw null; } set { } }
        public virtual string Field { get { throw null; } }
        public virtual float FuzzyMinSim { get { throw null; } set { } }
        public virtual int FuzzyPrefixLength { get { throw null; } set { } }
        public virtual System.Globalization.CultureInfo Locale { get { throw null; } set { } }
        public virtual bool LowercaseExpandedTerms { get { throw null; } set { } }
        public virtual Lucene.Net.Search.RewriteMethod MultiTermRewriteMethod { get { throw null; } set { } }
        public virtual int PhraseSlop { get { throw null; } set { } }
        public virtual System.Globalization.CompareInfo RangeCollator { get { throw null; } set { } }
        protected internal virtual void AddClause(System.Collections.Generic.List<Lucene.Net.Search.BooleanClause> clauses, int conj, int mods, Lucene.Net.Search.Query q) { }
        public Lucene.Net.Search.Query Clause(string field) { throw null; }
        public int Conjunction() { throw null; }
        public void Disable_tracing() { }
        public void Enable_tracing() { }
        public static string Escape(string s) { throw null; }
        public virtual Lucene.Net.QueryParsers.ParseException GenerateParseException() { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetBooleanQuery(System.Collections.Generic.IList<Lucene.Net.Search.BooleanClause> clauses) { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetBooleanQuery(System.Collections.Generic.IList<Lucene.Net.Search.BooleanClause> clauses, bool disableCoord) { throw null; }
        public virtual Lucene.Net.Documents.DateTools.Resolution getDateResolution(string fieldName) { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetFieldQuery(string field, string queryText) { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetFieldQuery(string field, string queryText, int slop) { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetFuzzyQuery(string field, string termStr, float minSimilarity) { throw null; }
        public Lucene.Net.QueryParsers.Token GetNextToken() { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetPrefixQuery(string field, string termStr) { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetRangeQuery(string field, string part1, string part2, bool inclusive) { throw null; }
        public Lucene.Net.QueryParsers.Token getToken(int index) { throw null; }
        protected internal virtual Lucene.Net.Search.Query GetWildcardQuery(string field, string termStr) { throw null; }
        [System.STAThreadAttribute]
        public static void Main(string[] args) { }
        public int Modifiers() { throw null; }
        protected internal virtual Lucene.Net.Search.BooleanClause NewBooleanClause(Lucene.Net.Search.Query q, Lucene.Net.Search.Occur occur) { throw null; }
        protected internal virtual Lucene.Net.Search.BooleanQuery NewBooleanQuery(bool disableCoord) { throw null; }
        protected internal virtual Lucene.Net.Search.Query NewFuzzyQuery(Lucene.Net.Index.Term term, float minimumSimilarity, int prefixLength) { throw null; }
        protected internal virtual Lucene.Net.Search.Query NewMatchAllDocsQuery() { throw null; }
        protected internal virtual Lucene.Net.Search.MultiPhraseQuery NewMultiPhraseQuery() { throw null; }
        protected internal virtual Lucene.Net.Search.PhraseQuery NewPhraseQuery() { throw null; }
        protected internal virtual Lucene.Net.Search.Query NewPrefixQuery(Lucene.Net.Index.Term prefix) { throw null; }
        protected internal virtual Lucene.Net.Search.Query NewRangeQuery(string field, string part1, string part2, bool inclusive) { throw null; }
        protected internal virtual Lucene.Net.Search.Query NewTermQuery(Lucene.Net.Index.Term term) { throw null; }
        protected internal virtual Lucene.Net.Search.Query NewWildcardQuery(Lucene.Net.Index.Term t) { throw null; }
        public virtual Lucene.Net.Search.Query Parse(string query) { throw null; }
        public Lucene.Net.Search.Query Query(string field) { throw null; }
        public void ReInit(Lucene.Net.QueryParsers.ICharStream stream) { }
        public void ReInit(Lucene.Net.QueryParsers.QueryParserTokenManager tm) { }
        public virtual void SetDateResolution(Lucene.Net.Documents.DateTools.Resolution dateResolution) { }
        public virtual void SetDateResolution(string fieldName, Lucene.Net.Documents.DateTools.Resolution dateResolution) { }
        public Lucene.Net.Search.Query Term(string field) { throw null; }
        public Lucene.Net.Search.Query TopLevelQuery(string field) { throw null; }
        public enum Operator
        {
            AND = 1,
            OR = 0,
        }
    }
    public partial class QueryParserConstants
    {
        protected internal const int AndToken = 8;
        protected internal const int BoostToken = 0;
        protected internal const int CaratToken = 17;
        protected internal const int ColonToken = 15;
        protected internal const int DefaultToken = 3;
        protected internal const int EndOfFileToken = 0;
        protected internal const int EscapedCharToken = 2;
        protected internal const int FuzzySlopToken = 20;
        protected internal const int LParanToken = 13;
        protected internal const int MinusToken = 12;
        protected internal const int NotToken = 10;
        protected internal const int NumberToken = 25;
        protected internal const int NumCharToken = 1;
        protected internal const int OrToken = 9;
        protected internal const int PlusToken = 11;
        protected internal const int PrefixTermToken = 21;
        protected internal const int QuotedCharToken = 6;
        protected internal const int QuotedToken = 18;
        protected internal const int RangeExEndToken = 31;
        protected internal const int RangeExGoopToken = 33;
        protected internal const int RangeExQuotedToken = 32;
        protected internal const int RangeExStartToken = 24;
        protected const int RangeExToken = 1;
        protected internal const int RangeExToToken = 30;
        protected internal const int RangeInEndToken = 27;
        protected internal const int RangeInGoopToken = 29;
        protected internal const int RangeInQuotedToken = 28;
        protected internal const int RangeInStartToken = 23;
        protected internal const int RangeInToken = 2;
        protected internal const int RangeInToToken = 26;
        protected internal const int RParenToken = 14;
        protected internal const int StarToken = 16;
        protected internal const int TermCharToken = 4;
        protected internal const int TermStartCharToken = 3;
        protected internal const int TermToken = 19;
        protected internal static string[] tokenImage;
        protected internal const int WhitespaceToken = 5;
        protected internal const int WildTermToken = 22;
        public QueryParserConstants() { }
    }
    public partial class QueryParserTokenManager : Lucene.Net.QueryParsers.QueryParserConstants
    {
        protected internal char curChar;
        public System.IO.StreamWriter debugStream;
        protected internal Lucene.Net.QueryParsers.ICharStream input_stream;
        public static readonly int[] jjnewLexState;
        public static readonly string[] jjstrLiteralImages;
        public static readonly string[] lexStateNames;
        public QueryParserTokenManager(Lucene.Net.QueryParsers.ICharStream stream) { }
        public QueryParserTokenManager(Lucene.Net.QueryParsers.ICharStream stream, int lexState) { }
        public virtual Lucene.Net.QueryParsers.Token GetNextToken() { throw null; }
        protected internal virtual Lucene.Net.QueryParsers.Token JjFillToken() { throw null; }
        public virtual void ReInit(Lucene.Net.QueryParsers.ICharStream stream) { }
        public virtual void ReInit(Lucene.Net.QueryParsers.ICharStream stream, int lexState) { }
        public virtual void SetDebugStream(System.IO.StreamWriter ds) { }
        public virtual void SwitchTo(int lexState) { }
    }
    public partial class Token
    {
        public int beginColumn;
        public int beginLine;
        public int endColumn;
        public int endLine;
        public string image;
        public int kind;
        public Lucene.Net.QueryParsers.Token next;
        public Lucene.Net.QueryParsers.Token specialToken;
        public Token() { }
        public Token(int kind) { }
        public Token(int kind, string image) { }
        public virtual object Value { get { throw null; } }
        public static Lucene.Net.QueryParsers.Token NewToken(int ofKind) { throw null; }
        public static Lucene.Net.QueryParsers.Token NewToken(int ofKind, string image) { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class TokenMgrError : System.ApplicationException
    {
        public TokenMgrError() { }
        public TokenMgrError(bool EOFSeen, int lexState, int errorLine, int errorColumn, string errorAfter, char curChar, int reason) { }
        public TokenMgrError(string message, int reason) { }
        public override string Message { get { throw null; } }
        protected internal static string addEscapes(string str) { throw null; }
        protected internal static string LexicalError(bool EOFSeen, int lexState, int errorLine, int errorColumn, string errorAfter, char curChar) { throw null; }
    }
}
namespace Lucene.Net.Search
{
    [System.SerializableAttribute]
    public partial class BooleanClause
    {
        public BooleanClause(Lucene.Net.Search.Query query, Lucene.Net.Search.Occur occur) { }
        public virtual bool IsProhibited { get { throw null; } }
        public virtual bool IsRequired { get { throw null; } }
        public virtual Lucene.Net.Search.Occur Occur { get { throw null; } set { } }
        public virtual Lucene.Net.Search.Query Query { get { throw null; } set { } }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class BooleanQuery : Lucene.Net.Search.Query, System.Collections.Generic.IEnumerable<Lucene.Net.Search.BooleanClause>, System.Collections.IEnumerable, System.ICloneable
    {
        protected internal int minNrShouldMatch;
        public BooleanQuery() { }
        public BooleanQuery(bool disableCoord) { }
        public virtual System.Collections.Generic.List<Lucene.Net.Search.BooleanClause> Clauses { get { throw null; } }
        public static int MaxClauseCount { get { throw null; } set { } }
        public virtual int MinimumNumberShouldMatch { get { throw null; } set { } }
        public virtual void Add(Lucene.Net.Search.BooleanClause clause) { }
        public virtual void Add(Lucene.Net.Search.Query query, Lucene.Net.Search.Occur occur) { }
        public override object Clone() { throw null; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public virtual Lucene.Net.Search.BooleanClause[] GetClauses() { throw null; }
        public System.Collections.Generic.IEnumerator<Lucene.Net.Search.BooleanClause> GetEnumerator() { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Similarity GetSimilarity(Lucene.Net.Search.Searcher searcher) { throw null; }
        public virtual bool IsCoordDisabled() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        public override string ToString(string field) { throw null; }
        [System.SerializableAttribute]
        protected internal partial class BooleanWeight : Lucene.Net.Search.Weight
        {
            protected internal Lucene.Net.Search.Similarity similarity;
            protected internal System.Collections.Generic.List<Lucene.Net.Search.Weight> weights;
            public BooleanWeight(Lucene.Net.Search.BooleanQuery enclosingInstance, Lucene.Net.Search.Searcher searcher) { }
            public Lucene.Net.Search.BooleanQuery Enclosing_Instance { get { throw null; } }
            public override Lucene.Net.Search.Query Query { get { throw null; } }
            public override float Value { get { throw null; } }
            public override Lucene.Net.Search.Explanation Explain(Lucene.Net.Index.IndexReader reader, int doc) { throw null; }
            public override bool GetScoresDocsOutOfOrder() { throw null; }
            public override float GetSumOfSquaredWeights() { throw null; }
            public override void Normalize(float norm) { }
            public override Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer) { throw null; }
        }
        [System.SerializableAttribute]
        public partial class TooManyClauses : System.SystemException
        {
            public TooManyClauses() { }
            public override string Message { get { throw null; } }
        }
    }
    public sealed partial class BooleanScorer : Lucene.Net.Search.Scorer
    {
        public BooleanScorer(Lucene.Net.Search.Similarity similarity, int minNrShouldMatch, System.Collections.Generic.List<Lucene.Net.Search.Scorer> optionalScorers, System.Collections.Generic.List<Lucene.Net.Search.Scorer> prohibitedScorers) : base (default(Lucene.Net.Search.Similarity)) { }
        public override int Advance(int target) { throw null; }
        public override int DocID() { throw null; }
        public override int NextDoc() { throw null; }
        public override float Score() { throw null; }
        public override void Score(Lucene.Net.Search.Collector collector) { }
        public override bool Score(Lucene.Net.Search.Collector collector, int max, int firstDocID) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial interface ByteParser : Lucene.Net.Search.Parser
    {
        sbyte ParseByte(string string_Renamed);
    }
    public abstract partial class CacheEntry
    {
        protected CacheEntry() { }
        public abstract System.Type CacheType { get; }
        public abstract object Custom { get; }
        public string EstimatedSize { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected internal set { } }
        public abstract string FieldName { get; }
        public abstract object ReaderKey { get; }
        public abstract object Value { get; }
        public virtual void EstimateSize() { }
        public virtual void EstimateSize(Lucene.Net.Util.RamUsageEstimator ramCalc) { }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class CachingSpanFilter : Lucene.Net.Search.SpanFilter
    {
        public int hitCount;
        public int missCount;
        public CachingSpanFilter(Lucene.Net.Search.SpanFilter filter) { }
        public CachingSpanFilter(Lucene.Net.Search.SpanFilter filter, Lucene.Net.Search.CachingWrapperFilter.DeletesMode deletesMode) { }
        public override Lucene.Net.Search.SpanFilterResult BitSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class CachingWrapperFilter : Lucene.Net.Search.Filter
    {
        protected internal Lucene.Net.Search.Filter filter;
        public int hitCount;
        public int missCount;
        public CachingWrapperFilter(Lucene.Net.Search.Filter filter) { }
        public CachingWrapperFilter(Lucene.Net.Search.Filter filter, Lucene.Net.Search.CachingWrapperFilter.DeletesMode deletesMode) { }
        protected internal virtual Lucene.Net.Search.DocIdSet DocIdSetToCache(Lucene.Net.Search.DocIdSet docIdSet, Lucene.Net.Index.IndexReader reader) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
        public enum DeletesMode
        {
            DYNAMIC = 2,
            IGNORE = 0,
            RECACHE = 1,
        }
    }
    public abstract partial class Collector
    {
        protected Collector() { }
        public abstract bool AcceptsDocsOutOfOrder { get; }
        public abstract void Collect(int doc);
        public abstract void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase);
        public abstract void SetScorer(Lucene.Net.Search.Scorer scorer);
    }
    [System.SerializableAttribute]
    public partial class ComplexExplanation : Lucene.Net.Search.Explanation
    {
        public ComplexExplanation() { }
        public ComplexExplanation(bool match, float value_Renamed, string description) { }
        public override bool IsMatch { get { throw null; } }
        public virtual System.Nullable<bool> Match { get { throw null; } set { } }
        protected internal override string Summary { get { throw null; } }
    }
    [System.SerializableAttribute]
    public partial class ConstantScoreQuery : Lucene.Net.Search.Query
    {
        protected internal Lucene.Net.Search.Filter internalFilter;
        public ConstantScoreQuery(Lucene.Net.Search.Filter filter) { }
        public virtual Lucene.Net.Search.Filter Filter { get { throw null; } }
        public override object Clone() { throw null; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
        protected internal partial class ConstantScorer : Lucene.Net.Search.Scorer
        {
            public ConstantScorer(Lucene.Net.Search.ConstantScoreQuery enclosingInstance, Lucene.Net.Search.Similarity similarity, Lucene.Net.Index.IndexReader reader, Lucene.Net.Search.Weight w) : base (default(Lucene.Net.Search.Similarity)) { }
            public Lucene.Net.Search.ConstantScoreQuery Enclosing_Instance { get { throw null; } }
            public override int Advance(int target) { throw null; }
            public override int DocID() { throw null; }
            public override int NextDoc() { throw null; }
            public override float Score() { throw null; }
        }
        [System.SerializableAttribute]
        protected internal partial class ConstantWeight : Lucene.Net.Search.Weight
        {
            public ConstantWeight(Lucene.Net.Search.ConstantScoreQuery enclosingInstance, Lucene.Net.Search.Searcher searcher) { }
            public Lucene.Net.Search.ConstantScoreQuery Enclosing_Instance { get { throw null; } }
            public override Lucene.Net.Search.Query Query { get { throw null; } }
            public override float Value { get { throw null; } }
            public override Lucene.Net.Search.Explanation Explain(Lucene.Net.Index.IndexReader reader, int doc) { throw null; }
            public override float GetSumOfSquaredWeights() { throw null; }
            public override void Normalize(float norm) { }
            public override Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer) { throw null; }
        }
    }
    public sealed partial class CreationPlaceholder
    {
        public CreationPlaceholder() { }
    }
    [System.SerializableAttribute]
    public partial class DefaultSimilarity : Lucene.Net.Search.Similarity
    {
        protected internal bool internalDiscountOverlaps;
        public DefaultSimilarity() { }
        public virtual bool DiscountOverlaps { get { throw null; } set { } }
        public override float ComputeNorm(string field, Lucene.Net.Index.FieldInvertState state) { throw null; }
        public override float Coord(int overlap, int maxOverlap) { throw null; }
        public override float Idf(int docFreq, int numDocs) { throw null; }
        public override float LengthNorm(string fieldName, int numTerms) { throw null; }
        public override float QueryNorm(float sumOfSquaredWeights) { throw null; }
        public override float SloppyFreq(int distance) { throw null; }
        public override float Tf(float freq) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class DisjunctionMaxQuery : Lucene.Net.Search.Query, System.Collections.Generic.IEnumerable<Lucene.Net.Search.Query>, System.Collections.IEnumerable, System.ICloneable
    {
        public DisjunctionMaxQuery(System.Collections.Generic.ICollection<Lucene.Net.Search.Query> disjuncts, float tieBreakerMultiplier) { }
        public DisjunctionMaxQuery(float tieBreakerMultiplier) { }
        public virtual void Add(Lucene.Net.Search.Query query) { }
        public virtual void Add(System.Collections.Generic.ICollection<Lucene.Net.Search.Query> disjuncts) { }
        public override object Clone() { throw null; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public virtual System.Collections.Generic.IEnumerator<Lucene.Net.Search.Query> GetEnumerator() { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        public override string ToString(string field) { throw null; }
        [System.SerializableAttribute]
        protected internal partial class DisjunctionMaxWeight : Lucene.Net.Search.Weight
        {
            protected internal Lucene.Net.Search.Similarity similarity;
            protected internal System.Collections.Generic.List<Lucene.Net.Search.Weight> weights;
            public DisjunctionMaxWeight(Lucene.Net.Search.DisjunctionMaxQuery enclosingInstance, Lucene.Net.Search.Searcher searcher) { }
            public Lucene.Net.Search.DisjunctionMaxQuery Enclosing_Instance { get { throw null; } }
            public override Lucene.Net.Search.Query Query { get { throw null; } }
            public override float Value { get { throw null; } }
            public override Lucene.Net.Search.Explanation Explain(Lucene.Net.Index.IndexReader reader, int doc) { throw null; }
            public override float GetSumOfSquaredWeights() { throw null; }
            public override void Normalize(float norm) { }
            public override Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer) { throw null; }
        }
    }
    [System.SerializableAttribute]
    public abstract partial class DocIdSet
    {
        [System.NonSerializedAttribute]
        public static readonly Lucene.Net.Search.DocIdSet EMPTY_DOCIDSET;
        protected DocIdSet() { }
        public virtual bool IsCacheable { get { throw null; } }
        public abstract Lucene.Net.Search.DocIdSetIterator Iterator();
        public partial class AnonymousClassDocIdSet : Lucene.Net.Search.DocIdSet
        {
            public AnonymousClassDocIdSet() { }
            public override bool IsCacheable { get { throw null; } }
            public override Lucene.Net.Search.DocIdSetIterator Iterator() { throw null; }
            public partial class AnonymousClassDocIdSetIterator : Lucene.Net.Search.DocIdSetIterator
            {
                public AnonymousClassDocIdSetIterator(Lucene.Net.Search.DocIdSet.AnonymousClassDocIdSet enclosingInstance) { }
                public Lucene.Net.Search.DocIdSet.AnonymousClassDocIdSet Enclosing_Instance { get { throw null; } }
                public override int Advance(int target) { throw null; }
                public override int DocID() { throw null; }
                public override int NextDoc() { throw null; }
            }
        }
    }
    public abstract partial class DocIdSetIterator
    {
        public static readonly int NO_MORE_DOCS;
        protected DocIdSetIterator() { }
        public abstract int Advance(int target);
        public abstract int DocID();
        public abstract int NextDoc();
    }
    public partial interface DoubleParser : Lucene.Net.Search.Parser
    {
        double ParseDouble(string string_Renamed);
    }
    [System.SerializableAttribute]
    public partial class Explanation
    {
        public Explanation() { }
        public Explanation(float value, string description) { }
        public virtual string Description { get { throw null; } set { } }
        public virtual bool IsMatch { get { throw null; } }
        protected internal virtual string Summary { get { throw null; } }
        public virtual float Value { get { throw null; } set { } }
        public virtual void AddDetail(Lucene.Net.Search.Explanation detail) { }
        public virtual Lucene.Net.Search.Explanation[] GetDetails() { throw null; }
        public virtual string ToHtml() { throw null; }
        public override string ToString() { throw null; }
        protected internal virtual string ToString(int depth) { throw null; }
        [System.SerializableAttribute]
        public abstract partial class IDFExplanation
        {
            protected IDFExplanation() { }
            public abstract float Idf { get; }
            public abstract string Explain();
        }
    }
    public partial interface FieldCache
    {
        System.IO.StreamWriter InfoStream { get; set; }
        sbyte[] GetBytes(Lucene.Net.Index.IndexReader reader, string field);
        sbyte[] GetBytes(Lucene.Net.Index.IndexReader reader, string field, Lucene.Net.Search.ByteParser parser);
        Lucene.Net.Search.CacheEntry[] GetCacheEntries();
        double[] GetDoubles(Lucene.Net.Index.IndexReader reader, string field);
        double[] GetDoubles(Lucene.Net.Index.IndexReader reader, string field, Lucene.Net.Search.DoubleParser parser);
        float[] GetFloats(Lucene.Net.Index.IndexReader reader, string field);
        float[] GetFloats(Lucene.Net.Index.IndexReader reader, string field, Lucene.Net.Search.FloatParser parser);
        int[] GetInts(Lucene.Net.Index.IndexReader reader, string field);
        int[] GetInts(Lucene.Net.Index.IndexReader reader, string field, Lucene.Net.Search.IntParser parser);
        long[] GetLongs(Lucene.Net.Index.IndexReader reader, string field);
        long[] GetLongs(Lucene.Net.Index.IndexReader reader, string field, Lucene.Net.Search.LongParser parser);
        short[] GetShorts(Lucene.Net.Index.IndexReader reader, string field);
        short[] GetShorts(Lucene.Net.Index.IndexReader reader, string field, Lucene.Net.Search.ShortParser parser);
        Lucene.Net.Search.StringIndex GetStringIndex(Lucene.Net.Index.IndexReader reader, string field);
        string[] GetStrings(Lucene.Net.Index.IndexReader reader, string field);
        void Purge(Lucene.Net.Index.IndexReader r);
        void PurgeAllCaches();
    }
    public static partial class FieldCacheRangeFilter
    {
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.SByte>> NewByteRange(string field, Lucene.Net.Search.ByteParser parser, System.Nullable<sbyte> lowerVal, System.Nullable<sbyte> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.SByte>> NewByteRange(string field, System.Nullable<sbyte> lowerVal, System.Nullable<sbyte> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Double>> NewDoubleRange(string field, Lucene.Net.Search.DoubleParser parser, System.Nullable<double> lowerVal, System.Nullable<double> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Double>> NewDoubleRange(string field, System.Nullable<double> lowerVal, System.Nullable<double> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Single>> NewFloatRange(string field, Lucene.Net.Search.FloatParser parser, System.Nullable<float> lowerVal, System.Nullable<float> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Single>> NewFloatRange(string field, System.Nullable<float> lowerVal, System.Nullable<float> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Int32>> NewIntRange(string field, Lucene.Net.Search.IntParser parser, System.Nullable<int> lowerVal, System.Nullable<int> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Int32>> NewIntRange(string field, System.Nullable<int> lowerVal, System.Nullable<int> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Int64>> NewLongRange(string field, Lucene.Net.Search.LongParser parser, System.Nullable<long> lowerVal, System.Nullable<long> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Int64>> NewLongRange(string field, System.Nullable<long> lowerVal, System.Nullable<long> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Int16>> NewShortRange(string field, Lucene.Net.Search.ShortParser parser, System.Nullable<short> lowerVal, System.Nullable<short> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.Nullable<System.Int16>> NewShortRange(string field, System.Nullable<short> lowerVal, System.Nullable<short> upperVal, bool includeLower, bool includeUpper) { throw null; }
        public static Lucene.Net.Search.FieldCacheRangeFilter<System.String> NewStringRange(string field, string lowerVal, string upperVal, bool includeLower, bool includeUpper) { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class FieldCacheRangeFilter<T> : Lucene.Net.Search.Filter
    {
        protected internal FieldCacheRangeFilter(string field, Lucene.Net.Search.Parser parser, T lowerVal, T upperVal, bool includeLower, bool includeUpper) { }
        public string GetField { get { throw null; } }
        public bool IncludesLower { get { throw null; } }
        public bool IncludesUpper { get { throw null; } }
        public T LowerValue { get { throw null; } }
        public Lucene.Net.Search.Parser Parser { get { throw null; } }
        public T UpperValue { get { throw null; } }
        public override bool Equals(object o) { throw null; }
        public abstract override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader);
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class FieldCacheTermsFilter : Lucene.Net.Search.Filter
    {
        public FieldCacheTermsFilter(string field, params string[] terms) { }
        public virtual Lucene.Net.Search.FieldCache FieldCache { get { throw null; } }
        public override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader) { throw null; }
        protected internal partial class FieldCacheTermsFilterDocIdSet : Lucene.Net.Search.DocIdSet
        {
            public FieldCacheTermsFilterDocIdSet(Lucene.Net.Search.FieldCacheTermsFilter enclosingInstance, Lucene.Net.Search.StringIndex fcsi) { }
            public Lucene.Net.Search.FieldCacheTermsFilter Enclosing_Instance { get { throw null; } }
            public override bool IsCacheable { get { throw null; } }
            public override Lucene.Net.Search.DocIdSetIterator Iterator() { throw null; }
            protected internal partial class FieldCacheTermsFilterDocIdSetIterator : Lucene.Net.Search.DocIdSetIterator
            {
                public FieldCacheTermsFilterDocIdSetIterator(Lucene.Net.Search.FieldCacheTermsFilter.FieldCacheTermsFilterDocIdSet enclosingInstance) { }
                public Lucene.Net.Search.FieldCacheTermsFilter.FieldCacheTermsFilterDocIdSet Enclosing_Instance { get { throw null; } }
                public override int Advance(int target) { throw null; }
                public override int DocID() { throw null; }
                public override int NextDoc() { throw null; }
            }
        }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Size=1)]
    public partial struct FieldCache_Fields
    {
        public static readonly Lucene.Net.Search.FieldCache DEFAULT;
        public static readonly Lucene.Net.Search.ByteParser DEFAULT_BYTE_PARSER;
        public static readonly Lucene.Net.Search.DoubleParser DEFAULT_DOUBLE_PARSER;
        public static readonly Lucene.Net.Search.FloatParser DEFAULT_FLOAT_PARSER;
        public static readonly Lucene.Net.Search.IntParser DEFAULT_INT_PARSER;
        public static readonly Lucene.Net.Search.LongParser DEFAULT_LONG_PARSER;
        public static readonly Lucene.Net.Search.ShortParser DEFAULT_SHORT_PARSER;
        public static readonly Lucene.Net.Search.DoubleParser NUMERIC_UTILS_DOUBLE_PARSER;
        public static readonly Lucene.Net.Search.FloatParser NUMERIC_UTILS_FLOAT_PARSER;
        public static readonly Lucene.Net.Search.IntParser NUMERIC_UTILS_INT_PARSER;
        public static readonly Lucene.Net.Search.LongParser NUMERIC_UTILS_LONG_PARSER;
        public static readonly int STRING_INDEX;
    }
    public abstract partial class FieldComparator
    {
        protected FieldComparator() { }
        public abstract System.IComparable this[int slot] { get; }
        protected internal static int BinarySearch(string[] a, string key) { throw null; }
        protected internal static int BinarySearch(string[] a, string key, int low, int high) { throw null; }
        public abstract int Compare(int slot1, int slot2);
        public abstract int CompareBottom(int doc);
        public abstract void Copy(int slot, int doc);
        public abstract void SetBottom(int slot);
        public abstract void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase);
        public virtual void SetScorer(Lucene.Net.Search.Scorer scorer) { }
        public sealed partial class ByteComparator : Lucene.Net.Search.FieldComparator
        {
            internal ByteComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class DocComparator : Lucene.Net.Search.FieldComparator
        {
            internal DocComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class DoubleComparator : Lucene.Net.Search.FieldComparator
        {
            internal DoubleComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class FloatComparator : Lucene.Net.Search.FieldComparator
        {
            internal FloatComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class IntComparator : Lucene.Net.Search.FieldComparator
        {
            internal IntComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class LongComparator : Lucene.Net.Search.FieldComparator
        {
            internal LongComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class RelevanceComparator : Lucene.Net.Search.FieldComparator
        {
            internal RelevanceComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
            public override void SetScorer(Lucene.Net.Search.Scorer scorer) { }
        }
        public sealed partial class ShortComparator : Lucene.Net.Search.FieldComparator
        {
            internal ShortComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class StringComparatorLocale : Lucene.Net.Search.FieldComparator
        {
            internal StringComparatorLocale() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class StringOrdValComparator : Lucene.Net.Search.FieldComparator
        {
            public StringOrdValComparator(int numHits, string field, int sortPos, bool reversed) { }
            public int BottomSlot { get { throw null; } }
            public string Field { get { throw null; } }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public string[] GetValues() { throw null; }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
        public sealed partial class StringValComparator : Lucene.Net.Search.FieldComparator
        {
            internal StringValComparator() { }
            public override System.IComparable this[int slot] { get { throw null; } }
            public override int Compare(int slot1, int slot2) { throw null; }
            public override int CompareBottom(int doc) { throw null; }
            public override void Copy(int slot, int doc) { }
            public override void SetBottom(int bottom) { }
            public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        }
    }
    [System.SerializableAttribute]
    public abstract partial class FieldComparatorSource
    {
        protected FieldComparatorSource() { }
        public abstract Lucene.Net.Search.FieldComparator NewComparator(string fieldname, int numHits, int sortPos, bool reversed);
    }
    [System.SerializableAttribute]
    public partial class FieldDoc : Lucene.Net.Search.ScoreDoc
    {
        [System.NonSerializedAttribute]
        public System.IComparable[] fields;
        public FieldDoc(int doc, float score) : base (default(int), default(float)) { }
        public FieldDoc(int doc, float score, System.IComparable[] fields) : base (default(int), default(float)) { }
        public override string ToString() { throw null; }
    }
    public abstract partial class FieldValueHitQueue : Lucene.Net.Util.PriorityQueue<Lucene.Net.Search.FieldValueHitQueue.Entry>
    {
        internal FieldValueHitQueue() { }
        protected internal Lucene.Net.Search.FieldComparator[] comparators;
        protected internal Lucene.Net.Search.SortField[] fields;
        protected internal int[] reverseMul;
        public static Lucene.Net.Search.FieldValueHitQueue Create(Lucene.Net.Search.SortField[] fields, int size) { throw null; }
        public abstract override bool LessThan(Lucene.Net.Search.FieldValueHitQueue.Entry a, Lucene.Net.Search.FieldValueHitQueue.Entry b);
        public sealed partial class Entry : Lucene.Net.Search.ScoreDoc
        {
            internal Entry() : base (default(int), default(float)) { }
            public override string ToString() { throw null; }
        }
    }
    [System.SerializableAttribute]
    public abstract partial class Filter
    {
        protected Filter() { }
        public abstract Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader);
    }
    public abstract partial class FilteredDocIdSet : Lucene.Net.Search.DocIdSet
    {
        protected FilteredDocIdSet(Lucene.Net.Search.DocIdSet innerSet) { }
        public override bool IsCacheable { get { throw null; } }
        public override Lucene.Net.Search.DocIdSetIterator Iterator() { throw null; }
        public abstract bool Match(int docid);
    }
    public abstract partial class FilteredDocIdSetIterator : Lucene.Net.Search.DocIdSetIterator
    {
        protected internal Lucene.Net.Search.DocIdSetIterator internalInnerIter;
        protected FilteredDocIdSetIterator(Lucene.Net.Search.DocIdSetIterator innerIter) { }
        public override int Advance(int target) { throw null; }
        public override int DocID() { throw null; }
        public abstract bool Match(int doc);
        public override int NextDoc() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class FilteredQuery : Lucene.Net.Search.Query
    {
        public FilteredQuery(Lucene.Net.Search.Query query, Lucene.Net.Search.Filter filter) { }
        public virtual Lucene.Net.Search.Filter Filter { get { throw null; } }
        public virtual Lucene.Net.Search.Query Query { get { throw null; } }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string s) { throw null; }
    }
    public abstract partial class FilteredTermEnum : Lucene.Net.Index.TermEnum
    {
        protected internal Lucene.Net.Index.TermEnum actualEnum;
        protected internal Lucene.Net.Index.Term currentTerm;
        protected FilteredTermEnum() { }
        public override Lucene.Net.Index.Term Term { get { throw null; } }
        public abstract float Difference();
        protected override void Dispose(bool disposing) { }
        public override int DocFreq() { throw null; }
        public abstract bool EndEnum();
        public override bool Next() { throw null; }
        protected internal virtual void SetEnum(Lucene.Net.Index.TermEnum actualEnum) { }
        protected internal abstract bool TermCompare(Lucene.Net.Index.Term term);
    }
    public partial class FilterManager
    {
        protected internal System.Collections.Generic.IDictionary<int, Lucene.Net.Search.FilterManager.FilterItem> cache;
        protected internal int cacheCleanSize;
        protected internal long cleanSleepTime;
        protected internal const int DEFAULT_CACHE_CLEAN_SIZE = 100;
        protected internal const long DEFAULT_CACHE_SLEEP_TIME = (long)600000;
        protected internal Lucene.Net.Search.FilterManager.FilterCleaner internalFilterCleaner;
        protected internal static Lucene.Net.Search.FilterManager manager;
        protected internal FilterManager() { }
        public static Lucene.Net.Search.FilterManager Instance { get { throw null; } }
        public virtual Lucene.Net.Search.Filter GetFilter(Lucene.Net.Search.Filter filter) { throw null; }
        public virtual void SetCacheSize(int value) { }
        public virtual void SetCleanThreadSleepTime(long value) { }
        protected internal partial class FilterCleaner : Lucene.Net.Support.IThreadRunnable
        {
            public FilterCleaner(Lucene.Net.Search.FilterManager enclosingInstance) { }
            public virtual void Run() { }
        }
        protected internal partial class FilterItem
        {
            public Lucene.Net.Search.Filter filter;
            public long timestamp;
            public FilterItem(Lucene.Net.Search.Filter filter) { }
        }
    }
    public partial interface FloatParser : Lucene.Net.Search.Parser
    {
        float ParseFloat(string string_Renamed);
    }
    [System.SerializableAttribute]
    public partial class FuzzyQuery : Lucene.Net.Search.MultiTermQuery
    {
        public const float defaultMinSimilarity = 0.5f;
        public const int defaultPrefixLength = 0;
        public FuzzyQuery(Lucene.Net.Index.Term term) { }
        public FuzzyQuery(Lucene.Net.Index.Term term, float minimumSimilarity) { }
        public FuzzyQuery(Lucene.Net.Index.Term term, float minimumSimilarity, int prefixLength) { }
        public virtual float MinSimilarity { get { throw null; } }
        public virtual int PrefixLength { get { throw null; } }
        public override Lucene.Net.Search.RewriteMethod RewriteMethod { set { } }
        public Lucene.Net.Index.Term Term { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected internal set { } }
        public override bool Equals(object obj) { throw null; }
        protected internal override Lucene.Net.Search.FilteredTermEnum GetEnum(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
        protected internal partial class ScoreTerm : System.IComparable<Lucene.Net.Search.FuzzyQuery.ScoreTerm>
        {
            public float score;
            public Lucene.Net.Index.Term term;
            public ScoreTerm() { }
            public int CompareTo(Lucene.Net.Search.FuzzyQuery.ScoreTerm other) { throw null; }
        }
    }
    public sealed partial class FuzzyTermEnum : Lucene.Net.Search.FilteredTermEnum
    {
        public FuzzyTermEnum(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.Term term) { }
        public FuzzyTermEnum(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.Term term, float minSimilarity) { }
        public FuzzyTermEnum(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.Term term, float minSimilarity, int prefixLength) { }
        public override float Difference() { throw null; }
        protected override void Dispose(bool disposing) { }
        public override bool EndEnum() { throw null; }
        protected internal override bool TermCompare(Lucene.Net.Index.Term term) { throw null; }
    }
    public sealed partial class HitQueue : Lucene.Net.Util.PriorityQueue<Lucene.Net.Search.ScoreDoc>
    {
        public HitQueue(int size, bool prePopulate) { }
        protected internal override Lucene.Net.Search.ScoreDoc SentinelObject { get { throw null; } }
        public override bool LessThan(Lucene.Net.Search.ScoreDoc hitA, Lucene.Net.Search.ScoreDoc hitB) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class IndexSearcher : Lucene.Net.Search.Searcher
    {
        public IndexSearcher(Lucene.Net.Index.IndexReader r) { }
        public IndexSearcher(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.IndexReader[] subReaders, int[] docStarts) { }
        public IndexSearcher(Lucene.Net.Store.Directory path) { }
        public IndexSearcher(Lucene.Net.Store.Directory path, bool readOnly) { }
        public virtual Lucene.Net.Index.IndexReader IndexReader { get { throw null; } }
        public override int MaxDoc { get { throw null; } }
        public Lucene.Net.Index.IndexReader reader_ForNUnit { get { throw null; } }
        protected override void Dispose(bool disposing) { }
        public override Lucene.Net.Documents.Document Doc(int i) { throw null; }
        public override Lucene.Net.Documents.Document Doc(int i, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term term) { throw null; }
        public override Lucene.Net.Search.Explanation Explain(Lucene.Net.Search.Weight weight, int doc) { throw null; }
        protected internal virtual void GatherSubReaders(System.Collections.Generic.IList<Lucene.Net.Index.IndexReader> allSubReaders, Lucene.Net.Index.IndexReader r) { }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Search.Query original) { throw null; }
        public override void Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, Lucene.Net.Search.Collector collector) { }
        public override Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int nDocs) { throw null; }
        public override Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int nDocs, Lucene.Net.Search.Sort sort) { throw null; }
        public virtual Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int nDocs, Lucene.Net.Search.Sort sort, bool fillFields) { throw null; }
        public virtual void SetDefaultFieldSortScoring(bool doTrackScores, bool doMaxScore) { }
    }
    public partial interface IntParser : Lucene.Net.Search.Parser
    {
        int ParseInt(string string_Renamed);
    }
    public partial interface LongParser : Lucene.Net.Search.Parser
    {
        long ParseLong(string string_Renamed);
    }
    [System.SerializableAttribute]
    public partial class MatchAllDocsQuery : Lucene.Net.Search.Query
    {
        public MatchAllDocsQuery() { }
        public MatchAllDocsQuery(string normsField) { }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class MultiPhraseQuery : Lucene.Net.Search.Query
    {
        public MultiPhraseQuery() { }
        public virtual int Slop { get { throw null; } set { } }
        public virtual void Add(Lucene.Net.Index.Term term) { }
        public virtual void Add(Lucene.Net.Index.Term[] terms) { }
        public virtual void Add(Lucene.Net.Index.Term[] terms, int position) { }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public virtual int[] GetPositions() { throw null; }
        public virtual System.Collections.Generic.IList<Lucene.Net.Index.Term[]> GetTermArrays() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public static bool TermEquals(System.Array array1, System.Array array2) { throw null; }
        public override string ToString(string f) { throw null; }
    }
    public partial class MultiSearcher : Lucene.Net.Search.Searcher
    {
        public MultiSearcher(params Lucene.Net.Search.Searchable[] searchables) { }
        public override int MaxDoc { get { throw null; } }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Query original) { throw null; }
        protected override void Dispose(bool disposing) { }
        public override Lucene.Net.Documents.Document Doc(int n) { throw null; }
        public override Lucene.Net.Documents.Document Doc(int n, Lucene.Net.Documents.FieldSelector fieldSelector) { throw null; }
        public override int DocFreq(Lucene.Net.Index.Term term) { throw null; }
        public override Lucene.Net.Search.Explanation Explain(Lucene.Net.Search.Weight weight, int doc) { throw null; }
        public virtual Lucene.Net.Search.Searchable[] GetSearchables() { throw null; }
        protected internal virtual int[] GetStarts() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Search.Query original) { throw null; }
        public override void Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, Lucene.Net.Search.Collector collector) { }
        public override Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int nDocs) { throw null; }
        public override Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int n, Lucene.Net.Search.Sort sort) { throw null; }
        public virtual int SubDoc(int n) { throw null; }
        public virtual int SubSearcher(int n) { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class MultiTermQuery : Lucene.Net.Search.Query
    {
        public static readonly Lucene.Net.Search.RewriteMethod CONSTANT_SCORE_AUTO_REWRITE_DEFAULT;
        public static readonly Lucene.Net.Search.RewriteMethod CONSTANT_SCORE_BOOLEAN_QUERY_REWRITE;
        public static readonly Lucene.Net.Search.RewriteMethod CONSTANT_SCORE_FILTER_REWRITE;
        protected internal Lucene.Net.Search.RewriteMethod internalRewriteMethod;
        public static readonly Lucene.Net.Search.RewriteMethod SCORING_BOOLEAN_QUERY_REWRITE;
        protected MultiTermQuery() { }
        public virtual Lucene.Net.Search.RewriteMethod RewriteMethod { get { throw null; } set { } }
        public virtual int TotalNumberOfTerms { get { throw null; } }
        public virtual void ClearTotalNumberOfTerms() { }
        public override bool Equals(object obj) { throw null; }
        protected internal abstract Lucene.Net.Search.FilteredTermEnum GetEnum(Lucene.Net.Index.IndexReader reader);
        public override int GetHashCode() { throw null; }
        protected internal virtual void IncTotalNumberOfTerms(int inc) { }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        [System.SerializableAttribute]
        public partial class AnonymousClassConstantScoreAutoRewrite : Lucene.Net.Search.MultiTermQuery.ConstantScoreAutoRewrite
        {
            public AnonymousClassConstantScoreAutoRewrite() { }
            public override double DocCountPercent { set { } }
            public override int TermCountCutoff { set { } }
            protected internal virtual object ReadResolve() { throw null; }
        }
        [System.SerializableAttribute]
        public partial class ConstantScoreAutoRewrite : Lucene.Net.Search.RewriteMethod
        {
            public static double DEFAULT_DOC_COUNT_PERCENT;
            public static int DEFAULT_TERM_COUNT_CUTOFF;
            public ConstantScoreAutoRewrite() { }
            public virtual double DocCountPercent { get { throw null; } set { } }
            public virtual int TermCountCutoff { get { throw null; } set { } }
            public override bool Equals(object obj) { throw null; }
            public override int GetHashCode() { throw null; }
            public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader, Lucene.Net.Search.MultiTermQuery query) { throw null; }
        }
    }
    [System.SerializableAttribute]
    public partial class MultiTermQueryWrapperFilter<T> : Lucene.Net.Search.Filter where T : Lucene.Net.Search.MultiTermQuery
    {
        protected internal T query;
        protected internal MultiTermQueryWrapperFilter(T query) { }
        public virtual int TotalNumberOfTerms { get { throw null; } }
        public virtual void ClearTotalNumberOfTerms() { }
        public override bool Equals(object o) { throw null; }
        public override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    public static partial class NumericRangeFilter
    {
        public static Lucene.Net.Search.NumericRangeFilter<System.Double> NewDoubleRange(string field, int precisionStep, System.Nullable<double> min, System.Nullable<double> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Double> NewDoubleRange(string field, System.Nullable<double> min, System.Nullable<double> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Single> NewFloatRange(string field, int precisionStep, System.Nullable<float> min, System.Nullable<float> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Single> NewFloatRange(string field, System.Nullable<float> min, System.Nullable<float> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Int32> NewIntRange(string field, int precisionStep, System.Nullable<int> min, System.Nullable<int> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Int32> NewIntRange(string field, System.Nullable<int> min, System.Nullable<int> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Int64> NewLongRange(string field, int precisionStep, System.Nullable<long> min, System.Nullable<long> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeFilter<System.Int64> NewLongRange(string field, System.Nullable<long> min, System.Nullable<long> max, bool minInclusive, bool maxInclusive) { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class NumericRangeFilter<T> : Lucene.Net.Search.MultiTermQueryWrapperFilter<Lucene.Net.Search.NumericRangeQuery<T>> where T : struct, System.IComparable<T>
    {
        internal NumericRangeFilter() : base (default(Lucene.Net.Search.NumericRangeQuery<T>)) { }
        public string Field { get { throw null; } }
        public bool IncludesMax { get { throw null; } }
        public bool IncludesMin { get { throw null; } }
        public System.Nullable<T> Max { get { throw null; } }
        public System.Nullable<T> Min { get { throw null; } }
    }
    public static partial class NumericRangeQuery
    {
        public static Lucene.Net.Search.NumericRangeQuery<System.Double> NewDoubleRange(string field, int precisionStep, System.Nullable<double> min, System.Nullable<double> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Double> NewDoubleRange(string field, System.Nullable<double> min, System.Nullable<double> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Single> NewFloatRange(string field, int precisionStep, System.Nullable<float> min, System.Nullable<float> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Single> NewFloatRange(string field, System.Nullable<float> min, System.Nullable<float> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Int32> NewIntRange(string field, int precisionStep, System.Nullable<int> min, System.Nullable<int> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Int32> NewIntRange(string field, System.Nullable<int> min, System.Nullable<int> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Int64> NewLongRange(string field, int precisionStep, System.Nullable<long> min, System.Nullable<long> max, bool minInclusive, bool maxInclusive) { throw null; }
        public static Lucene.Net.Search.NumericRangeQuery<System.Int64> NewLongRange(string field, System.Nullable<long> min, System.Nullable<long> max, bool minInclusive, bool maxInclusive) { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class NumericRangeQuery<T> : Lucene.Net.Search.MultiTermQuery where T : struct, System.IComparable<T>
    {
        internal NumericRangeQuery() { }
        public string Field { get { throw null; } }
        public bool IncludesMax { get { throw null; } }
        public bool IncludesMin { get { throw null; } }
        public System.Nullable<T> Max { get { throw null; } }
        public System.Nullable<T> Min { get { throw null; } }
        public override bool Equals(object o) { throw null; }
        protected internal override Lucene.Net.Search.FilteredTermEnum GetEnum(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString(string field) { throw null; }
    }
    public enum Occur
    {
        MUST = 0,
        MUST_NOT = 2,
        SHOULD = 1,
    }
    public static partial class OccurExtensions
    {
        public static string ToString(this Lucene.Net.Search.Occur occur) { throw null; }
    }
    public partial class ParallelMultiSearcher : Lucene.Net.Search.MultiSearcher
    {
        public ParallelMultiSearcher(params Lucene.Net.Search.Searchable[] searchables) : base (default(Lucene.Net.Search.Searchable[])) { }
        public override int DocFreq(Lucene.Net.Index.Term term) { throw null; }
        public override void Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, Lucene.Net.Search.Collector collector) { }
        public override Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int nDocs) { throw null; }
        public override Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int nDocs, Lucene.Net.Search.Sort sort) { throw null; }
    }
    public partial interface Parser
    {
    }
    [System.SerializableAttribute]
    public partial class PhraseQuery : Lucene.Net.Search.Query
    {
        public PhraseQuery() { }
        public virtual int Slop { get { throw null; } set { } }
        public virtual void Add(Lucene.Net.Index.Term term) { }
        public virtual void Add(Lucene.Net.Index.Term term, int position) { }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> queryTerms) { }
        public override int GetHashCode() { throw null; }
        public virtual int[] GetPositions() { throw null; }
        public virtual Lucene.Net.Index.Term[] GetTerms() { throw null; }
        public override string ToString(string f) { throw null; }
    }
    public partial class PositiveScoresOnlyCollector : Lucene.Net.Search.Collector
    {
        public PositiveScoresOnlyCollector(Lucene.Net.Search.Collector c) { }
        public override bool AcceptsDocsOutOfOrder { get { throw null; } }
        public override void Collect(int doc) { }
        public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int docBase) { }
        public override void SetScorer(Lucene.Net.Search.Scorer scorer) { }
    }
    [System.SerializableAttribute]
    public partial class PrefixFilter : Lucene.Net.Search.MultiTermQueryWrapperFilter<Lucene.Net.Search.PrefixQuery>
    {
        public PrefixFilter(Lucene.Net.Index.Term prefix) : base (default(Lucene.Net.Search.PrefixQuery)) { }
        public virtual Lucene.Net.Index.Term Prefix { get { throw null; } }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class PrefixQuery : Lucene.Net.Search.MultiTermQuery
    {
        public PrefixQuery(Lucene.Net.Index.Term prefix) { }
        public virtual Lucene.Net.Index.Term Prefix { get { throw null; } }
        public override bool Equals(object obj) { throw null; }
        protected internal override Lucene.Net.Search.FilteredTermEnum GetEnum(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString(string field) { throw null; }
    }
    public partial class PrefixTermEnum : Lucene.Net.Search.FilteredTermEnum
    {
        public PrefixTermEnum(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.Term prefix) { }
        protected internal virtual Lucene.Net.Index.Term PrefixTerm { get { throw null; } }
        public override float Difference() { throw null; }
        public override bool EndEnum() { throw null; }
        protected internal override bool TermCompare(Lucene.Net.Index.Term term) { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class Query : System.ICloneable
    {
        protected Query() { }
        public virtual float Boost { get { throw null; } set { } }
        public virtual object Clone() { throw null; }
        public virtual Lucene.Net.Search.Query Combine(Lucene.Net.Search.Query[] queries) { throw null; }
        public virtual Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public virtual void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public virtual Lucene.Net.Search.Similarity GetSimilarity(Lucene.Net.Search.Searcher searcher) { throw null; }
        public static Lucene.Net.Search.Query MergeBooleanQueries(params Lucene.Net.Search.BooleanQuery[] queries) { throw null; }
        public virtual Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString() { throw null; }
        public abstract string ToString(string field);
        public virtual Lucene.Net.Search.Weight Weight(Lucene.Net.Search.Searcher searcher) { throw null; }
    }
    public partial class QueryTermVector : Lucene.Net.Index.ITermFreqVector
    {
        public QueryTermVector(string queryString, Lucene.Net.Analysis.Analyzer analyzer) { }
        public QueryTermVector(string[] queryTerms) { }
        public virtual string Field { get { throw null; } }
        public virtual int Size { get { throw null; } }
        public virtual int[] GetTermFrequencies() { throw null; }
        public virtual string[] GetTerms() { throw null; }
        public virtual int[] IndexesOf(string[] terms, int start, int len) { throw null; }
        public virtual int IndexOf(string term) { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class QueryWrapperFilter : Lucene.Net.Search.Filter
    {
        public QueryWrapperFilter(Lucene.Net.Search.Query query) { }
        public override bool Equals(object o) { throw null; }
        public override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class RewriteMethod
    {
        protected RewriteMethod() { }
        public abstract Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader, Lucene.Net.Search.MultiTermQuery query);
    }
    public partial class ScoreCachingWrappingScorer : Lucene.Net.Search.Scorer
    {
        public ScoreCachingWrappingScorer(Lucene.Net.Search.Scorer scorer) : base (default(Lucene.Net.Search.Similarity)) { }
        public override Lucene.Net.Search.Similarity Similarity { get { throw null; } }
        public override int Advance(int target) { throw null; }
        public override int DocID() { throw null; }
        public override int NextDoc() { throw null; }
        public override float Score() { throw null; }
        public override void Score(Lucene.Net.Search.Collector collector) { }
        public override bool Score(Lucene.Net.Search.Collector collector, int max, int firstDocID) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class ScoreDoc
    {
        public ScoreDoc(int doc, float score) { }
        public int Doc { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public float Score { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public override string ToString() { throw null; }
    }
    public abstract partial class Scorer : Lucene.Net.Search.DocIdSetIterator
    {
        protected internal Scorer(Lucene.Net.Search.Similarity similarity) { }
        public virtual Lucene.Net.Search.Similarity Similarity { get { throw null; } }
        public abstract float Score();
        public virtual void Score(Lucene.Net.Search.Collector collector) { }
        public virtual bool Score(Lucene.Net.Search.Collector collector, int max, int firstDocID) { throw null; }
    }
    public partial interface Searchable : System.IDisposable
    {
        int MaxDoc { get; }
        void Close();
        Lucene.Net.Documents.Document Doc(int i);
        Lucene.Net.Documents.Document Doc(int n, Lucene.Net.Documents.FieldSelector fieldSelector);
        int DocFreq(Lucene.Net.Index.Term term);
        int[] DocFreqs(Lucene.Net.Index.Term[] terms);
        Lucene.Net.Search.Explanation Explain(Lucene.Net.Search.Weight weight, int doc);
        Lucene.Net.Search.Query Rewrite(Lucene.Net.Search.Query query);
        void Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, Lucene.Net.Search.Collector collector);
        Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int n);
        Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int n, Lucene.Net.Search.Sort sort);
    }
    public abstract partial class Searcher : System.MarshalByRefObject, Lucene.Net.Search.Searchable, System.IDisposable
    {
        protected Searcher() { }
        public abstract int MaxDoc { get; }
        public virtual Lucene.Net.Search.Similarity Similarity { get { throw null; } set { } }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public virtual Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Query query) { throw null; }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract Lucene.Net.Documents.Document Doc(int i);
        public abstract Lucene.Net.Documents.Document Doc(int docid, Lucene.Net.Documents.FieldSelector fieldSelector);
        public abstract int DocFreq(Lucene.Net.Index.Term term);
        public virtual int[] DocFreqs(Lucene.Net.Index.Term[] terms) { throw null; }
        public virtual Lucene.Net.Search.Explanation Explain(Lucene.Net.Search.Query query, int doc) { throw null; }
        public abstract Lucene.Net.Search.Explanation Explain(Lucene.Net.Search.Weight weight, int doc);
        public abstract Lucene.Net.Search.Query Rewrite(Lucene.Net.Search.Query query);
        public virtual void Search(Lucene.Net.Search.Query query, Lucene.Net.Search.Collector results) { }
        public virtual void Search(Lucene.Net.Search.Query query, Lucene.Net.Search.Filter filter, Lucene.Net.Search.Collector results) { }
        public virtual Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Query query, Lucene.Net.Search.Filter filter, int n) { throw null; }
        public virtual Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Query query, Lucene.Net.Search.Filter filter, int n, Lucene.Net.Search.Sort sort) { throw null; }
        public virtual Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Query query, int n) { throw null; }
        public abstract void Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, Lucene.Net.Search.Collector results);
        public abstract Lucene.Net.Search.TopDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int n);
        public abstract Lucene.Net.Search.TopFieldDocs Search(Lucene.Net.Search.Weight weight, Lucene.Net.Search.Filter filter, int n, Lucene.Net.Search.Sort sort);
    }
    public partial interface ShortParser : Lucene.Net.Search.Parser
    {
        short ParseShort(string string_Renamed);
    }
    [System.SerializableAttribute]
    public abstract partial class Similarity
    {
        public const int NO_DOC_ID_PROVIDED = -1;
        protected Similarity() { }
        public static Lucene.Net.Search.Similarity Default { get { throw null; } set { } }
        public virtual float ComputeNorm(string field, Lucene.Net.Index.FieldInvertState state) { throw null; }
        public abstract float Coord(int overlap, int maxOverlap);
        public static float DecodeNorm(byte b) { throw null; }
        public static byte EncodeNorm(float f) { throw null; }
        public static float[] GetNormDecoder() { throw null; }
        public abstract float Idf(int docFreq, int numDocs);
        public virtual Lucene.Net.Search.Explanation.IDFExplanation IdfExplain(Lucene.Net.Index.Term term, Lucene.Net.Search.Searcher searcher) { throw null; }
        public virtual Lucene.Net.Search.Explanation.IDFExplanation IdfExplain(System.Collections.Generic.ICollection<Lucene.Net.Index.Term> terms, Lucene.Net.Search.Searcher searcher) { throw null; }
        public abstract float LengthNorm(string fieldName, int numTokens);
        public abstract float QueryNorm(float sumOfSquaredWeights);
        public virtual float ScorePayload(int docId, string fieldName, int start, int end, byte[] payload, int offset, int length) { throw null; }
        public abstract float SloppyFreq(int distance);
        public virtual float Tf(int freq) { throw null; }
        public abstract float Tf(float freq);
    }
    [System.SerializableAttribute]
    public partial class SimilarityDelegator : Lucene.Net.Search.Similarity
    {
        public SimilarityDelegator(Lucene.Net.Search.Similarity delegee) { }
        public override float ComputeNorm(string fieldName, Lucene.Net.Index.FieldInvertState state) { throw null; }
        public override float Coord(int overlap, int maxOverlap) { throw null; }
        public override float Idf(int docFreq, int numDocs) { throw null; }
        public override float LengthNorm(string fieldName, int numTerms) { throw null; }
        public override float QueryNorm(float sumOfSquaredWeights) { throw null; }
        public override float ScorePayload(int docId, string fieldName, int start, int end, byte[] payload, int offset, int length) { throw null; }
        public override float SloppyFreq(int distance) { throw null; }
        public override float Tf(float freq) { throw null; }
    }
    public partial class SingleTermEnum : Lucene.Net.Search.FilteredTermEnum
    {
        public SingleTermEnum(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.Term singleTerm) { }
        public override float Difference() { throw null; }
        public override bool EndEnum() { throw null; }
        protected internal override bool TermCompare(Lucene.Net.Index.Term term) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class Sort
    {
        public static readonly Lucene.Net.Search.Sort INDEXORDER;
        public static readonly Lucene.Net.Search.Sort RELEVANCE;
        public Sort() { }
        public Sort(Lucene.Net.Search.SortField field) { }
        public Sort(params Lucene.Net.Search.SortField[] fields) { }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual Lucene.Net.Search.SortField[] GetSort() { throw null; }
        public virtual void SetSort(Lucene.Net.Search.SortField field) { }
        public virtual void SetSort(params Lucene.Net.Search.SortField[] fields) { }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SortField
    {
        public const int BYTE = 10;
        public const int CUSTOM = 9;
        public const int DOC = 1;
        public const int DOUBLE = 7;
        public static readonly Lucene.Net.Search.SortField FIELD_DOC;
        public static readonly Lucene.Net.Search.SortField FIELD_SCORE;
        public const int FLOAT = 5;
        public const int INT = 4;
        public const int LONG = 6;
        public const int SCORE = 0;
        public const int SHORT = 8;
        public const int STRING = 3;
        public const int STRING_VAL = 11;
        public SortField(string field, Lucene.Net.Search.FieldComparatorSource comparator) { }
        public SortField(string field, Lucene.Net.Search.FieldComparatorSource comparator, bool reverse) { }
        public SortField(string field, Lucene.Net.Search.Parser parser) { }
        public SortField(string field, Lucene.Net.Search.Parser parser, bool reverse) { }
        public SortField(string field, System.Globalization.CultureInfo locale) { }
        public SortField(string field, System.Globalization.CultureInfo locale, bool reverse) { }
        public SortField(string field, int type) { }
        public SortField(string field, int type, bool reverse) { }
        public virtual Lucene.Net.Search.FieldComparatorSource ComparatorSource { get { throw null; } }
        public virtual string Field { get { throw null; } }
        public virtual System.Globalization.CultureInfo Locale { get { throw null; } }
        public virtual Lucene.Net.Search.Parser Parser { get { throw null; } }
        public virtual bool Reverse { get { throw null; } }
        public virtual int Type { get { throw null; } }
        public override bool Equals(object o) { throw null; }
        public virtual Lucene.Net.Search.FieldComparator GetComparator(int numHits, int sortPos) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class SpanFilter : Lucene.Net.Search.Filter
    {
        protected SpanFilter() { }
        public abstract Lucene.Net.Search.SpanFilterResult BitSpans(Lucene.Net.Index.IndexReader reader);
    }
    public partial class SpanFilterResult
    {
        public SpanFilterResult(Lucene.Net.Search.DocIdSet docIdSet, System.Collections.Generic.IList<Lucene.Net.Search.SpanFilterResult.PositionInfo> positions) { }
        public virtual Lucene.Net.Search.DocIdSet DocIdSet { get { throw null; } }
        public virtual System.Collections.Generic.IList<Lucene.Net.Search.SpanFilterResult.PositionInfo> Positions { get { throw null; } }
        public partial class PositionInfo
        {
            public PositionInfo(int doc) { }
            public virtual int Doc { get { throw null; } }
            public virtual System.Collections.Generic.IList<Lucene.Net.Search.SpanFilterResult.StartEnd> Positions { get { throw null; } }
            public virtual void AddPosition(int start, int end) { }
        }
        public partial class StartEnd
        {
            public StartEnd(int start, int end) { }
            public virtual int End { get { throw null; } }
            public virtual int Start { get { throw null; } }
        }
    }
    [System.SerializableAttribute]
    public partial class SpanQueryFilter : Lucene.Net.Search.SpanFilter
    {
        protected internal Lucene.Net.Search.Spans.SpanQuery internalQuery;
        protected internal SpanQueryFilter() { }
        public SpanQueryFilter(Lucene.Net.Search.Spans.SpanQuery query) { }
        public virtual Lucene.Net.Search.Spans.SpanQuery Query { get { throw null; } }
        public override Lucene.Net.Search.SpanFilterResult BitSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override Lucene.Net.Search.DocIdSet GetDocIdSet(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class StringIndex
    {
        public string[] lookup;
        public int[] order;
        public StringIndex(int[] values, string[] lookup) { }
        public virtual int BinarySearchLookup(string key) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class TermQuery : Lucene.Net.Search.Query
    {
        public TermQuery(Lucene.Net.Index.Term t) { }
        public virtual Lucene.Net.Index.Term Term { get { throw null; } }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class TermRangeFilter : Lucene.Net.Search.MultiTermQueryWrapperFilter<Lucene.Net.Search.TermRangeQuery>
    {
        public TermRangeFilter(string fieldName, string lowerTerm, string upperTerm, bool includeLower, bool includeUpper) : base (default(Lucene.Net.Search.TermRangeQuery)) { }
        public TermRangeFilter(string fieldName, string lowerTerm, string upperTerm, bool includeLower, bool includeUpper, System.Globalization.CompareInfo collator) : base (default(Lucene.Net.Search.TermRangeQuery)) { }
        public virtual System.Globalization.CompareInfo Collator { get { throw null; } }
        public virtual string Field { get { throw null; } }
        public virtual bool IncludesLower { get { throw null; } }
        public virtual bool IncludesUpper { get { throw null; } }
        public virtual string LowerTerm { get { throw null; } }
        public virtual string UpperTerm { get { throw null; } }
        public static Lucene.Net.Search.TermRangeFilter Less(string fieldName, string upperTerm) { throw null; }
        public static Lucene.Net.Search.TermRangeFilter More(string fieldName, string lowerTerm) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class TermRangeQuery : Lucene.Net.Search.MultiTermQuery
    {
        public TermRangeQuery(string field, string lowerTerm, string upperTerm, bool includeLower, bool includeUpper) { }
        public TermRangeQuery(string field, string lowerTerm, string upperTerm, bool includeLower, bool includeUpper, System.Globalization.CompareInfo collator) { }
        public virtual System.Globalization.CompareInfo Collator { get { throw null; } }
        public virtual string Field { get { throw null; } }
        public virtual bool IncludesLower { get { throw null; } }
        public virtual bool IncludesUpper { get { throw null; } }
        public virtual string LowerTerm { get { throw null; } }
        public virtual string UpperTerm { get { throw null; } }
        public override bool Equals(object obj) { throw null; }
        protected internal override Lucene.Net.Search.FilteredTermEnum GetEnum(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString(string field) { throw null; }
    }
    public partial class TermRangeTermEnum : Lucene.Net.Search.FilteredTermEnum
    {
        public TermRangeTermEnum(Lucene.Net.Index.IndexReader reader, string field, string lowerTermText, string upperTermText, bool includeLower, bool includeUpper, System.Globalization.CompareInfo collator) { }
        public override float Difference() { throw null; }
        public override bool EndEnum() { throw null; }
        protected internal override bool TermCompare(Lucene.Net.Index.Term term) { throw null; }
    }
    public sealed partial class TermScorer : Lucene.Net.Search.Scorer
    {
        public TermScorer(Lucene.Net.Search.Weight weight, Lucene.Net.Index.TermDocs td, Lucene.Net.Search.Similarity similarity, byte[] norms) : base (default(Lucene.Net.Search.Similarity)) { }
        public override int Advance(int target) { throw null; }
        public override int DocID() { throw null; }
        public override int NextDoc() { throw null; }
        public override float Score() { throw null; }
        public override void Score(Lucene.Net.Search.Collector c) { }
        public override bool Score(Lucene.Net.Search.Collector c, int end, int firstDocID) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class TimeLimitingCollector : Lucene.Net.Search.Collector
    {
        public bool DEFAULT_GREEDY;
        public const int DEFAULT_RESOLUTION = 20;
        public TimeLimitingCollector(Lucene.Net.Search.Collector collector, long timeAllowed) { }
        public override bool AcceptsDocsOutOfOrder { get { throw null; } }
        public virtual bool IsGreedy { get { throw null; } set { } }
        public static long Resolution { get { throw null; } set { } }
        public override void Collect(int doc) { }
        public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int base_Renamed) { }
        public override void SetScorer(Lucene.Net.Search.Scorer scorer) { }
        [System.SerializableAttribute]
        public partial class TimeExceededException : System.SystemException
        {
            internal TimeExceededException() { }
            public virtual int LastDocCollected { get { throw null; } }
            public virtual long TimeAllowed { get { throw null; } }
            public virtual long TimeElapsed { get { throw null; } }
        }
    }
    [System.SerializableAttribute]
    public partial class TopDocs
    {
        public TopDocs(int totalHits, Lucene.Net.Search.ScoreDoc[] scoreDocs, float maxScore) { }
        public float MaxScore { get { throw null; } set { } }
        public Lucene.Net.Search.ScoreDoc[] ScoreDocs { get { throw null; } set { } }
        public int TotalHits { get { throw null; } set { } }
    }
    public abstract partial class TopDocsCollector<T> : Lucene.Net.Search.Collector where T : Lucene.Net.Search.ScoreDoc
    {
        protected internal static readonly Lucene.Net.Search.TopDocs EMPTY_TOPDOCS;
        protected internal int internalTotalHits;
        protected internal Lucene.Net.Util.PriorityQueue<T> pq;
        protected internal TopDocsCollector(Lucene.Net.Util.PriorityQueue<T> pq) { }
        public virtual int TotalHits { get { throw null; } }
        public virtual Lucene.Net.Search.TopDocs NewTopDocs(Lucene.Net.Search.ScoreDoc[] results, int start) { throw null; }
        protected internal virtual void PopulateResults(Lucene.Net.Search.ScoreDoc[] results, int howMany) { }
        public Lucene.Net.Search.TopDocs TopDocs() { throw null; }
        public Lucene.Net.Search.TopDocs TopDocs(int start) { throw null; }
        public Lucene.Net.Search.TopDocs TopDocs(int start, int howMany) { throw null; }
    }
    public abstract partial class TopFieldCollector : Lucene.Net.Search.TopDocsCollector<Lucene.Net.Search.FieldValueHitQueue.Entry>
    {
        internal TopFieldCollector() : base (default(Lucene.Net.Util.PriorityQueue<Lucene.Net.Search.FieldValueHitQueue.Entry>)) { }
        public override bool AcceptsDocsOutOfOrder { get { throw null; } }
        public static Lucene.Net.Search.TopFieldCollector Create(Lucene.Net.Search.Sort sort, int numHits, bool fillFields, bool trackDocScores, bool trackMaxScore, bool docsScoredInOrder) { throw null; }
        public override Lucene.Net.Search.TopDocs NewTopDocs(Lucene.Net.Search.ScoreDoc[] results, int start) { throw null; }
        protected internal override void PopulateResults(Lucene.Net.Search.ScoreDoc[] results, int howMany) { }
    }
    [System.SerializableAttribute]
    public partial class TopFieldDocs : Lucene.Net.Search.TopDocs
    {
        public Lucene.Net.Search.SortField[] fields;
        public TopFieldDocs(int totalHits, Lucene.Net.Search.ScoreDoc[] scoreDocs, Lucene.Net.Search.SortField[] fields, float maxScore) : base (default(int), default(Lucene.Net.Search.ScoreDoc[]), default(float)) { }
    }
    public abstract partial class TopScoreDocCollector : Lucene.Net.Search.TopDocsCollector<Lucene.Net.Search.ScoreDoc>
    {
        internal TopScoreDocCollector() : base (default(Lucene.Net.Util.PriorityQueue<Lucene.Net.Search.ScoreDoc>)) { }
        public static Lucene.Net.Search.TopScoreDocCollector Create(int numHits, bool docsScoredInOrder) { throw null; }
        public override Lucene.Net.Search.TopDocs NewTopDocs(Lucene.Net.Search.ScoreDoc[] results, int start) { throw null; }
        public override void SetNextReader(Lucene.Net.Index.IndexReader reader, int base_Renamed) { }
        public override void SetScorer(Lucene.Net.Search.Scorer scorer) { }
    }
    [System.SerializableAttribute]
    public abstract partial class Weight
    {
        protected Weight() { }
        public abstract Lucene.Net.Search.Query Query { get; }
        public abstract float Value { get; }
        public abstract Lucene.Net.Search.Explanation Explain(Lucene.Net.Index.IndexReader reader, int doc);
        public virtual bool GetScoresDocsOutOfOrder() { throw null; }
        public abstract float GetSumOfSquaredWeights();
        public abstract void Normalize(float norm);
        public abstract Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer);
    }
    [System.SerializableAttribute]
    public partial class WildcardQuery : Lucene.Net.Search.MultiTermQuery
    {
        protected internal Lucene.Net.Index.Term internalTerm;
        public WildcardQuery(Lucene.Net.Index.Term term) { }
        public Lucene.Net.Index.Term Term { get { throw null; } }
        public override bool Equals(object obj) { throw null; }
        protected internal override Lucene.Net.Search.FilteredTermEnum GetEnum(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    public partial class WildcardTermEnum : Lucene.Net.Search.FilteredTermEnum
    {
        public const char WILDCARD_CHAR = '?';
        public const char WILDCARD_STRING = '*';
        public WildcardTermEnum(Lucene.Net.Index.IndexReader reader, Lucene.Net.Index.Term term) { }
        public override float Difference() { throw null; }
        public override bool EndEnum() { throw null; }
        protected internal override bool TermCompare(Lucene.Net.Index.Term term) { throw null; }
        public static bool WildcardEquals(string pattern, int patternIdx, string string_Renamed, int stringIdx) { throw null; }
    }
}
namespace Lucene.Net.Search.Function
{
    [System.SerializableAttribute]
    public partial class ByteFieldSource : Lucene.Net.Search.Function.FieldCacheSource
    {
        public ByteFieldSource(string field) : base (default(string)) { }
        public ByteFieldSource(string field, Lucene.Net.Search.ByteParser parser) : base (default(string)) { }
        public override bool CachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource o) { throw null; }
        public override int CachedFieldSourceHashCode() { throw null; }
        public override string Description() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetCachedFieldValues(Lucene.Net.Search.FieldCache cache, string field, Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    public partial class CustomScoreProvider
    {
        protected Lucene.Net.Index.IndexReader reader;
        public CustomScoreProvider(Lucene.Net.Index.IndexReader reader) { }
        public virtual Lucene.Net.Search.Explanation CustomExplain(int doc, Lucene.Net.Search.Explanation subQueryExpl, Lucene.Net.Search.Explanation valSrcExpl) { throw null; }
        public virtual Lucene.Net.Search.Explanation CustomExplain(int doc, Lucene.Net.Search.Explanation subQueryExpl, Lucene.Net.Search.Explanation[] valSrcExpls) { throw null; }
        public virtual float CustomScore(int doc, float subQueryScore, float valSrcScore) { throw null; }
        public virtual float CustomScore(int doc, float subQueryScore, float[] valSrcScores) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class CustomScoreQuery : Lucene.Net.Search.Query, System.ICloneable
    {
        public CustomScoreQuery(Lucene.Net.Search.Query subQuery) { }
        public CustomScoreQuery(Lucene.Net.Search.Query subQuery, Lucene.Net.Search.Function.ValueSourceQuery valSrcQuery) { }
        public CustomScoreQuery(Lucene.Net.Search.Query subQuery, params Lucene.Net.Search.Function.ValueSourceQuery[] valSrcQueries) { }
        public override object Clone() { throw null; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        [System.ObsoleteAttribute("Will be removed in Lucene 3.1")]
        public virtual Lucene.Net.Search.Explanation CustomExplain(int doc, Lucene.Net.Search.Explanation subQueryExpl, Lucene.Net.Search.Explanation valSrcExpl) { throw null; }
        [System.ObsoleteAttribute("Will be removed in Lucene 3.1")]
        public virtual Lucene.Net.Search.Explanation CustomExplain(int doc, Lucene.Net.Search.Explanation subQueryExpl, Lucene.Net.Search.Explanation[] valSrcExpls) { throw null; }
        [System.ObsoleteAttribute("Will be removed in Lucene 3.1")]
        public virtual float CustomScore(int doc, float subQueryScore, float valSrcScore) { throw null; }
        [System.ObsoleteAttribute("Will be removed in Lucene 3.1")]
        public virtual float CustomScore(int doc, float subQueryScore, float[] valSrcScores) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        protected virtual Lucene.Net.Search.Function.CustomScoreProvider GetCustomScoreProvider(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual bool IsStrict() { throw null; }
        public virtual string Name() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public virtual void SetStrict(bool strict) { }
        public override string ToString(string field) { throw null; }
    }
    public abstract partial class DocValues
    {
        protected DocValues() { }
        protected internal virtual object InnerArray { get { throw null; } }
        public virtual double DoubleVal(int doc) { throw null; }
        public virtual Lucene.Net.Search.Explanation Explain(int doc) { throw null; }
        public abstract float FloatVal(int doc);
        public virtual float GetAverageValue() { throw null; }
        public virtual float GetMaxValue() { throw null; }
        public virtual float GetMinValue() { throw null; }
        public virtual int IntVal(int doc) { throw null; }
        public virtual long LongVal(int doc) { throw null; }
        public virtual string StrVal(int doc) { throw null; }
        public abstract string ToString(int doc);
    }
    [System.SerializableAttribute]
    public abstract partial class FieldCacheSource : Lucene.Net.Search.Function.ValueSource
    {
        protected FieldCacheSource(string field) { }
        public abstract bool CachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource other);
        public abstract int CachedFieldSourceHashCode();
        public override string Description() { throw null; }
        public override bool Equals(object o) { throw null; }
        public abstract Lucene.Net.Search.Function.DocValues GetCachedFieldValues(Lucene.Net.Search.FieldCache cache, string field, Lucene.Net.Index.IndexReader reader);
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetValues(Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class FieldScoreQuery : Lucene.Net.Search.Function.ValueSourceQuery
    {
        public FieldScoreQuery(string field, Lucene.Net.Search.Function.FieldScoreQuery.Type type) : base (default(Lucene.Net.Search.Function.ValueSource)) { }
        public partial class Type
        {
            internal Type() { }
            public static readonly Lucene.Net.Search.Function.FieldScoreQuery.Type BYTE;
            public static readonly Lucene.Net.Search.Function.FieldScoreQuery.Type FLOAT;
            public static readonly Lucene.Net.Search.Function.FieldScoreQuery.Type INT;
            public static readonly Lucene.Net.Search.Function.FieldScoreQuery.Type SHORT;
            public override string ToString() { throw null; }
        }
    }
    [System.SerializableAttribute]
    public partial class FloatFieldSource : Lucene.Net.Search.Function.FieldCacheSource
    {
        public FloatFieldSource(string field) : base (default(string)) { }
        public FloatFieldSource(string field, Lucene.Net.Search.FloatParser parser) : base (default(string)) { }
        public override bool CachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource o) { throw null; }
        public override int CachedFieldSourceHashCode() { throw null; }
        public override string Description() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetCachedFieldValues(Lucene.Net.Search.FieldCache cache, string field, Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class IntFieldSource : Lucene.Net.Search.Function.FieldCacheSource
    {
        public IntFieldSource(string field) : base (default(string)) { }
        public IntFieldSource(string field, Lucene.Net.Search.IntParser parser) : base (default(string)) { }
        public override bool CachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource o) { throw null; }
        public override int CachedFieldSourceHashCode() { throw null; }
        public override string Description() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetCachedFieldValues(Lucene.Net.Search.FieldCache cache, string field, Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class OrdFieldSource : Lucene.Net.Search.Function.ValueSource
    {
        protected internal string field;
        public OrdFieldSource(string field) { }
        public override string Description() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetValues(Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class ReverseOrdFieldSource : Lucene.Net.Search.Function.ValueSource
    {
        public string field;
        public ReverseOrdFieldSource(string field) { }
        public override string Description() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetValues(Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class ShortFieldSource : Lucene.Net.Search.Function.FieldCacheSource
    {
        public ShortFieldSource(string field) : base (default(string)) { }
        public ShortFieldSource(string field, Lucene.Net.Search.ShortParser parser) : base (default(string)) { }
        public override bool CachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource o) { throw null; }
        public override int CachedFieldSourceHashCode() { throw null; }
        public override string Description() { throw null; }
        public override Lucene.Net.Search.Function.DocValues GetCachedFieldValues(Lucene.Net.Search.FieldCache cache, string field, Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class ValueSource
    {
        protected ValueSource() { }
        public abstract string Description();
        public abstract override bool Equals(object o);
        public abstract override int GetHashCode();
        public abstract Lucene.Net.Search.Function.DocValues GetValues(Lucene.Net.Index.IndexReader reader);
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class ValueSourceQuery : Lucene.Net.Search.Query
    {
        public ValueSourceQuery(Lucene.Net.Search.Function.ValueSource valSrc) { }
        public override object Clone() { throw null; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
}
namespace Lucene.Net.Search.Payloads
{
    [System.SerializableAttribute]
    public partial class AveragePayloadFunction : Lucene.Net.Search.Payloads.PayloadFunction
    {
        public AveragePayloadFunction() { }
        public override float CurrentScore(int docId, string field, int start, int end, int numPayloadsSeen, float currentScore, float currentPayloadScore) { throw null; }
        public override float DocScore(int docId, string field, int numPayloadsSeen, float payloadScore) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class MaxPayloadFunction : Lucene.Net.Search.Payloads.PayloadFunction
    {
        public MaxPayloadFunction() { }
        public override float CurrentScore(int docId, string field, int start, int end, int numPayloadsSeen, float currentScore, float currentPayloadScore) { throw null; }
        public override float DocScore(int docId, string field, int numPayloadsSeen, float payloadScore) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class MinPayloadFunction : Lucene.Net.Search.Payloads.PayloadFunction
    {
        public MinPayloadFunction() { }
        public override float CurrentScore(int docId, string field, int start, int end, int numPayloadsSeen, float currentScore, float currentPayloadScore) { throw null; }
        public override float DocScore(int docId, string field, int numPayloadsSeen, float payloadScore) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class PayloadFunction
    {
        protected PayloadFunction() { }
        public abstract float CurrentScore(int docId, string field, int start, int end, int numPayloadsSeen, float currentScore, float currentPayloadScore);
        public abstract float DocScore(int docId, string field, int numPayloadsSeen, float payloadScore);
        public abstract override bool Equals(object o);
        public abstract override int GetHashCode();
    }
    [System.SerializableAttribute]
    public partial class PayloadNearQuery : Lucene.Net.Search.Spans.SpanNearQuery, System.ICloneable
    {
        protected internal string fieldName;
        protected internal Lucene.Net.Search.Payloads.PayloadFunction function;
        public PayloadNearQuery(Lucene.Net.Search.Spans.SpanQuery[] clauses, int slop, bool inOrder) : base (default(Lucene.Net.Search.Spans.SpanQuery[]), default(int), default(bool)) { }
        public PayloadNearQuery(Lucene.Net.Search.Spans.SpanQuery[] clauses, int slop, bool inOrder, Lucene.Net.Search.Payloads.PayloadFunction function) : base (default(Lucene.Net.Search.Spans.SpanQuery[]), default(int), default(bool)) { }
        public override object Clone() { throw null; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString(string field) { throw null; }
        public partial class PayloadNearSpanScorer : Lucene.Net.Search.Spans.SpanScorer
        {
            protected internal float payloadScore;
            protected internal PayloadNearSpanScorer(Lucene.Net.Search.Payloads.PayloadNearQuery enclosingInstance, Lucene.Net.Search.Spans.Spans spans, Lucene.Net.Search.Weight weight, Lucene.Net.Search.Similarity similarity, byte[] norms) : base (default(Lucene.Net.Search.Spans.Spans), default(Lucene.Net.Search.Weight), default(Lucene.Net.Search.Similarity), default(byte[])) { }
            public Lucene.Net.Search.Payloads.PayloadNearQuery Enclosing_Instance { get { throw null; } }
            protected internal override Lucene.Net.Search.Explanation Explain(int doc) { throw null; }
            public virtual void GetPayloads(Lucene.Net.Search.Spans.Spans[] subSpans) { }
            protected internal virtual void ProcessPayloads(System.Collections.Generic.ICollection<byte[]> payLoads, int start, int end) { }
            public override float Score() { throw null; }
            public override bool SetFreqCurrentDoc() { throw null; }
        }
        [System.SerializableAttribute]
        public partial class PayloadNearSpanWeight : Lucene.Net.Search.Spans.SpanWeight
        {
            public PayloadNearSpanWeight(Lucene.Net.Search.Payloads.PayloadNearQuery enclosingInstance, Lucene.Net.Search.Spans.SpanQuery query, Lucene.Net.Search.Searcher searcher) : base (default(Lucene.Net.Search.Spans.SpanQuery), default(Lucene.Net.Search.Searcher)) { }
            public Lucene.Net.Search.Payloads.PayloadNearQuery Enclosing_Instance { get { throw null; } }
            public override Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer) { throw null; }
        }
    }
    public partial class PayloadSpanUtil
    {
        public PayloadSpanUtil(Lucene.Net.Index.IndexReader reader) { }
        public virtual System.Collections.Generic.ICollection<byte[]> GetPayloadsForQuery(Lucene.Net.Search.Query query) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class PayloadTermQuery : Lucene.Net.Search.Spans.SpanTermQuery
    {
        protected internal Lucene.Net.Search.Payloads.PayloadFunction function;
        public PayloadTermQuery(Lucene.Net.Index.Term term, Lucene.Net.Search.Payloads.PayloadFunction function) : base (default(Lucene.Net.Index.Term)) { }
        public PayloadTermQuery(Lucene.Net.Index.Term term, Lucene.Net.Search.Payloads.PayloadFunction function, bool includeSpanScore) : base (default(Lucene.Net.Index.Term)) { }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        [System.SerializableAttribute]
        protected internal partial class PayloadTermWeight : Lucene.Net.Search.Spans.SpanWeight
        {
            public PayloadTermWeight(Lucene.Net.Search.Payloads.PayloadTermQuery enclosingInstance, Lucene.Net.Search.Payloads.PayloadTermQuery query, Lucene.Net.Search.Searcher searcher) : base (default(Lucene.Net.Search.Spans.SpanQuery), default(Lucene.Net.Search.Searcher)) { }
            public Lucene.Net.Search.Payloads.PayloadTermQuery Enclosing_Instance { get { throw null; } }
            public override Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer) { throw null; }
            protected internal partial class PayloadTermSpanScorer : Lucene.Net.Search.Spans.SpanScorer
            {
                protected internal byte[] payload;
                protected internal float payloadScore;
                protected internal int payloadsSeen;
                protected internal Lucene.Net.Index.TermPositions positions;
                public PayloadTermSpanScorer(Lucene.Net.Search.Payloads.PayloadTermQuery.PayloadTermWeight enclosingInstance, Lucene.Net.Search.Spans.TermSpans spans, Lucene.Net.Search.Weight weight, Lucene.Net.Search.Similarity similarity, byte[] norms) : base (default(Lucene.Net.Search.Spans.Spans), default(Lucene.Net.Search.Weight), default(Lucene.Net.Search.Similarity), default(byte[])) { }
                public Lucene.Net.Search.Payloads.PayloadTermQuery.PayloadTermWeight Enclosing_Instance { get { throw null; } }
                protected internal override Lucene.Net.Search.Explanation Explain(int doc) { throw null; }
                protected internal virtual float GetPayloadScore() { throw null; }
                protected internal virtual float GetSpanScore() { throw null; }
                protected internal virtual void ProcessPayload(Lucene.Net.Search.Similarity similarity) { }
                public override float Score() { throw null; }
                public override bool SetFreqCurrentDoc() { throw null; }
            }
        }
    }
}
namespace Lucene.Net.Search.Spans
{
    [System.SerializableAttribute]
    public partial class FieldMaskingSpanQuery : Lucene.Net.Search.Spans.SpanQuery
    {
        public FieldMaskingSpanQuery(Lucene.Net.Search.Spans.SpanQuery maskedQuery, string maskedField) { }
        public override string Field { get { throw null; } }
        public virtual Lucene.Net.Search.Spans.SpanQuery MaskedQuery { get { throw null; } }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Similarity GetSimilarity(Lucene.Net.Search.Searcher searcher) { throw null; }
        public override Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    public partial class NearSpansOrdered : Lucene.Net.Search.Spans.Spans
    {
        public NearSpansOrdered(Lucene.Net.Search.Spans.SpanNearQuery spanNearQuery, Lucene.Net.Index.IndexReader reader) { }
        public NearSpansOrdered(Lucene.Net.Search.Spans.SpanNearQuery spanNearQuery, Lucene.Net.Index.IndexReader reader, bool collectPayloads) { }
        public override int Doc() { throw null; }
        public override int End() { throw null; }
        public override System.Collections.Generic.ICollection<byte[]> GetPayload() { throw null; }
        public virtual Lucene.Net.Search.Spans.Spans[] GetSubSpans() { throw null; }
        public override bool IsPayloadAvailable() { throw null; }
        public override bool Next() { throw null; }
        public override bool SkipTo(int target) { throw null; }
        public override int Start() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class NearSpansUnordered : Lucene.Net.Search.Spans.Spans
    {
        public NearSpansUnordered(Lucene.Net.Search.Spans.SpanNearQuery query, Lucene.Net.Index.IndexReader reader) { }
        public override int Doc() { throw null; }
        public override int End() { throw null; }
        public override System.Collections.Generic.ICollection<byte[]> GetPayload() { throw null; }
        public virtual Lucene.Net.Search.Spans.Spans[] GetSubSpans() { throw null; }
        public override bool IsPayloadAvailable() { throw null; }
        public override bool Next() { throw null; }
        public override bool SkipTo(int target) { throw null; }
        public override int Start() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SpanFirstQuery : Lucene.Net.Search.Spans.SpanQuery, System.ICloneable
    {
        public SpanFirstQuery(Lucene.Net.Search.Spans.SpanQuery match, int end) { }
        public virtual int End { get { throw null; } }
        public override string Field { get { throw null; } }
        public virtual Lucene.Net.Search.Spans.SpanQuery Match { get { throw null; } }
        public override object Clone() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SpanNearQuery : Lucene.Net.Search.Spans.SpanQuery, System.ICloneable
    {
        protected internal System.Collections.Generic.IList<Lucene.Net.Search.Spans.SpanQuery> clauses;
        protected internal bool inOrder;
        protected internal string internalField;
        protected internal int internalSlop;
        public SpanNearQuery(Lucene.Net.Search.Spans.SpanQuery[] clauses, int slop, bool inOrder) { }
        public SpanNearQuery(Lucene.Net.Search.Spans.SpanQuery[] clauses, int slop, bool inOrder, bool collectPayloads) { }
        public override string Field { get { throw null; } }
        public virtual bool IsInOrder { get { throw null; } }
        public virtual int Slop { get { throw null; } }
        public override object Clone() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public virtual Lucene.Net.Search.Spans.SpanQuery[] GetClauses() { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SpanNotQuery : Lucene.Net.Search.Spans.SpanQuery, System.ICloneable
    {
        public SpanNotQuery(Lucene.Net.Search.Spans.SpanQuery include, Lucene.Net.Search.Spans.SpanQuery exclude) { }
        public virtual Lucene.Net.Search.Spans.SpanQuery Exclude { get { throw null; } }
        public override string Field { get { throw null; } }
        public virtual Lucene.Net.Search.Spans.SpanQuery Include { get { throw null; } }
        public override object Clone() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SpanOrQuery : Lucene.Net.Search.Spans.SpanQuery, System.ICloneable
    {
        public SpanOrQuery(params Lucene.Net.Search.Spans.SpanQuery[] clauses) { }
        public override string Field { get { throw null; } }
        public override object Clone() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public virtual Lucene.Net.Search.Spans.SpanQuery[] GetClauses() { throw null; }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override Lucene.Net.Search.Query Rewrite(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class SpanQuery : Lucene.Net.Search.Query
    {
        protected SpanQuery() { }
        public abstract string Field { get; }
        public override Lucene.Net.Search.Weight CreateWeight(Lucene.Net.Search.Searcher searcher) { throw null; }
        public abstract Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader);
    }
    public abstract partial class Spans
    {
        protected Spans() { }
        public abstract int Doc();
        public abstract int End();
        public abstract System.Collections.Generic.ICollection<byte[]> GetPayload();
        public abstract bool IsPayloadAvailable();
        public abstract bool Next();
        public abstract bool SkipTo(int target);
        public abstract int Start();
    }
    public partial class SpanScorer : Lucene.Net.Search.Scorer
    {
        protected internal int doc;
        protected internal float freq;
        protected internal bool more;
        protected internal byte[] norms;
        protected internal Lucene.Net.Search.Spans.Spans spans;
        protected internal float value_Renamed;
        protected internal Lucene.Net.Search.Weight weight;
        protected internal SpanScorer(Lucene.Net.Search.Spans.Spans spans, Lucene.Net.Search.Weight weight, Lucene.Net.Search.Similarity similarity, byte[] norms) : base (default(Lucene.Net.Search.Similarity)) { }
        public override int Advance(int target) { throw null; }
        public override int DocID() { throw null; }
        protected internal virtual Lucene.Net.Search.Explanation Explain(int doc) { throw null; }
        public override int NextDoc() { throw null; }
        public override float Score() { throw null; }
        public virtual bool SetFreqCurrentDoc() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SpanTermQuery : Lucene.Net.Search.Spans.SpanQuery
    {
        protected internal Lucene.Net.Index.Term internalTerm;
        public SpanTermQuery(Lucene.Net.Index.Term term) { }
        public override string Field { get { throw null; } }
        public virtual Lucene.Net.Index.Term Term { get { throw null; } }
        public override bool Equals(object obj) { throw null; }
        public override void ExtractTerms(System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms) { }
        public override int GetHashCode() { throw null; }
        public override Lucene.Net.Search.Spans.Spans GetSpans(Lucene.Net.Index.IndexReader reader) { throw null; }
        public override string ToString(string field) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class SpanWeight : Lucene.Net.Search.Weight
    {
        protected internal float idf;
        protected internal Lucene.Net.Search.Spans.SpanQuery internalQuery;
        protected internal float queryNorm;
        protected internal float queryWeight;
        protected internal Lucene.Net.Search.Similarity similarity;
        protected internal System.Collections.Generic.ISet<Lucene.Net.Index.Term> terms;
        protected internal float value_Renamed;
        public SpanWeight(Lucene.Net.Search.Spans.SpanQuery query, Lucene.Net.Search.Searcher searcher) { }
        public override Lucene.Net.Search.Query Query { get { throw null; } }
        public override float Value { get { throw null; } }
        public override Lucene.Net.Search.Explanation Explain(Lucene.Net.Index.IndexReader reader, int doc) { throw null; }
        public override float GetSumOfSquaredWeights() { throw null; }
        public override void Normalize(float queryNorm) { }
        public override Lucene.Net.Search.Scorer Scorer(Lucene.Net.Index.IndexReader reader, bool scoreDocsInOrder, bool topScorer) { throw null; }
    }
    public partial class TermSpans : Lucene.Net.Search.Spans.Spans
    {
        protected internal int count;
        protected internal int freq;
        protected internal int internalDoc;
        protected internal Lucene.Net.Index.TermPositions internalPositions;
        protected internal int position;
        protected internal Lucene.Net.Index.Term term;
        public TermSpans(Lucene.Net.Index.TermPositions positions, Lucene.Net.Index.Term term) { }
        public virtual Lucene.Net.Index.TermPositions Positions { get { throw null; } }
        public override int Doc() { throw null; }
        public override int End() { throw null; }
        public override System.Collections.Generic.ICollection<byte[]> GetPayload() { throw null; }
        public override bool IsPayloadAvailable() { throw null; }
        public override bool Next() { throw null; }
        public override bool SkipTo(int target) { throw null; }
        public override int Start() { throw null; }
        public override string ToString() { throw null; }
    }
}
namespace Lucene.Net.Store
{
    [System.SerializableAttribute]
    public partial class AlreadyClosedException : System.SystemException
    {
        public AlreadyClosedException() { }
        protected AlreadyClosedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public AlreadyClosedException(string message) { }
        public AlreadyClosedException(string message, System.Exception inner) { }
    }
    public abstract partial class BufferedIndexInput : Lucene.Net.Store.IndexInput, System.ICloneable
    {
        protected internal byte[] buffer;
        public const int BUFFER_SIZE = 1024;
        protected BufferedIndexInput() { }
        protected BufferedIndexInput(int bufferSize) { }
        public virtual int BufferSize { get { throw null; } }
        public override long FilePointer { get { throw null; } }
        public override object Clone() { throw null; }
        protected internal virtual void NewBuffer(byte[] newBuffer) { }
        public override byte ReadByte() { throw null; }
        public override void ReadBytes(byte[] b, int offset, int len) { }
        public override void ReadBytes(byte[] b, int offset, int len, bool useBuffer) { }
        public abstract void ReadInternal(byte[] b, int offset, int length);
        public override void Seek(long pos) { }
        public abstract void SeekInternal(long pos);
        public virtual void SetBufferSize(int newSize) { }
    }
    public abstract partial class BufferedIndexOutput : Lucene.Net.Store.IndexOutput
    {
        protected BufferedIndexOutput() { }
        public override long FilePointer { get { throw null; } }
        public abstract override long Length { get; }
        protected override void Dispose(bool disposing) { }
        public override void Flush() { }
        public abstract void FlushBuffer(byte[] b, int offset, int len);
        public override void Seek(long pos) { }
        public override void WriteByte(byte b) { }
        public override void WriteBytes(byte[] b, int offset, int length) { }
    }
    public partial class ChecksumIndexInput : Lucene.Net.Store.IndexInput
    {
        public ChecksumIndexInput(Lucene.Net.Store.IndexInput main) { }
        public virtual long Checksum { get { throw null; } }
        public override long FilePointer { get { throw null; } }
        protected override void Dispose(bool disposing) { }
        public override long Length() { throw null; }
        public override byte ReadByte() { throw null; }
        public override void ReadBytes(byte[] b, int offset, int len) { }
        public override void Seek(long pos) { }
    }
    public partial class ChecksumIndexOutput : Lucene.Net.Store.IndexOutput
    {
        public ChecksumIndexOutput(Lucene.Net.Store.IndexOutput main) { }
        public virtual long Checksum { get { throw null; } }
        public override long FilePointer { get { throw null; } }
        public override long Length { get { throw null; } }
        protected override void Dispose(bool disposing) { }
        public virtual void FinishCommit() { }
        public override void Flush() { }
        public virtual void PrepareCommit() { }
        public override void Seek(long pos) { }
        public override void WriteByte(byte b) { }
        public override void WriteBytes(byte[] b, int offset, int length) { }
    }
    [System.SerializableAttribute]
    public abstract partial class Directory : System.IDisposable
    {
        [System.NonSerializedAttribute]
        protected internal Lucene.Net.Store.LockFactory interalLockFactory;
        protected internal volatile bool isOpen;
        protected Directory() { }
        public bool isOpen_ForNUnit { get { throw null; } }
        public virtual Lucene.Net.Store.LockFactory LockFactory { get { throw null; } }
        public virtual void ClearLock(string name) { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public static void Copy(Lucene.Net.Store.Directory src, Lucene.Net.Store.Directory dest, bool closeDirSrc) { }
        public abstract Lucene.Net.Store.IndexOutput CreateOutput(string name);
        public abstract void DeleteFile(string name);
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public void EnsureOpen() { }
        public abstract bool FileExists(string name);
        public abstract long FileLength(string name);
        public abstract long FileModified(string name);
        public virtual string GetLockId() { throw null; }
        public abstract string[] ListAll();
        public virtual Lucene.Net.Store.Lock MakeLock(string name) { throw null; }
        public abstract Lucene.Net.Store.IndexInput OpenInput(string name);
        public virtual Lucene.Net.Store.IndexInput OpenInput(string name, int bufferSize) { throw null; }
        public virtual void SetLockFactory(Lucene.Net.Store.LockFactory lockFactory) { }
        public virtual void Sync(string name) { }
        public override string ToString() { throw null; }
        public abstract void TouchFile(string name);
    }
    public partial class FileSwitchDirectory : Lucene.Net.Store.Directory
    {
        public FileSwitchDirectory(System.Collections.Generic.HashSet<string> primaryExtensions, Lucene.Net.Store.Directory primaryDir, Lucene.Net.Store.Directory secondaryDir, bool doClose) { }
        public virtual Lucene.Net.Store.Directory PrimaryDir { get { throw null; } }
        public virtual Lucene.Net.Store.Directory SecondaryDir { get { throw null; } }
        public override Lucene.Net.Store.IndexOutput CreateOutput(string name) { throw null; }
        public override void DeleteFile(string name) { }
        protected override void Dispose(bool disposing) { }
        public override bool FileExists(string name) { throw null; }
        public override long FileLength(string name) { throw null; }
        public override long FileModified(string name) { throw null; }
        public static string GetExtension(string name) { throw null; }
        public override string[] ListAll() { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string name) { throw null; }
        public override void Sync(string name) { }
        public override void TouchFile(string name) { }
    }
    public abstract partial class FSDirectory : Lucene.Net.Store.Directory
    {
        public static readonly int DEFAULT_READ_CHUNK_SIZE;
        protected internal System.IO.DirectoryInfo internalDirectory;
        protected internal FSDirectory(System.IO.DirectoryInfo path, Lucene.Net.Store.LockFactory lockFactory) { }
        public virtual System.IO.DirectoryInfo Directory { get { throw null; } }
        public int ReadChunkSize { get { throw null; } set { } }
        public override void DeleteFile(string name) { }
        protected override void Dispose(bool disposing) { }
        public override bool FileExists(string name) { throw null; }
        public override long FileLength(string name) { throw null; }
        public static long FileModified(System.IO.FileInfo directory, string name) { throw null; }
        public override long FileModified(string name) { throw null; }
        public override string GetLockId() { throw null; }
        protected internal void InitOutput(string name) { }
        public override string[] ListAll() { throw null; }
        public static string[] ListAll(System.IO.DirectoryInfo dir) { throw null; }
        public static Lucene.Net.Store.FSDirectory Open(System.IO.DirectoryInfo path) { throw null; }
        public static Lucene.Net.Store.FSDirectory Open(System.IO.DirectoryInfo path, Lucene.Net.Store.LockFactory lockFactory) { throw null; }
        public static Lucene.Net.Store.FSDirectory Open(string path) { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string name) { throw null; }
        public override void Sync(string name) { }
        public override string ToString() { throw null; }
        public override void TouchFile(string name) { }
    }
    public abstract partial class FSLockFactory : Lucene.Net.Store.LockFactory
    {
        protected internal System.IO.DirectoryInfo internalLockDir;
        protected FSLockFactory() { }
        public virtual System.IO.DirectoryInfo LockDir { get { throw null; } protected internal set { } }
    }
    public abstract partial class IndexInput : System.ICloneable, System.IDisposable
    {
        protected IndexInput() { }
        public abstract long FilePointer { get; }
        public virtual object Clone() { throw null; }
        [System.ObsoleteAttribute("Use Dispose() instead.")]
        public void Close() { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract long Length();
        public abstract byte ReadByte();
        public abstract void ReadBytes(byte[] b, int offset, int len);
        public virtual void ReadBytes(byte[] b, int offset, int len, bool useBuffer) { }
        [System.ObsoleteAttribute("-- please use ReadString or ReadBytes instead, and construct the string from those utf8 bytes")]
        public virtual void ReadChars(char[] buffer, int start, int length) { }
        public virtual int ReadInt() { throw null; }
        public virtual long ReadLong() { throw null; }
        public virtual string ReadString() { throw null; }
        public virtual System.Collections.Generic.IDictionary<string, string> ReadStringStringMap() { throw null; }
        public virtual int ReadVInt() { throw null; }
        public virtual long ReadVLong() { throw null; }
        public abstract void Seek(long pos);
        public virtual void SetModifiedUTF8StringsMode() { }
        [System.ObsoleteAttribute("this method operates on old \"modified utf8\" encoded strings")]
        public virtual void SkipChars(int length) { }
    }
    public abstract partial class IndexOutput : System.IDisposable
    {
        protected IndexOutput() { }
        public abstract long FilePointer { get; }
        public abstract long Length { get; }
        [System.ObsoleteAttribute("Use Dispose() instead.")]
        public void Close() { }
        public virtual void CopyBytes(Lucene.Net.Store.IndexInput input, long numBytes) { }
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract void Flush();
        public abstract void Seek(long pos);
        public virtual void SetLength(long length) { }
        public abstract void WriteByte(byte b);
        public virtual void WriteBytes(byte[] b, int length) { }
        public abstract void WriteBytes(byte[] b, int offset, int length);
        [System.ObsoleteAttribute("-- please pre-convert to utf8 bytes instead or use WriteString")]
        public virtual void WriteChars(char[] s, int start, int length) { }
        [System.ObsoleteAttribute("-- please pre-convert to utf8 bytes instead or use WriteString")]
        public virtual void WriteChars(string s, int start, int length) { }
        public virtual void WriteInt(int i) { }
        public virtual void WriteLong(long i) { }
        public virtual void WriteString(string s) { }
        public virtual void WriteStringStringMap(System.Collections.Generic.IDictionary<string, string> map) { }
        public virtual void WriteVInt(int i) { }
        public virtual void WriteVLong(long i) { }
    }
    public abstract partial class Lock
    {
        protected internal System.Exception failureReason;
        public const long LOCK_OBTAIN_WAIT_FOREVER = (long)-1;
        public static long LOCK_POLL_INTERVAL;
        protected Lock() { }
        public abstract bool IsLocked();
        public abstract bool Obtain();
        public virtual bool Obtain(long lockWaitTimeout) { throw null; }
        public abstract void Release();
        public abstract partial class With
        {
            protected With(Lucene.Net.Store.Lock lock_Renamed, long lockWaitTimeout) { }
            protected internal abstract object DoBody();
            public virtual object run() { throw null; }
        }
    }
    public abstract partial class LockFactory
    {
        protected internal string internalLockPrefix;
        protected LockFactory() { }
        public virtual string LockPrefix { get { throw null; } set { } }
        public abstract void ClearLock(string lockName);
        public abstract Lucene.Net.Store.Lock MakeLock(string lockName);
    }
    [System.SerializableAttribute]
    public partial class LockObtainFailedException : System.IO.IOException
    {
        public LockObtainFailedException(string message) { }
        public LockObtainFailedException(string message, System.Exception ex) { }
    }
    [System.SerializableAttribute]
    public partial class LockReleaseFailedException : System.IO.IOException
    {
        public LockReleaseFailedException(string message) { }
    }
    public partial class LockStressTest
    {
        public LockStressTest() { }
        [System.STAThreadAttribute]
        public static void Main(string[] args) { }
    }
    public partial class LockVerifyServer
    {
        public LockVerifyServer() { }
        [System.STAThreadAttribute]
        public static void Main(string[] args) { }
    }
    public partial class MMapDirectory : Lucene.Net.Store.FSDirectory
    {
        public static bool UNMAP_SUPPORTED;
        public MMapDirectory(System.IO.DirectoryInfo path) : base (default(System.IO.DirectoryInfo), default(Lucene.Net.Store.LockFactory)) { }
        public MMapDirectory(System.IO.DirectoryInfo path, Lucene.Net.Store.LockFactory lockFactory) : base (default(System.IO.DirectoryInfo), default(Lucene.Net.Store.LockFactory)) { }
        public virtual int MaxChunkSize { get { throw null; } set { } }
        public virtual bool UseUnmap { get { throw null; } set { } }
        public override Lucene.Net.Store.IndexOutput CreateOutput(string name) { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string name, int bufferSize) { throw null; }
        protected internal partial class MultiMMapIndexInput : Lucene.Net.Store.IndexInput, System.ICloneable
        {
            public MultiMMapIndexInput(Lucene.Net.Store.MMapDirectory enclosingInstance, System.IO.FileStream raf, int maxBufSize) { }
            public Lucene.Net.Store.MMapDirectory Enclosing_Instance { get { throw null; } }
            public override long FilePointer { get { throw null; } }
            public override object Clone() { throw null; }
            protected override void Dispose(bool disposing) { }
            public override long Length() { throw null; }
            public override byte ReadByte() { throw null; }
            public override void ReadBytes(byte[] b, int offset, int len) { }
            public override void Seek(long pos) { }
        }
    }
    public partial class NativeFSLockFactory : Lucene.Net.Store.FSLockFactory
    {
        public NativeFSLockFactory() { }
        public NativeFSLockFactory(System.IO.DirectoryInfo lockDir) { }
        public NativeFSLockFactory(string lockDirName) { }
        public override void ClearLock(string lockName) { }
        public override Lucene.Net.Store.Lock MakeLock(string lockName) { throw null; }
    }
    public partial class NIOFSDirectory : Lucene.Net.Store.FSDirectory
    {
        public NIOFSDirectory(System.IO.DirectoryInfo dir, Lucene.Net.Store.LockFactory lockFactory) : base (default(System.IO.DirectoryInfo), default(Lucene.Net.Store.LockFactory)) { }
        public override Lucene.Net.Store.IndexOutput CreateOutput(string name) { throw null; }
        public partial class NIOFSIndexInput
        {
            public NIOFSIndexInput() { }
        }
    }
    public partial class NoLockFactory : Lucene.Net.Store.LockFactory
    {
        public NoLockFactory() { }
        public static Lucene.Net.Store.NoLockFactory Instance { get { throw null; } }
        public override void ClearLock(string lockName) { }
        public override Lucene.Net.Store.Lock MakeLock(string lockName) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class NoSuchDirectoryException : System.IO.FileNotFoundException
    {
        public NoSuchDirectoryException(string message) { }
    }
    [System.SerializableAttribute]
    public partial class RAMDirectory : Lucene.Net.Store.Directory
    {
        protected internal Lucene.Net.Support.HashMap<string, Lucene.Net.Store.RAMFile> fileMap;
        protected internal long internalSizeInBytes;
        public RAMDirectory() { }
        public RAMDirectory(Lucene.Net.Store.Directory dir) { }
        public override Lucene.Net.Store.IndexOutput CreateOutput(string name) { throw null; }
        public override void DeleteFile(string name) { }
        protected override void Dispose(bool disposing) { }
        public override bool FileExists(string name) { throw null; }
        public override long FileLength(string name) { throw null; }
        public override long FileModified(string name) { throw null; }
        public override string[] ListAll() { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string name) { throw null; }
        public long SizeInBytes() { throw null; }
        public override void TouchFile(string name) { }
    }
    [System.SerializableAttribute]
    public partial class RAMFile
    {
        protected System.Collections.Generic.List<byte[]> buffers;
        public RAMFile() { }
        public RAMFile(Lucene.Net.Store.RAMDirectory directory) { }
        public virtual long SizeInBytes { get { throw null; } }
        public byte[] GetBuffer(int index) { throw null; }
        public virtual byte[] NewBuffer(int size) { throw null; }
        public int NumBuffers() { throw null; }
    }
    public partial class RAMInputStream : Lucene.Net.Store.IndexInput
    {
        public RAMInputStream(Lucene.Net.Store.RAMFile f) { }
        public override long FilePointer { get { throw null; } }
        protected override void Dispose(bool disposing) { }
        public override long Length() { throw null; }
        public override byte ReadByte() { throw null; }
        public override void ReadBytes(byte[] b, int offset, int len) { }
        public override void Seek(long pos) { }
    }
    public partial class RAMOutputStream : Lucene.Net.Store.IndexOutput
    {
        public RAMOutputStream() { }
        public override long FilePointer { get { throw null; } }
        public override long Length { get { throw null; } }
        protected override void Dispose(bool disposing) { }
        public override void Flush() { }
        public virtual void Reset() { }
        public override void Seek(long pos) { }
        public virtual long SizeInBytes() { throw null; }
        public override void WriteByte(byte b) { }
        public override void WriteBytes(byte[] b, int offset, int len) { }
        public virtual void WriteTo(Lucene.Net.Store.IndexOutput out_Renamed) { }
    }
    public partial class SimpleFSDirectory : Lucene.Net.Store.FSDirectory
    {
        public SimpleFSDirectory(System.IO.DirectoryInfo path) : base (default(System.IO.DirectoryInfo), default(Lucene.Net.Store.LockFactory)) { }
        public SimpleFSDirectory(System.IO.DirectoryInfo path, Lucene.Net.Store.LockFactory lockFactory) : base (default(System.IO.DirectoryInfo), default(Lucene.Net.Store.LockFactory)) { }
        public override Lucene.Net.Store.IndexOutput CreateOutput(string name) { throw null; }
        public override Lucene.Net.Store.IndexInput OpenInput(string name, int bufferSize) { throw null; }
        protected internal partial class SimpleFSIndexInput : Lucene.Net.Store.BufferedIndexInput
        {
            protected internal int chunkSize;
            protected internal Lucene.Net.Store.SimpleFSDirectory.SimpleFSIndexInput.Descriptor file;
            public SimpleFSIndexInput(System.IO.FileInfo path, int bufferSize, int chunkSize) { }
            public bool isClone_ForNUnit { get { throw null; } }
            public override object Clone() { throw null; }
            protected override void Dispose(bool disposing) { }
            public virtual bool IsFDValid() { throw null; }
            public override long Length() { throw null; }
            public override void ReadInternal(byte[] b, int offset, int len) { }
            public override void SeekInternal(long position) { }
            protected internal partial class Descriptor : System.IO.BinaryReader
            {
                protected internal volatile bool isOpen;
                public Descriptor(System.IO.FileInfo file, System.IO.FileAccess mode) : base (default(System.IO.Stream)) { }
                protected override void Dispose(bool disposing) { }
                ~Descriptor() { }
            }
        }
        public partial class SimpleFSIndexOutput : Lucene.Net.Store.BufferedIndexOutput
        {
            public SimpleFSIndexOutput(System.IO.FileInfo path) { }
            public override long Length { get { throw null; } }
            protected override void Dispose(bool disposing) { }
            public override void FlushBuffer(byte[] b, int offset, int size) { }
            public override void Seek(long pos) { }
            public override void SetLength(long length) { }
        }
    }
    public partial class SimpleFSLockFactory : Lucene.Net.Store.FSLockFactory
    {
        public SimpleFSLockFactory() { }
        public SimpleFSLockFactory(System.IO.DirectoryInfo lockDir) { }
        public SimpleFSLockFactory(string lockDirName) { }
        public override void ClearLock(string lockName) { }
        public override Lucene.Net.Store.Lock MakeLock(string lockName) { throw null; }
    }
    public partial class SingleInstanceLockFactory : Lucene.Net.Store.LockFactory
    {
        public SingleInstanceLockFactory() { }
        public override void ClearLock(string lockName) { }
        public override Lucene.Net.Store.Lock MakeLock(string lockName) { throw null; }
    }
    public partial class VerifyingLockFactory : Lucene.Net.Store.LockFactory
    {
        public VerifyingLockFactory(sbyte id, Lucene.Net.Store.LockFactory lf, string host, int port) { }
        public override void ClearLock(string lockName) { }
        public override Lucene.Net.Store.Lock MakeLock(string lockName) { throw null; }
    }
}
namespace Lucene.Net.Support
{
    public partial class AppSettings
    {
        public AppSettings() { }
        public static bool Get(string key, bool defValue) { throw null; }
        public static int Get(string key, int defValue) { throw null; }
        public static long Get(string key, long defValue) { throw null; }
        public static string Get(string key, string defValue) { throw null; }
        public static void Set(string key, bool defValue) { }
        public static void Set(string key, int defValue) { }
        public static void Set(string key, long defValue) { }
        public static void Set(string key, string defValue) { }
    }
    public partial class BitSetSupport
    {
        public BitSetSupport() { }
        public static int Cardinality(System.Collections.BitArray bits) { throw null; }
        public static int NextClearBit(System.Collections.BitArray bitArray, int index) { throw null; }
        public static int NextSetBit(System.Collections.BitArray bitArray, int index) { throw null; }
    }
    public partial class BuildType
    {
        public static bool Debug;
        public BuildType() { }
    }
    public partial class Character
    {
        public Character() { }
        public static int MAX_RADIX { get { throw null; } }
        public static int MIN_RADIX { get { throw null; } }
        public static char ForDigit(int digit, int radix) { throw null; }
    }
    public partial class CloseableThreadLocalProfiler
    {
        public static System.Collections.Generic.List<System.WeakReference> Instances;
        public CloseableThreadLocalProfiler() { }
        public static bool EnableCloseableThreadLocalProfiler { get { throw null; } set { } }
    }
    public partial class CollectionsHelper
    {
        public CollectionsHelper() { }
        public static void Add(System.Collections.Hashtable hashtable, object item) { }
        public static void AddAll(System.Collections.Generic.IDictionary<string, string> hashtable, System.Collections.Generic.ICollection<string> items) { }
        public static void AddAll(System.Collections.Hashtable hashtable, System.Collections.ICollection items) { }
        public static void AddAllIfNotContains(System.Collections.Generic.IDictionary<string, string> hashtable, System.Collections.Generic.ICollection<string> items) { }
        public static void AddAllIfNotContains(System.Collections.Hashtable hashtable, System.Collections.ICollection items) { }
        public static void AddAllIfNotContains(System.Collections.Hashtable hashtable, System.Collections.IList items) { }
        public static void AddIfNotContains(System.Collections.ArrayList hashtable, object item) { }
        public static void AddIfNotContains(System.Collections.Hashtable hashtable, object item) { }
        public static string CollectionToString(System.Collections.Generic.IDictionary<string, string> c) { throw null; }
        public static string CollectionToString(System.Collections.ICollection c) { throw null; }
        public static bool CompareStringArrays(string[] l1, string[] l2) { throw null; }
        public static bool Contains(System.Collections.Generic.ICollection<string> col, string item) { throw null; }
        public static bool Contains(System.Collections.ICollection col, object item) { throw null; }
        public static bool Equals(System.Array array1, System.Array array2) { throw null; }
        public static void Fill(System.Array array, int fromindex, int toindex, object val) { }
        public static void Fill(System.Array array, object val) { }
        public static void Sort(System.Collections.IList list, System.Collections.IComparer Comparator) { }
    }
    public partial class Compare
    {
        public Compare() { }
        public static bool CompareTermArrays(Lucene.Net.Index.Term[] t1, Lucene.Net.Index.Term[] t2) { throw null; }
    }
    public partial class CRC32 : Lucene.Net.Support.IChecksum
    {
        public CRC32() { }
        public long Value { get { throw null; } }
        public void Reset() { }
        public void Update(byte[] buf) { }
        public void Update(byte[] buf, int off, int len) { }
        public void Update(int bval) { }
    }
    public static partial class Cryptography
    {
        public static bool FIPSCompliant;
        public static System.Security.Cryptography.HashAlgorithm HashAlgorithm { get { throw null; } }
    }
    public partial class Deflater
    {
        internal Deflater() { }
        public const int BEST_COMPRESSION = 9;
        public bool IsFinished { get { throw null; } }
        public int Deflate(byte[] output) { throw null; }
        public void Finish() { }
        public void SetInput(byte[] input, int offset, int count) { }
        public void SetLevel(int level) { }
    }
    public partial class Double
    {
        public Double() { }
        public static double Parse(string s) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class EquatableList<T> : System.Collections.Generic.List<T>, System.ICloneable, System.IEquatable<System.Collections.Generic.IEnumerable<T>>
    {
        public EquatableList() { }
        public EquatableList(System.Collections.Generic.IEnumerable<T> collection) { }
        public EquatableList(int capacity) { }
        public void AddRange(System.Collections.ICollection c) { }
        public object Clone() { throw null; }
        public bool Equals(System.Collections.Generic.IEnumerable<T> other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static int GetHashCode<T>(System.Collections.Generic.IEnumerable<T> source) { throw null; }
    }
    public partial class FileSupport
    {
        public FileSupport() { }
        public static System.IO.FileInfo[] GetFiles(System.IO.DirectoryInfo path) { throw null; }
        public static System.IO.FileInfo[] GetFiles(System.IO.FileInfo path) { throw null; }
        public static string[] GetLuceneIndexFiles(string fullName, Lucene.Net.Index.IndexFileNameFilter indexFileNameFilter) { throw null; }
        public static void Sync(System.IO.FileStream fileStream) { }
    }
    [System.SerializableAttribute]
    public partial class HashMap<TKey, TValue> : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IDictionary<TKey, TValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.IEnumerable
    {
        public HashMap() { }
        public HashMap(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>> other) { }
        public HashMap(System.Collections.Generic.IEqualityComparer<TKey> comparer) { }
        public HashMap(int initialCapacity) { }
        public HashMap(int initialCapacity, System.Collections.Generic.IEqualityComparer<TKey> comparer) { }
        public int Count { get { throw null; } }
        public bool IsReadOnly { get { throw null; } }
        public TValue this[TKey key] { get { throw null; } set { } }
        public System.Collections.Generic.ICollection<TKey> Keys { get { throw null; } }
        public System.Collections.Generic.ICollection<TValue> Values { get { throw null; } }
        public virtual void Add(TKey key, TValue value) { }
        public void Clear() { }
        public bool ContainsKey(TKey key) { throw null; }
        public bool ContainsValue(TValue value) { throw null; }
        [System.Diagnostics.DebuggerHiddenAttribute]
        public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> GetEnumerator() { throw null; }
        public bool Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> item) { throw null; }
        public bool Remove(TKey key) { throw null; }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair<TKey, TValue> item) { }
        bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair<TKey, TValue> item) { throw null; }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int arrayIndex) { }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
    }
    public partial interface IChecksum
    {
        long Value { get; }
        void Reset();
        void Update(byte[] b);
        void Update(byte[] b, int offset, int length);
        void Update(int b);
    }
    public partial class Inflater
    {
        internal Inflater() { }
        public bool IsFinished { get { throw null; } }
        public int Inflate(byte[] buffer) { throw null; }
        public void SetInput(byte[] buffer) { }
    }
    public partial interface IThreadRunnable
    {
        void Run();
    }
    public partial class Number
    {
        public const int MAX_RADIX = 36;
        public const int MIN_RADIX = 2;
        public Number() { }
        public static int NextSetBit(System.Collections.BitArray bits, int fromIndex) { throw null; }
        public static long Parse(string s, int radix) { throw null; }
        public static long ToInt64(string s) { throw null; }
        public static string ToString(long number) { throw null; }
        public static string ToString(long i, int radix) { throw null; }
        public static string ToString(float f) { throw null; }
        public static int URShift(int number, int bits) { throw null; }
        public static long URShift(long number, int bits) { throw null; }
    }
    public partial class OS
    {
        public OS() { }
        public static bool IsUnix { get { throw null; } }
        public static bool IsWindows { get { throw null; } }
    }
    public partial class SharpZipLib
    {
        public SharpZipLib() { }
        public static Lucene.Net.Support.Deflater CreateDeflater() { throw null; }
        public static Lucene.Net.Support.Inflater CreateInflater() { throw null; }
    }
    public partial class Single
    {
        public Single() { }
        public static int FloatToIntBits(float value) { throw null; }
        public static float IntBitsToFloat(int value) { throw null; }
        public static float Parse(string s) { throw null; }
        public static float Parse(string s, System.Globalization.NumberStyles style) { throw null; }
        public static float Parse(string s, System.Globalization.NumberStyles style, System.IFormatProvider provider) { throw null; }
        public static float Parse(string s, System.IFormatProvider provider) { throw null; }
        public static string ToString(float f) { throw null; }
        public static string ToString(float f, string format) { throw null; }
        public static bool TryParse(string s, out float f) { f = default(float); throw null; }
    }
    public partial class TextSupport
    {
        public TextSupport() { }
        public static void GetCharsFromString(string sourceString, int sourceStart, int sourceEnd, char[] destinationArray, int destinationStart) { }
    }
    public partial class ThreadClass : Lucene.Net.Support.IThreadRunnable
    {
        public ThreadClass() { }
        public ThreadClass(string Name) { }
        public ThreadClass(System.Threading.ThreadStart Start) { }
        public ThreadClass(System.Threading.ThreadStart Start, string Name) { }
        public System.Threading.Thread Instance { get { throw null; } set { } }
        public bool IsAlive { get { throw null; } }
        public bool IsBackground { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public System.Threading.ThreadPriority Priority { get { throw null; } set { } }
        public void Abort() { }
        public void Abort(object stateInfo) { }
        public static Lucene.Net.Support.ThreadClass Current() { throw null; }
        public static Lucene.Net.Support.ThreadClass CurrentThread() { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual void Interrupt() { }
        public void Join() { }
        public void Join(long MiliSeconds) { }
        public void Join(long MiliSeconds, int NanoSeconds) { }
        public static bool operator ==(Lucene.Net.Support.ThreadClass t1, object t2) { throw null; }
        public static bool operator !=(Lucene.Net.Support.ThreadClass t1, object t2) { throw null; }
        public void Resume() { }
        public virtual void Run() { }
        public void SetDaemon(bool isDaemon) { }
        public static void Sleep(long ms) { }
        public virtual void Start() { }
        public void Suspend() { }
        public override string ToString() { throw null; }
    }
    public abstract partial class ThreadLock
    {
        protected ThreadLock() { }
        public static Lucene.Net.Support.ThreadLock MonitorLock { get { throw null; } }
        public static Lucene.Net.Support.ThreadLock NullLock { get { throw null; } }
        public abstract void Enter(object obj);
        public abstract void Exit(object obj);
    }
    public sealed partial class WeakDictionary<TKey, TValue> : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IDictionary<TKey, TValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.IEnumerable
    {
        public WeakDictionary() { }
        public WeakDictionary(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>> otherDictionary) { }
        public WeakDictionary(int initialCapacity) { }
        public int Count { get { throw null; } }
        public bool IsReadOnly { get { throw null; } }
        public TValue this[TKey key] { get { throw null; } set { } }
        public System.Collections.Generic.ICollection<TKey> Keys { get { throw null; } }
        public System.Collections.Generic.ICollection<TValue> Values { get { throw null; } }
        public void Add(TKey key, TValue value) { }
        public void Clear() { }
        public bool ContainsKey(TKey key) { throw null; }
        [System.Diagnostics.DebuggerHiddenAttribute]
        public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey, TValue>> GetEnumerator() { throw null; }
        public bool Remove(TKey key) { throw null; }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair<TKey, TValue> item) { }
        bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair<TKey, TValue> item) { throw null; }
        void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair<TKey, TValue>[] array, int arrayIndex) { }
        bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair<TKey, TValue> item) { throw null; }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        public bool TryGetValue(TKey key, out TValue value) { value = default(TValue); throw null; }
    }
}
namespace Lucene.Net.Support.Compatibility
{
    public static partial class SetFactory
    {
        public static System.Collections.Generic.ISet<T> CreateHashSet<T>() { throw null; }
        public static System.Collections.Generic.ISet<T> CreateHashSet<T>(System.Collections.Generic.IEnumerable<T> other) { throw null; }
    }
}
namespace Lucene.Net.Util
{
    public sealed partial class ArrayUtil
    {
        public ArrayUtil() { }
        public static int GetNextSize(int targetSize) { throw null; }
        public static int GetShrinkSize(int currentSize, int targetSize) { throw null; }
        public static byte[] Grow(byte[] array) { throw null; }
        public static byte[] Grow(byte[] array, int minSize) { throw null; }
        public static int[] Grow(int[] array) { throw null; }
        public static int[] Grow(int[] array, int minSize) { throw null; }
        public static long[] Grow(long[] array) { throw null; }
        public static long[] Grow(long[] array, int minSize) { throw null; }
        public static int HashCode(byte[] array, int start, int end) { throw null; }
        public static int HashCode(char[] array, int start, int end) { throw null; }
        public static int ParseInt(char[] chars) { throw null; }
        public static int ParseInt(char[] chars, int offset, int len) { throw null; }
        public static int ParseInt(char[] chars, int offset, int len, int radix) { throw null; }
        public static byte[] Shrink(byte[] array, int targetSize) { throw null; }
        public static int[] Shrink(int[] array, int targetSize) { throw null; }
        public static long[] Shrink(long[] array, int targetSize) { throw null; }
    }
    [System.SerializableAttribute]
    public abstract partial class Attribute : Lucene.Net.Util.IAttribute, System.ICloneable
    {
        protected Attribute() { }
        public abstract void Clear();
        public virtual object Clone() { throw null; }
        public abstract void CopyTo(Lucene.Net.Util.Attribute target);
        public abstract override bool Equals(object other);
        public abstract override int GetHashCode();
        public override string ToString() { throw null; }
    }
    public partial class AttributeSource
    {
        public AttributeSource() { }
        public AttributeSource(Lucene.Net.Util.AttributeSource input) { }
        public AttributeSource(Lucene.Net.Util.AttributeSource.AttributeFactory factory) { }
        public virtual Lucene.Net.Util.AttributeSource.AttributeFactory Factory { get { throw null; } }
        public virtual bool HasAttributes { get { throw null; } }
        public virtual void AddAttributeImpl(Lucene.Net.Util.Attribute att) { }
        public virtual T AddAttribute<T>() where T : Lucene.Net.Util.IAttribute { throw null; }
        public virtual Lucene.Net.Util.AttributeSource.State CaptureState() { throw null; }
        public virtual void ClearAttributes() { }
        public virtual Lucene.Net.Util.AttributeSource CloneAttributes() { throw null; }
        public override bool Equals(object obj) { throw null; }
        [System.Diagnostics.DebuggerHiddenAttribute]
        public virtual System.Collections.Generic.IEnumerable<Lucene.Net.Util.Attribute> GetAttributeImplsIterator() { throw null; }
        public virtual System.Collections.Generic.IEnumerable<System.Type> GetAttributeTypesIterator() { throw null; }
        public virtual T GetAttribute<T>() where T : Lucene.Net.Util.IAttribute { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual bool HasAttribute<T>() where T : Lucene.Net.Util.IAttribute { throw null; }
        public virtual void RestoreState(Lucene.Net.Util.AttributeSource.State state) { }
        public override string ToString() { throw null; }
        public abstract partial class AttributeFactory
        {
            public static readonly Lucene.Net.Util.AttributeSource.AttributeFactory DEFAULT_ATTRIBUTE_FACTORY;
            protected AttributeFactory() { }
            public abstract Lucene.Net.Util.Attribute CreateAttributeInstance<T>() where T : Lucene.Net.Util.IAttribute;
        }
        public sealed partial class State : System.ICloneable
        {
            public State() { }
            public object Clone() { throw null; }
        }
    }
    public partial class AverageGuessMemoryModel : Lucene.Net.Util.MemoryModel
    {
        public AverageGuessMemoryModel() { }
        public override int ArraySize { get { throw null; } }
        public override int ClassSize { get { throw null; } }
        public override int ReferenceSize { get { throw null; } }
        public override int GetPrimitiveSize(System.Type clazz) { throw null; }
    }
    public partial class BitUtil
    {
        public static readonly byte[] ntzTable;
        public BitUtil() { }
        public static bool IsPowerOfTwo(int v) { throw null; }
        public static bool IsPowerOfTwo(long v) { throw null; }
        public static int NextHighestPowerOfTwo(int v) { throw null; }
        public static long NextHighestPowerOfTwo(long v) { throw null; }
        public static int Ntz(int val) { throw null; }
        public static int Ntz(long val) { throw null; }
        public static int Ntz2(long x) { throw null; }
        public static int Ntz3(long x) { throw null; }
        public static int Pop(long x) { throw null; }
        public static long Pop_andnot(long[] A, long[] B, int wordOffset, int numWords) { throw null; }
        public static long Pop_array(long[] A, int wordOffset, int numWords) { throw null; }
        public static long Pop_intersect(long[] A, long[] B, int wordOffset, int numWords) { throw null; }
        public static long Pop_union(long[] A, long[] B, int wordOffset, int numWords) { throw null; }
        public static long Pop_xor(long[] A, long[] B, int wordOffset, int numWords) { throw null; }
    }
    public sealed partial class BitVector : System.ICloneable
    {
        public BitVector(Lucene.Net.Store.Directory d, string name) { }
        public BitVector(int n) { }
        public void Clear(int bit) { }
        public object Clone() { throw null; }
        public int Count() { throw null; }
        public bool Get(int bit) { throw null; }
        public bool GetAndSet(int bit) { throw null; }
        public int GetRecomputedCount() { throw null; }
        public void Set(int bit) { }
        public int Size() { throw null; }
        public Lucene.Net.Util.BitVector Subset(int start, int end) { throw null; }
        public void Write(Lucene.Net.Store.Directory d, string name) { }
    }
    public partial class CloseableThreadLocal<T> : System.IDisposable where T : class
    {
        public CloseableThreadLocal() { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public virtual void Close() { }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public virtual T Get() { throw null; }
        public virtual T InitialValue() { throw null; }
        public virtual void Set(T @object) { }
    }
    public sealed partial class Constants
    {
        internal Constants() { }
        public static readonly bool JAVA_1_1;
        public static readonly bool JAVA_1_2;
        public static readonly bool JAVA_1_3;
        public static readonly string JAVA_VENDOR;
        public static readonly string JAVA_VERSION;
        public static bool JRE_IS_64BIT;
        public static readonly bool LINUX;
        public static readonly string LUCENE_MAIN_VERSION;
        public static string LUCENE_VERSION;
        public static readonly string OS_ARCH;
        public static readonly string OS_NAME;
        public static readonly string OS_VERSION;
        public static readonly bool SUN_OS;
        public static readonly bool WINDOWS;
    }
    public partial class DocIdBitSet : Lucene.Net.Search.DocIdSet
    {
        public DocIdBitSet(System.Collections.BitArray bitSet) { }
        public virtual System.Collections.BitArray BitSet { get { throw null; } }
        public override bool IsCacheable { get { throw null; } }
        public override Lucene.Net.Search.DocIdSetIterator Iterator() { throw null; }
    }
    public sealed partial class FieldCacheSanityChecker
    {
        public FieldCacheSanityChecker() { }
        public Lucene.Net.Util.FieldCacheSanityChecker.Insanity[] Check(params Lucene.Net.Search.CacheEntry[] cacheEntries) { throw null; }
        public static Lucene.Net.Util.FieldCacheSanityChecker.Insanity[] CheckSanity(params Lucene.Net.Search.CacheEntry[] cacheEntries) { throw null; }
        public static Lucene.Net.Util.FieldCacheSanityChecker.Insanity[] CheckSanity(Lucene.Net.Search.FieldCache cache) { throw null; }
        public void SetRamUsageEstimator(Lucene.Net.Util.RamUsageEstimator r) { }
        public sealed partial class Insanity
        {
            public Insanity(Lucene.Net.Util.FieldCacheSanityChecker.InsanityType type, string msg, params Lucene.Net.Search.CacheEntry[] entries) { }
            public string Msg { get { throw null; } }
            public Lucene.Net.Util.FieldCacheSanityChecker.InsanityType Type { get { throw null; } }
            public Lucene.Net.Search.CacheEntry[] GetCacheEntries() { throw null; }
            public override string ToString() { throw null; }
        }
        public sealed partial class InsanityType
        {
            internal InsanityType() { }
            public static readonly Lucene.Net.Util.FieldCacheSanityChecker.InsanityType EXPECTED;
            public static readonly Lucene.Net.Util.FieldCacheSanityChecker.InsanityType SUBREADER;
            public static readonly Lucene.Net.Util.FieldCacheSanityChecker.InsanityType VALUEMISMATCH;
            public override string ToString() { throw null; }
        }
    }
    public partial interface IAttribute
    {
    }
    public partial class IdentityDictionary<TKey, TValue> : System.Collections.Generic.Dictionary<TKey, TValue>
    {
        public IdentityDictionary() { }
        public IdentityDictionary(System.Collections.Generic.IDictionary<TKey, TValue> other) { }
        public IdentityDictionary(int capacity) { }
    }
    public partial class IndexableBinaryStringTools
    {
        internal IndexableBinaryStringTools() { }
        public static System.Collections.Generic.List<byte> Decode(System.Collections.Generic.List<char> input) { throw null; }
        public static void Decode(System.Collections.Generic.List<char> input, System.Collections.Generic.List<byte> output) { }
        public static System.Collections.Generic.List<char> Encode(System.Collections.Generic.List<byte> input) { throw null; }
        public static void Encode(System.Collections.Generic.List<byte> input, System.Collections.Generic.List<char> output) { }
        public static int GetDecodedLength(System.Collections.Generic.List<char> encoded) { throw null; }
        public static int GetEncodedLength(System.Collections.Generic.List<byte> original) { throw null; }
    }
    public partial class MapOfSets<TKey, TValue>
    {
        public MapOfSets(System.Collections.Generic.IDictionary<TKey, System.Collections.Generic.HashSet<TValue>> m) { }
        public virtual System.Collections.Generic.IDictionary<TKey, System.Collections.Generic.HashSet<TValue>> Map { get { throw null; } }
        public virtual int Put(TKey key, TValue val) { throw null; }
        public virtual int PutAll(TKey key, System.Collections.Generic.IEnumerable<TValue> vals) { throw null; }
    }
    public abstract partial class MemoryModel
    {
        protected MemoryModel() { }
        public abstract int ArraySize { get; }
        public abstract int ClassSize { get; }
        public abstract int ReferenceSize { get; }
        public abstract int GetPrimitiveSize(System.Type clazz);
    }
    public sealed partial class NumericUtils
    {
        internal NumericUtils() { }
        public const int BUF_SIZE_INT = 6;
        public const int BUF_SIZE_LONG = 11;
        public const int PRECISION_STEP_DEFAULT = 4;
        public static char SHIFT_START_INT;
        public static char SHIFT_START_LONG;
        public static string DoubleToPrefixCoded(double val) { throw null; }
        public static long DoubleToSortableLong(double val) { throw null; }
        public static string FloatToPrefixCoded(float val) { throw null; }
        public static int FloatToSortableInt(float val) { throw null; }
        public static string IntToPrefixCoded(int val) { throw null; }
        public static string IntToPrefixCoded(int val, int shift) { throw null; }
        public static int IntToPrefixCoded(int val, int shift, char[] buffer) { throw null; }
        public static string LongToPrefixCoded(long val) { throw null; }
        public static string LongToPrefixCoded(long val, int shift) { throw null; }
        public static int LongToPrefixCoded(long val, int shift, char[] buffer) { throw null; }
        public static double PrefixCodedToDouble(string val) { throw null; }
        public static float PrefixCodedToFloat(string val) { throw null; }
        public static int PrefixCodedToInt(string prefixCoded) { throw null; }
        public static long PrefixCodedToLong(string prefixCoded) { throw null; }
        public static float SortableIntToFloat(int val) { throw null; }
        public static double SortableLongToDouble(long val) { throw null; }
        public static void SplitIntRange(Lucene.Net.Util.NumericUtils.IntRangeBuilder builder, int precisionStep, int minBound, int maxBound) { }
        public static void SplitLongRange(Lucene.Net.Util.NumericUtils.LongRangeBuilder builder, int precisionStep, long minBound, long maxBound) { }
        public abstract partial class IntRangeBuilder
        {
            protected IntRangeBuilder() { }
            public virtual void AddRange(int min, int max, int shift) { }
            public virtual void AddRange(string minPrefixCoded, string maxPrefixCoded) { }
        }
        public abstract partial class LongRangeBuilder
        {
            protected LongRangeBuilder() { }
            public virtual void AddRange(long min, long max, int shift) { }
            public virtual void AddRange(string minPrefixCoded, string maxPrefixCoded) { }
        }
    }
    [System.SerializableAttribute]
    public partial class OpenBitSet : Lucene.Net.Search.DocIdSet, System.ICloneable
    {
        protected internal long[] internalbits;
        protected internal int wlen;
        public OpenBitSet() { }
        public OpenBitSet(long numBits) { }
        public OpenBitSet(long[] bits, int numWords) { }
        public virtual long[] Bits { get { throw null; } set { } }
        public override bool IsCacheable { get { throw null; } }
        public virtual int NumWords { get { throw null; } set { } }
        public virtual void And(Lucene.Net.Util.OpenBitSet other) { }
        public virtual void AndNot(Lucene.Net.Util.OpenBitSet other) { }
        public static long AndNotCount(Lucene.Net.Util.OpenBitSet a, Lucene.Net.Util.OpenBitSet b) { throw null; }
        public static int Bits2words(long numBits) { throw null; }
        public virtual long Capacity() { throw null; }
        public virtual long Cardinality() { throw null; }
        public virtual void Clear(int startIndex, int endIndex) { }
        public virtual void Clear(long index) { }
        public virtual void Clear(long startIndex, long endIndex) { }
        public virtual object Clone() { throw null; }
        public virtual void EnsureCapacity(long numBits) { }
        public virtual void EnsureCapacityWords(int numWords) { }
        public override bool Equals(object o) { throw null; }
        protected internal virtual int ExpandingWordNum(long index) { throw null; }
        public virtual void FastClear(int index) { }
        public virtual void FastClear(long index) { }
        public virtual void FastFlip(int index) { }
        public virtual void FastFlip(long index) { }
        public virtual bool FastGet(int index) { throw null; }
        public virtual bool FastGet(long index) { throw null; }
        public virtual void FastSet(int index) { }
        public virtual void FastSet(long index) { }
        public virtual void Flip(long index) { }
        public virtual void Flip(long startIndex, long endIndex) { }
        public virtual bool FlipAndGet(int index) { throw null; }
        public virtual bool FlipAndGet(long index) { throw null; }
        public virtual bool Get(int index) { throw null; }
        public virtual bool Get(long index) { throw null; }
        public virtual bool GetAndSet(int index) { throw null; }
        public virtual bool GetAndSet(long index) { throw null; }
        public virtual int GetBit(int index) { throw null; }
        public override int GetHashCode() { throw null; }
        public virtual void Intersect(Lucene.Net.Util.OpenBitSet other) { }
        public static long IntersectionCount(Lucene.Net.Util.OpenBitSet a, Lucene.Net.Util.OpenBitSet b) { throw null; }
        public virtual bool Intersects(Lucene.Net.Util.OpenBitSet other) { throw null; }
        public virtual bool IsEmpty() { throw null; }
        public override Lucene.Net.Search.DocIdSetIterator Iterator() { throw null; }
        public virtual int NextSetBit(int index) { throw null; }
        public virtual long NextSetBit(long index) { throw null; }
        public virtual void Or(Lucene.Net.Util.OpenBitSet other) { }
        public virtual void Remove(Lucene.Net.Util.OpenBitSet other) { }
        public virtual void Set(long index) { }
        public virtual void Set(long startIndex, long endIndex) { }
        public virtual long Size() { throw null; }
        public virtual void TrimTrailingZeros() { }
        public virtual void Union(Lucene.Net.Util.OpenBitSet other) { }
        public static long UnionCount(Lucene.Net.Util.OpenBitSet a, Lucene.Net.Util.OpenBitSet b) { throw null; }
        public virtual void Xor(Lucene.Net.Util.OpenBitSet other) { }
        public static long XorCount(Lucene.Net.Util.OpenBitSet a, Lucene.Net.Util.OpenBitSet b) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class OpenBitSetDISI : Lucene.Net.Util.OpenBitSet
    {
        public OpenBitSetDISI(Lucene.Net.Search.DocIdSetIterator disi, int maxSize) { }
        public OpenBitSetDISI(int maxSize) { }
        public virtual void InPlaceAnd(Lucene.Net.Search.DocIdSetIterator disi) { }
        public virtual void InPlaceNot(Lucene.Net.Search.DocIdSetIterator disi) { }
        public virtual void InPlaceOr(Lucene.Net.Search.DocIdSetIterator disi) { }
        public virtual void InPlaceXor(Lucene.Net.Search.DocIdSetIterator disi) { }
    }
    public partial class OpenBitSetIterator : Lucene.Net.Search.DocIdSetIterator
    {
        public OpenBitSetIterator(Lucene.Net.Util.OpenBitSet obs) { }
        public OpenBitSetIterator(long[] bits, int numWords) { }
        public override int Advance(int target) { throw null; }
        public override int DocID() { throw null; }
        public override int NextDoc() { throw null; }
    }
    public abstract partial class PriorityQueue<T>
    {
        protected internal T[] heap;
        protected PriorityQueue() { }
        protected internal virtual T SentinelObject { get { throw null; } }
        public T Add(T element) { throw null; }
        public void Clear() { }
        protected internal void Initialize(int maxSize) { }
        public virtual T InsertWithOverflow(T element) { throw null; }
        public abstract bool LessThan(T a, T b);
        public T Pop() { throw null; }
        public int Size() { throw null; }
        public T Top() { throw null; }
        public T UpdateTop() { throw null; }
    }
    public sealed partial class RamUsageEstimator
    {
        public RamUsageEstimator() { }
        public RamUsageEstimator(Lucene.Net.Util.MemoryModel memoryModel) { }
        public RamUsageEstimator(Lucene.Net.Util.MemoryModel memoryModel, bool checkInterned) { }
        public RamUsageEstimator(bool checkInterned) { }
        public long EstimateRamUsage(object obj) { throw null; }
        public static string HumanReadableUnits(long bytes, System.IFormatProvider df) { throw null; }
    }
    public partial class ReaderUtil
    {
        public ReaderUtil() { }
        public static void GatherSubReaders(System.Collections.Generic.IList<Lucene.Net.Index.IndexReader> allSubReaders, Lucene.Net.Index.IndexReader reader) { }
        public static int SubIndex(int n, int[] docStarts) { throw null; }
        public static Lucene.Net.Index.IndexReader SubReader(Lucene.Net.Index.IndexReader reader, int subIndex) { throw null; }
        public static Lucene.Net.Index.IndexReader SubReader(int doc, Lucene.Net.Index.IndexReader reader) { throw null; }
    }
    public partial class ScorerDocQueue
    {
        public ScorerDocQueue(int maxSize) { }
        public void AdjustTop() { }
        public void Clear() { }
        public virtual bool Insert(Lucene.Net.Search.Scorer scorer) { throw null; }
        public Lucene.Net.Search.Scorer Pop() { throw null; }
        public void Put(Lucene.Net.Search.Scorer scorer) { }
        public int Size() { throw null; }
        public Lucene.Net.Search.Scorer Top() { throw null; }
        public int TopDoc() { throw null; }
        public bool TopNextAndAdjustElsePop() { throw null; }
        public float TopScore() { throw null; }
        public bool TopSkipToAndAdjustElsePop(int target) { throw null; }
    }
    public partial class SimpleStringInterner : Lucene.Net.Util.StringInterner
    {
        public SimpleStringInterner(int tableSize, int maxChainLength) { }
        public override string Intern(string s) { throw null; }
    }
    public partial class SmallFloat
    {
        public SmallFloat() { }
        public static float Byte315ToFloat(byte b) { throw null; }
        public static float Byte52ToFloat(byte b) { throw null; }
        public static float ByteToFloat(byte b, int numMantissaBits, int zeroExp) { throw null; }
        public static sbyte FloatToByte(float f, int numMantissaBits, int zeroExp) { throw null; }
        public static sbyte FloatToByte315(float f) { throw null; }
        public static sbyte FloatToByte52(float f) { throw null; }
    }
    public partial class SortedVIntList : Lucene.Net.Search.DocIdSet
    {
        public SortedVIntList(Lucene.Net.Search.DocIdSetIterator docIdSetIterator) { }
        public SortedVIntList(Lucene.Net.Util.OpenBitSet bits) { }
        public SortedVIntList(System.Collections.BitArray bits) { }
        public SortedVIntList(params int[] sortedInts) { }
        public SortedVIntList(int[] sortedInts, int inputSize) { }
        public virtual int ByteSize { get { throw null; } }
        public override bool IsCacheable { get { throw null; } }
        public virtual int Size { get { throw null; } }
        public override Lucene.Net.Search.DocIdSetIterator Iterator() { throw null; }
    }
    public abstract partial class SorterTemplate
    {
        protected SorterTemplate() { }
        protected internal abstract int Compare(int i, int j);
        protected internal virtual void MergeSort(int lo, int hi) { }
        public virtual void QuickSort(int lo, int hi) { }
        protected internal abstract void Swap(int i, int j);
    }
    public abstract partial class StringHelper
    {
        internal StringHelper() { }
        public static Lucene.Net.Util.StringInterner interner;
        public static int BytesDifference(byte[] bytes1, int len1, byte[] bytes2, int len2) { throw null; }
        public static string Intern(string s) { throw null; }
        public static int StringDifference(string s1, string s2) { throw null; }
    }
    public partial class StringInterner
    {
        public StringInterner() { }
        public virtual string Intern(char[] arr, int offset, int len) { throw null; }
        public virtual string Intern(string s) { throw null; }
    }
    public partial class ToStringUtils
    {
        public ToStringUtils() { }
        public static string Boost(float boost) { throw null; }
    }
    public static partial class UnicodeUtil
    {
        public const int UNI_REPLACEMENT_CHAR = 65533;
        public const int UNI_SUR_HIGH_END = 56319;
        public const int UNI_SUR_HIGH_START = 55296;
        public const int UNI_SUR_LOW_END = 57343;
        public const int UNI_SUR_LOW_START = 56320;
        public static void UTF16toUTF8(char[] source, int offset, Lucene.Net.Util.UnicodeUtil.UTF8Result result) { }
        public static void UTF16toUTF8(char[] source, int offset, int length, Lucene.Net.Util.UnicodeUtil.UTF8Result result) { }
        public static void UTF16toUTF8(string s, int offset, int length, Lucene.Net.Util.UnicodeUtil.UTF8Result result) { }
        public static void UTF8toUTF16(byte[] utf8, int offset, int length, Lucene.Net.Util.UnicodeUtil.UTF16Result result) { }
        public sealed partial class UTF16Result
        {
            public int length;
            public int[] offsets;
            public char[] result;
            public UTF16Result() { }
            public void CopyText(Lucene.Net.Util.UnicodeUtil.UTF16Result other) { }
            public void SetLength(int newLength) { }
        }
        public sealed partial class UTF8Result
        {
            public int length;
            public byte[] result;
            public UTF8Result() { }
            public void SetLength(int newLength) { }
        }
    }
    public enum Version
    {
        LUCENE_20 = 0,
        LUCENE_21 = 1,
        LUCENE_22 = 2,
        LUCENE_23 = 3,
        LUCENE_24 = 4,
        LUCENE_29 = 5,
        LUCENE_30 = 6,
        [System.ObsoleteAttribute("Use an actual version instead.")]
        LUCENE_CURRENT = 7,
    }
    public static partial class VersionEnumExtensions
    {
        public static bool OnOrAfter(this Lucene.Net.Util.Version first, Lucene.Net.Util.Version other) { throw null; }
    }
}
namespace Lucene.Net.Util.Cache
{
    public abstract partial class Cache<TKey, TValue> : System.IDisposable
    {
        protected Cache() { }
        [System.ObsoleteAttribute("Use Dispose() instead")]
        public void Close() { }
        public abstract bool ContainsKey(object key);
        public void Dispose() { }
        protected abstract void Dispose(bool disposing);
        public abstract TValue Get(object key);
        public abstract void Put(TKey key, TValue value_Renamed);
        public static Lucene.Net.Util.Cache.Cache<TKey, TValue> SynchronizedCache(Lucene.Net.Util.Cache.Cache<TKey, TValue> cache) { throw null; }
    }
    public partial class SimpleLRUCache<TKey, TValue> : Lucene.Net.Util.Cache.SimpleMapCache<TKey, TValue>
    {
        public SimpleLRUCache(int Capacity) { }
        public override TValue Get(object Key) { throw null; }
        public override void Put(TKey Key, TValue Value) { }
    }
    public partial class SimpleMapCache<TKey, TValue> : Lucene.Net.Util.Cache.Cache<TKey, TValue>
    {
        public SimpleMapCache() { }
        public SimpleMapCache(System.Collections.Generic.Dictionary<TKey, TValue> map) { }
        public override bool ContainsKey(object key) { throw null; }
        protected override void Dispose(bool disposing) { }
        public override TValue Get(object key) { throw null; }
        public virtual System.Collections.Generic.HashSet<TKey> KeySet() { throw null; }
        public override void Put(TKey key, TValue value_Renamed) { }
    }
}
namespace Mono.Documentation
{
    public delegate System.Xml.XmlDocument DocLoader(string escapedTypeName);
    public partial class ManifestResourceResolver : System.Xml.XmlUrlResolver
    {
        public ManifestResourceResolver(params string[] dirs) { }
        public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
        public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
    }
    public static partial class XmlDocUtils
    {
        public static void AddExtensionMethods(System.Xml.XmlDocument typexml, System.Collections.ArrayList extensions, Mono.Documentation.DocLoader loader) { }
        public static string GetCachedFileName(string cacheDir, string url) { throw null; }
        public static string GetCacheDirectory(string assembledBase) { throw null; }
        public static System.Xml.XmlNodeList GetMemberGenericParameters(System.Xml.XmlNode member) { throw null; }
        public static System.Xml.XmlNodeList GetTypeGenericParameters(System.Xml.XmlNode member) { throw null; }
        public static string ToEscapedMemberName(string member) { throw null; }
        public static string ToEscapedTypeName(string name) { throw null; }
        public static string ToTypeName(string type, System.Xml.XmlNode member) { throw null; }
        public static string ToTypeName(string type, System.Xml.XmlNodeList typeGenParams, System.Xml.XmlNodeList memberGenParams) { throw null; }
    }
}
namespace Mono.Utilities
{
    public partial class Colorizer
    {
        public Colorizer() { }
        public static string Colorize(string text, string lang) { throw null; }
    }
    public partial class LRUCache<TKey, TValue>
    {
        public LRUCache(int capacity) { }
        public static Mono.Utilities.LRUCache<TKey, TValue> Default { get { throw null; } }
        public TValue Get(TKey key) { throw null; }
        public void Put(TKey key, TValue value) { }
    }
}
namespace Monodoc
{
    public static partial class Config
    {
        public static System.Configuration.KeyValueConfigurationCollection AppSettings { get { throw null; } }
        public static System.Configuration.KeyValueConfigurationCollection LibSettings { get { throw null; } }
        public static string Get(string key) { throw null; }
    }
    public static partial class DocCacheHelper
    {
        public static Monodoc.IDocCache GetDefaultCache(string name) { throw null; }
    }
    public enum DocEntity
    {
        Blob = 1,
        Text = 0,
    }
    public static partial class DocRevisionManagerExtensions
    {
        public static System.IO.Stream RetrieveLatestRevision(this Monodoc.IDocRevisionManager revManager, string id) { throw null; }
    }
    public static partial class DocStorageExtensions
    {
        public static bool TryRetrieve(this Monodoc.IDocStorage storage, string id, out System.IO.Stream stream) { stream = default(System.IO.Stream); throw null; }
    }
    public enum DocumentType
    {
        AddinXml = 3,
        EcmaSpecXml = 1,
        EcmaXml = 0,
        ErrorXml = 8,
        Html = 5,
        Man = 2,
        MonoBook = 4,
        PlainText = 7,
        TocXml = 6,
    }
    public partial class HelpSource
    {
        [System.ObsoleteAttribute]
        public static bool FullHtml;
        [System.ObsoleteAttribute]
        public static bool UseWebdocCache;
        [System.ObsoleteAttribute]
        public static bool use_css;
        public HelpSource() { }
        public HelpSource(string base_filename, bool create) { }
        public string BaseDir { get { throw null; } }
        public string BaseFilePath { get { throw null; } }
        public Monodoc.IDocCache Cache { get { throw null; } }
        [System.ObsoleteAttribute("Use Monodoc.Providers.HtmlGenerator.InlineCss")]
        public string InlineCss { get { throw null; } }
        [System.ObsoleteAttribute]
        public string InlineJavaScript { get { throw null; } }
        public string Name { get { throw null; } }
        public Monodoc.RootTree RootTree { get { throw null; } set { } }
        public virtual Monodoc.SortType SortType { get { throw null; } }
        public int SourceID { get { throw null; } }
        public Monodoc.IDocStorage Storage { get { throw null; } protected set { } }
        public System.Diagnostics.TraceLevel TraceLevel { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public Monodoc.Tree Tree { get { throw null; } }
        protected virtual string UriPrefix { get { throw null; } }
        public virtual bool CanHandleUrl(string url) { throw null; }
        public virtual System.IO.Stream GetCachedHelpStream(string id) { throw null; }
        public virtual string GetCachedText(string id) { throw null; }
        public virtual Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public virtual System.IO.Stream GetHelpStream(string id) { throw null; }
        public System.Xml.XmlReader GetHelpXml(string id) { throw null; }
        public virtual System.Xml.XmlDocument GetHelpXmlWithChanges(string id) { throw null; }
        public virtual System.IO.Stream GetImage(string url) { throw null; }
        public virtual string GetInternalIdForUrl(string url, out Monodoc.Node node, out System.Collections.Generic.Dictionary<string, string> context) { node = default(Monodoc.Node); context = default(System.Collections.Generic.Dictionary<string, string>); throw null; }
        public virtual string GetPublicUrl(Monodoc.Node node) { throw null; }
        public virtual string GetText(string id) { throw null; }
        [System.ObsoleteAttribute("Use RenderUrl")]
        public string GetText(string url, out Monodoc.Node node) { node = default(Monodoc.Node); throw null; }
        public virtual bool IsGeneratedContent(string id) { throw null; }
        public virtual bool IsMultiPart(string id, out System.Collections.Generic.IEnumerable<string> parts) { parts = default(System.Collections.Generic.IEnumerable<string>); throw null; }
        public virtual bool IsRawContent(string id) { throw null; }
        public virtual Monodoc.Node MatchNode(string url) { throw null; }
        public virtual void PopulateIndex(Monodoc.IndexMaker index_maker) { }
        public virtual void PopulateSearchableIndex(Lucene.Net.Index.IndexWriter writer) { }
        [System.ObsoleteAttribute("Use RenderUrl")]
        public string RenderNamespaceLookup(string url, out Monodoc.Node node) { node = default(Monodoc.Node); throw null; }
        public virtual void RenderPreviewDocs(System.Xml.XmlNode newNode, System.Xml.XmlWriter writer) { }
        public void Save() { }
    }
    public partial interface IDocCache : System.IDisposable
    {
        void CacheBlob(string id, byte[] data);
        void CacheBlob(string id, System.IO.Stream stream);
        void CacheText(string id, System.IO.Stream stream);
        void CacheText(string id, string content);
        bool CanCache(Monodoc.DocEntity entity);
        System.IO.Stream GetCachedStream(string id);
        string GetCachedString(string id);
        bool IsCached(string id);
    }
    public partial interface IDocGenerator<TOutput>
    {
        TOutput Generate(Monodoc.HelpSource hs, string internalId, System.Collections.Generic.Dictionary<string, string> context);
    }
    public partial interface IDocRevisionManager
    {
        System.Collections.Generic.IEnumerable<string> AvailableRevisionsForId(string id);
        string GetRevisionDescription(string revision);
        string LatestRevisionForId(string id);
        System.IO.Stream RetrieveWithRevision(string id, string revision);
    }
    public partial interface IDocStorage : System.IDisposable
    {
        Monodoc.IDocRevisionManager RevisionManager { get; }
        bool SupportChange { get; }
        bool SupportRevision { get; }
        System.Collections.Generic.IEnumerable<string> GetAvailableIds();
        System.IO.Stream Retrieve(string id);
        string Store(string id, byte[] data);
        string Store(string id, System.IO.Stream stream);
        string Store(string id, string text);
    }
    public partial interface IListModel
    {
        int Rows { get; }
        string GetDescription(int row);
        string GetValue(int row);
    }
    public partial class IndexEntry
    {
        public IndexEntry() { }
        public IndexEntry(System.IO.FileStream fs, System.IO.BinaryReader reader, int position) { }
        public int Count { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public Monodoc.Topic this[int idx] { get { throw null; } }
        public int Position { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Generic.IList<Monodoc.Topic> Topics { get { throw null; } }
        public void Add(Monodoc.Topic t) { }
        public void WriteTopics(Monodoc.IndexMaker maker, System.IO.Stream stream, System.IO.BinaryWriter writer) { }
    }
    public partial class IndexMaker
    {
        public IndexMaker() { }
        public void Add(string caption, string sort_key, string url) { }
        public void AddTopic(Monodoc.Topic topic) { }
        public int GetCode(string s) { throw null; }
        public void Save(string filename) { }
    }
    public partial class IndexReader : Monodoc.IListModel
    {
        internal IndexReader() { }
        public int Rows { get { throw null; } }
        public string GetDescription(int row) { throw null; }
        public Monodoc.IndexEntry GetIndexEntry(int row) { throw null; }
        public string GetValue(int row) { throw null; }
        public static Monodoc.IndexReader Load(string filename) { throw null; }
    }
    public partial class Node : System.IComparable, System.IComparable<Monodoc.Node>
    {
        public bool Documented;
        public Node(Monodoc.Node parent, string caption, string element) { }
        [System.ObsoleteAttribute("Tree inheriting Node is being phased out. Use the `Tree.RootNode' property instead")]
        public Node(string caption, string element) { }
        public string Caption { get { throw null; } }
        public System.Collections.Generic.IList<Monodoc.Node> ChildNodes { get { throw null; } }
        public string Element { get { throw null; } set { } }
        public bool IsLeaf { get { throw null; } }
        [System.ObsoleteAttribute("Use ChildNodes")]
        public System.Collections.ArrayList Nodes { get { throw null; } }
        public Monodoc.Node Parent { get { throw null; } }
        public string PublicUrl { get { throw null; } }
        public Monodoc.Tree Tree { get { throw null; } }
        [System.ObsoleteAttribute("Use `Tree' instead of 'tree'")]
        public Monodoc.Tree tree { get { throw null; } }
        public void AddNode(Monodoc.Node n) { }
        public Monodoc.Node CreateNode(string c_caption, string c_element) { throw null; }
        public void DeleteNode(Monodoc.Node n) { }
        public void EnsureLoaded() { }
        public void EnsureNodes() { }
        public Monodoc.Node GetOrCreateNode(string c_caption, string c_element) { throw null; }
        [System.ObsoleteAttribute("Use TreeDumper")]
        public static void PrintTree(Monodoc.Tree t) { }
        public void Sort() { }
        int System.IComparable.CompareTo(object obj) { throw null; }
        int System.IComparable<Monodoc.Node>.CompareTo(Monodoc.Node obj) { throw null; }
    }
    public abstract partial class Provider
    {
        public Provider() { }
        public int Code { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public abstract void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree);
        public abstract void PopulateTree(Monodoc.Tree tree);
    }
    public partial class Result
    {
        public Result(string Term, Lucene.Net.Search.Searcher searcher, Lucene.Net.Search.ScoreDoc[] docs) { }
        public int Count { get { throw null; } }
        public Lucene.Net.Documents.Document this[int i] { get { throw null; } }
        public string Term { get { throw null; } }
        public string GetFullTitle(int i) { throw null; }
        public string GetTitle(int i) { throw null; }
        public string GetUrl(int i) { throw null; }
        public float Score(int i) { throw null; }
    }
    public partial class RootTree : Monodoc.Tree
    {
        internal RootTree() : base (default(Monodoc.HelpSource), default(string)) { }
        public const int MonodocVersion = 2;
        public System.Collections.Generic.IList<Monodoc.HelpSource> HelpSources { get { throw null; } }
        public System.DateTime LastHelpSourceTime { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public void AddSource(string sourcesDir) { }
        public bool AddSourceFile(string sourceFile) { throw null; }
        public static void AddUncompiledSource(string path) { }
        public bool GenerateIndex() { throw null; }
        public bool GenerateSearchIndex() { throw null; }
        public static Monodoc.HelpSource GetHelpSource(string provider, string basefilepath) { throw null; }
        public Monodoc.HelpSource GetHelpSourceAndIdForUrl(string url, Monodoc.HelpSource hintSource, out string internalId, out System.Collections.Generic.Dictionary<string, string> context, out Monodoc.Node node) { internalId = default(string); context = default(System.Collections.Generic.Dictionary<string, string>); node = default(Monodoc.Node); throw null; }
        public Monodoc.HelpSource GetHelpSourceAndIdForUrl(string url, out string internalId, out System.Collections.Generic.Dictionary<string, string> context) { internalId = default(string); context = default(System.Collections.Generic.Dictionary<string, string>); throw null; }
        public Monodoc.HelpSource GetHelpSourceAndIdForUrl(string url, out string internalId, out System.Collections.Generic.Dictionary<string, string> context, out Monodoc.Node node) { internalId = default(string); context = default(System.Collections.Generic.Dictionary<string, string>); node = default(Monodoc.Node); throw null; }
        public Monodoc.HelpSource GetHelpSourceAndIdFromName(string name, out string internalId, out Monodoc.Node node) { internalId = default(string); node = default(Monodoc.Node); throw null; }
        public Monodoc.HelpSource GetHelpSourceFromId(int id) { throw null; }
        [System.ObsoleteAttribute("Use RawGenerator directly")]
        public System.Xml.XmlDocument GetHelpXml(string id) { throw null; }
        public System.IO.Stream GetImage(string url) { throw null; }
        public Monodoc.IndexReader GetIndex() { throw null; }
        public static Monodoc.Provider GetProvider(string provider, params string[] basefilepaths) { throw null; }
        public Monodoc.SearchableIndex GetSearchIndex() { throw null; }
        public static string[] GetSupportedFormats() { throw null; }
        [System.ObsoleteAttribute]
        public string GetTitle(string url) { throw null; }
        public static Monodoc.RootTree LoadTree() { throw null; }
        public static Monodoc.RootTree LoadTree(string basedir, bool includeExternal=true) { throw null; }
        public static Monodoc.RootTree LoadTree(string indexDir, System.Xml.XmlDocument docTree, System.Collections.Generic.IEnumerable<string> sourceFiles) { throw null; }
        public Monodoc.Node LookupEntryPoint(string name) { throw null; }
        public static void MakeIndex() { }
        [System.ObsoleteAttribute("Use GenerateIndex")]
        public static void MakeIndex(Monodoc.RootTree root) { }
        public static void MakeSearchIndex() { }
        [System.ObsoleteAttribute("Use GenerateSearchIndex")]
        public static void MakeSearchIndex(Monodoc.RootTree root) { }
        [System.ObsoleteAttribute("Use the RenderUrl variant accepting a generator")]
        public string RenderUrl(string url, out Monodoc.Node n) { n = default(Monodoc.Node); throw null; }
        public TOutput RenderUrl<TOutput>(string url, Monodoc.IDocGenerator<TOutput> generator, Monodoc.HelpSource hintSource=null) { throw null; }
        public TOutput RenderUrl<TOutput>(string url, Monodoc.IDocGenerator<TOutput> generator, out Monodoc.Node node, Monodoc.HelpSource hintSource=null) { node = default(Monodoc.Node); throw null; }
    }
    public partial class SearchableIndex
    {
        public SearchableIndex() { }
        public string Dir { get { throw null; } set { } }
        public Monodoc.Result FastSearch(string term, int number) { throw null; }
        public static Monodoc.SearchableIndex Load(string dir) { throw null; }
        public Monodoc.Result Search(string term) { throw null; }
        public Monodoc.Result Search(string term, int count) { throw null; }
        public Monodoc.Result Search(string term, int count, int start) { throw null; }
    }
    [System.ObsoleteAttribute]
    public partial class Settings
    {
        [System.ObsoleteAttribute]
        public string Email;
        [System.ObsoleteAttribute]
        public bool EnableEditing;
        [System.ObsoleteAttribute]
        public string Key;
        [System.ObsoleteAttribute]
        public int LastSeenVersion;
        [System.ObsoleteAttribute]
        public string preferred_font_family;
        [System.ObsoleteAttribute]
        public double preferred_font_size;
        [System.ObsoleteAttribute]
        public static bool RunningGUI;
        [System.ObsoleteAttribute]
        public int SerialNumber;
        [System.ObsoleteAttribute]
        public bool ShowComments;
        [System.ObsoleteAttribute]
        public bool ShowInheritedMembers;
        public Settings() { }
    }
    [System.ObsoleteAttribute]
    public partial class SettingsHandler
    {
        [System.ObsoleteAttribute]
        public static string Path;
        [System.ObsoleteAttribute]
        public static Monodoc.Settings Settings;
        public SettingsHandler() { }
        [System.ObsoleteAttribute]
        public static void CheckUpgrade() { }
        [System.ObsoleteAttribute]
        public static void EnsureSettingsDirectory() { }
        [System.ObsoleteAttribute]
        public static void Save() { }
    }
    public enum SortType
    {
        Caption = 0,
        Element = 1,
    }
    public partial class Topic
    {
        public readonly string Caption;
        public readonly string SortKey;
        public readonly string Url;
        public Topic(string caption, string sort_key, string url) { }
    }
    public partial class Tree : Monodoc.Node
    {
        public const long CurrentVersionNumber = (long)1;
        public readonly Monodoc.HelpSource HelpSource;
        public Tree(Monodoc.HelpSource hs, Monodoc.Node parent, string caption, string element) : base (default(string), default(string)) { }
        public Tree(Monodoc.HelpSource hs, string filename) : base (default(string), default(string)) { }
        public Tree(Monodoc.HelpSource hs, string caption, string url) : base (default(string), default(string)) { }
        public Monodoc.Node RootNode { get { throw null; } }
        public long VersionNumber { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public void InflateNode(Monodoc.Node baseNode) { }
        public void Save(string file) { }
    }
    public static partial class TreeDumper
    {
        public static string ExportToTocXml(Monodoc.Node root, string title, string desc) { throw null; }
        public static void PrintTree(Monodoc.Node node) { }
    }
    public static partial class TypeUtils
    {
        public static bool GetNamespaceAndType(string url, out string ns, out string type) { ns = default(string); type = default(string); throw null; }
    }
}
namespace Monodoc.Caches
{
    public partial class FileCache : Monodoc.IDocCache, System.IDisposable
    {
        public FileCache(string baseCacheDir) { }
        public void CacheBlob(string id, byte[] data) { }
        public void CacheBlob(string id, System.IO.Stream stream) { }
        public void CacheText(string id, System.IO.Stream stream) { }
        public void CacheText(string id, string content) { }
        public bool CanCache(Monodoc.DocEntity entity) { throw null; }
        public void Dispose() { }
        public System.IO.Stream GetCachedStream(string id) { throw null; }
        public string GetCachedString(string id) { throw null; }
        public bool IsCached(string id) { throw null; }
    }
    public partial class NullCache : Monodoc.IDocCache, System.IDisposable
    {
        public NullCache() { }
        public void CacheBlob(string id, byte[] data) { }
        public void CacheBlob(string id, System.IO.Stream stream) { }
        public void CacheText(string id, System.IO.Stream stream) { }
        public void CacheText(string id, string content) { }
        public bool CanCache(Monodoc.DocEntity entity) { throw null; }
        public void Dispose() { }
        public System.IO.Stream GetCachedStream(string id) { throw null; }
        public string GetCachedString(string id) { throw null; }
        public bool IsCached(string id) { throw null; }
    }
}
namespace Monodoc.Ecma
{
    public partial class EcmaDesc : System.IEquatable<Monodoc.Ecma.EcmaDesc>
    {
        public EcmaDesc() { }
        public System.Collections.Generic.IList<int> ArrayDimensions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public Monodoc.Ecma.EcmaDesc.Kind DescKind { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public Monodoc.Ecma.EcmaDesc.Mod DescModifier { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public char Etc { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public string EtcFilter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public Monodoc.Ecma.EcmaDesc ExplicitImplMember { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Collections.Generic.IList<Monodoc.Ecma.EcmaDesc> GenericMemberArguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int GenericMemberArgumentsCount { get { throw null; } }
        public bool GenericMemberArgumentsIsNumeric { get { throw null; } }
        public System.Collections.Generic.IList<Monodoc.Ecma.EcmaDesc> GenericTypeArguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int GenericTypeArgumentsCount { get { throw null; } }
        public bool GenericTypeArgumentsIsNumeric { get { throw null; } }
        public bool IsEtc { get { throw null; } }
        public System.Collections.Generic.IList<Monodoc.Ecma.EcmaDesc> MemberArguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int MemberArgumentsCount { get { throw null; } }
        public string MemberName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public string Namespace { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public Monodoc.Ecma.EcmaDesc NestedType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public string TypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public bool Equals(Monodoc.Ecma.EcmaDesc other) { throw null; }
        public override bool Equals(object other) { throw null; }
        public override int GetHashCode() { throw null; }
        public string ToCompleteMemberName(Monodoc.Ecma.EcmaDesc.Format format) { throw null; }
        public string ToCompleteTypeName(char innerTypeSeparator='.') { throw null; }
        public string ToEcmaCref() { throw null; }
        public override string ToString() { throw null; }
        public enum Format
        {
            WithArgs = 0,
            WithoutArgs = 1,
        }
        public enum Kind
        {
            Constructor = 1,
            Event = 6,
            Field = 4,
            Method = 2,
            Namespace = 3,
            Operator = 7,
            Property = 5,
            Type = 0,
        }
        public enum Mod
        {
            Normal = 0,
            Out = 3,
            Pointer = 1,
            Ref = 2,
        }
    }
    public partial class EcmaUrlParser
    {
        public int eof_token;
        public System.IO.TextWriter ErrorOutput;
        protected bool use_global_stacks;
        protected static readonly short[] yyCheck;
        protected static readonly short[] yyDgoto;
        protected const int yyFinal = 9;
        protected static readonly short[] yyGindex;
        protected int yyMax;
        protected static readonly string[] yyNames;
        protected static readonly short[] yyRindex;
        protected static readonly short[] yySindex;
        protected static readonly short[] yyTable;
        public EcmaUrlParser() { }
        public void IsValid(string input) { }
        public Monodoc.Ecma.EcmaDesc Parse(string input) { throw null; }
        public bool TryParse(string input, out Monodoc.Ecma.EcmaDesc desc) { desc = default(Monodoc.Ecma.EcmaDesc); throw null; }
        protected object yyDefault(object first) { throw null; }
        public void yyerror(string message) { }
        public void yyerror(string message, string[] expected) { }
        protected string[] yyExpecting(int state) { throw null; }
        protected int[] yyExpectingTokens(int state) { throw null; }
        public static string yyname(int token) { throw null; }
    }
    public partial class EcmaUrlTokenizer
    {
        public EcmaUrlTokenizer(string input) { }
        public object Value { get { throw null; } }
        public bool advance() { throw null; }
        public int token() { throw null; }
        public object value() { throw null; }
    }
}
namespace Monodoc.Generators
{
    public partial class HtmlGenerator : Monodoc.IDocGenerator<string>
    {
        public HtmlGenerator(Monodoc.IDocCache defaultCache) { }
        public static string InlineCss { get { throw null; } set { } }
        public string Generate(Monodoc.HelpSource hs, string id, System.Collections.Generic.Dictionary<string, string> context) { throw null; }
    }
    public partial class RawGenerator : Monodoc.IDocGenerator<string>
    {
        public RawGenerator() { }
        public string Generate(Monodoc.HelpSource hs, string id, System.Collections.Generic.Dictionary<string, string> context) { throw null; }
    }
}
namespace Monodoc.Generators.Html
{
    public partial class Addin2Html
    {
        public Addin2Html() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream stream, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        protected string GetAddinTextFromUrl(System.Xml.XmlElement addin, string addinId, string fileId) { throw null; }
        protected string GetExtensionNodeTextFromUrl(System.Xml.XmlElement addin, string addinId, string fileId, string nodeId) { throw null; }
        protected string GetExtensionTextFromUrl(System.Xml.XmlElement addin, string addinId, string fileId, string path) { throw null; }
        public string Htmlize(System.Xml.XmlElement addin, string urlType, string addinId, string fileId, string path) { throw null; }
    }
    public partial class Ecma2Html
    {
        public Ecma2Html() { }
        public string CssCode { get { throw null; } }
        public string JsCode { get { throw null; } }
        protected virtual System.Xml.XmlResolver CreateDocumentResolver() { throw null; }
        public string Export(System.IO.Stream stream, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Htmlize(System.Xml.XmlReader ecma_xml, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Htmlize(System.Xml.XmlReader ecma_xml, System.Xml.Xsl.XsltArgumentList args) { throw null; }
        public partial class ExtensionObject
        {
            public ExtensionObject() { }
            public string Colorize(string code, string lang) { throw null; }
            public bool IsToBeAdded(string text) { throw null; }
            public string MakeNiceSignature(string sig, string contexttype) { throw null; }
            public bool MonoEditing() { throw null; }
            public string MonoImpInfo(string assemblyname, string typename, bool strlong) { throw null; }
        }
    }
    public partial class Ecmaspec2Html
    {
        public Ecmaspec2Html() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream stream, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
    }
    public partial class Error2Html
    {
        public Error2Html() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Htmlize(System.Xml.XPath.IXPathNavigable doc) { throw null; }
    }
    public partial class Idem
    {
        public Idem() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
    }
    public partial class Man2Html
    {
        public Man2Html() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public static string GetTextFromReader(System.IO.TextReader file) { throw null; }
    }
    public partial class MonoBook2Html
    {
        public MonoBook2Html() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string FromXmlReader(System.Xml.XmlReader reader) { throw null; }
    }
    public partial class Toc2Html
    {
        public Toc2Html() { }
        public string CssCode { get { throw null; } }
        public string Export(System.IO.Stream input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
        public string Export(string input, System.Collections.Generic.Dictionary<string, string> extraArgs) { throw null; }
    }
}
namespace Monodoc.Providers
{
    public partial class AddinsHelpSource : Monodoc.HelpSource
    {
        protected internal const string AddinPrefix = "addin:";
        protected internal const string ExtensionNodePrefix = "extension-node:";
        protected internal const string ExtensionPrefix = "extension-point:";
        public AddinsHelpSource(string base_file, bool create) { }
        protected override string UriPrefix { get { throw null; } }
        public override bool CanHandleUrl(string url) { throw null; }
        public override Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public override string GetInternalIdForUrl(string url, out Monodoc.Node node, out System.Collections.Generic.Dictionary<string, string> context) { node = default(Monodoc.Node); context = default(System.Collections.Generic.Dictionary<string, string>); throw null; }
        public override Monodoc.Node MatchNode(string url) { throw null; }
    }
    public partial class AddinsProvider : Monodoc.Provider
    {
        public AddinsProvider(string xmlModelFile) { }
        public override void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree) { }
        public override void PopulateTree(Monodoc.Tree tree) { }
    }
    public partial class EcmaHelpSource : Monodoc.HelpSource
    {
        protected EcmaHelpSource() { }
        public EcmaHelpSource(string base_file, bool create) { }
        protected override string UriPrefix { get { throw null; } }
        public override bool CanHandleUrl(string url) { throw null; }
        public override System.IO.Stream GetCachedHelpStream(string id) { throw null; }
        public override Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public override System.IO.Stream GetHelpStream(string id) { throw null; }
        public string GetInternalIdForInternalUrl(string internalUrl, out string hash) { hash = default(string); throw null; }
        public override string GetInternalIdForUrl(string url, out Monodoc.Node node, out System.Collections.Generic.Dictionary<string, string> context) { node = default(Monodoc.Node); context = default(System.Collections.Generic.Dictionary<string, string>); throw null; }
        public override string GetPublicUrl(Monodoc.Node node) { throw null; }
        public override Monodoc.Node MatchNode(string url) { throw null; }
        public override void PopulateIndex(Monodoc.IndexMaker index_maker) { }
        public override void PopulateSearchableIndex(Lucene.Net.Index.IndexWriter writer) { }
    }
    public enum EcmaNodeType
    {
        Invalid = 0,
        Member = 3,
        Meta = 4,
        Namespace = 1,
        Type = 2,
    }
    public partial class EcmaProvider : Monodoc.Provider
    {
        public EcmaProvider() { }
        public EcmaProvider(string baseDir) { }
        public Monodoc.Providers.IEcmaProviderFileSource FileSource { get { throw null; } set { } }
        public void AddDirectory(string directory) { }
        public override void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree) { }
        public override void PopulateTree(Monodoc.Tree tree) { }
    }
    public partial class EcmaSpecHelpSource : Monodoc.HelpSource
    {
        public EcmaSpecHelpSource(string base_file, bool create) { }
        protected override string UriPrefix { get { throw null; } }
        public override Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public override System.IO.Stream GetHelpStream(string id) { throw null; }
        public override string GetText(string id) { throw null; }
        public override bool IsGeneratedContent(string id) { throw null; }
        public override bool IsMultiPart(string id, out System.Collections.Generic.IEnumerable<string> parts) { parts = default(System.Collections.Generic.IEnumerable<string>); throw null; }
        public override void PopulateSearchableIndex(Lucene.Net.Index.IndexWriter writer) { }
    }
    public partial class EcmaSpecProvider : Monodoc.Provider
    {
        public EcmaSpecProvider(string base_directory) { }
        public override void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree) { }
        public override void PopulateTree(Monodoc.Tree tree) { }
    }
    public partial class EcmaUncompiledHelpSource : Monodoc.Providers.EcmaHelpSource
    {
        public readonly string BasePath;
        public EcmaUncompiledHelpSource(string base_file, bool markName=true) { }
        public new string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        protected override string UriPrefix { get { throw null; } }
        public override System.IO.Stream GetImage(string url) { throw null; }
    }
    public partial class ErrorDetails
    {
        public System.Xml.XmlNode Details;
        public System.Xml.XmlNode Summary;
        public ErrorDetails() { }
    }
    public partial class ErrorDocumentation
    {
        public Monodoc.Providers.ErrorDetails Details;
        public string ErrorName;
        public System.Collections.Generic.List<string> Examples;
        public ErrorDocumentation() { }
        public ErrorDocumentation(string ErrorName) { }
    }
    public partial class ErrorHelpSource : Monodoc.HelpSource
    {
        public ErrorHelpSource(string base_file, bool create) { }
        protected override string UriPrefix { get { throw null; } }
        public override Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public override string GetInternalIdForUrl(string url, out Monodoc.Node node, out System.Collections.Generic.Dictionary<string, string> context) { node = default(Monodoc.Node); context = default(System.Collections.Generic.Dictionary<string, string>); throw null; }
        public override string GetText(string id) { throw null; }
        public override bool IsGeneratedContent(string id) { throw null; }
        public override void PopulateIndex(Monodoc.IndexMaker index_maker) { }
        public override void PopulateSearchableIndex(Lucene.Net.Index.IndexWriter writer) { }
    }
    public partial class ErrorProvider : Monodoc.Provider
    {
        public ErrorProvider(string configFile) { }
        public override void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree) { }
        public override void PopulateTree(Monodoc.Tree tree) { }
        public static Monodoc.Providers.ErrorProviderConfig ReadConfig(string file) { throw null; }
    }
    public partial class ErrorProviderConfig
    {
        public int ErrorNumSubstringLength;
        public int ErrorNumSubstringStart;
        public string FilesPath;
        public string FriendlyFormatString;
        public string Match;
        public ErrorProviderConfig() { }
        public System.Collections.Generic.Dictionary<string, Monodoc.Providers.ErrorDocumentation> Compile(Monodoc.HelpSource hs) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial interface IEcmaProviderFileSource
    {
        System.Xml.Linq.XElement ExtractNamespaceSummary(string path);
        System.Xml.XmlReader GetIndexReader(string path);
        System.Xml.Linq.XElement GetNamespaceElement(string path);
        string GetNamespaceXmlPath(string basePath, string ns);
        System.Xml.Linq.XDocument GetTypeDocument(string path);
        string GetTypeXmlPath(string basePath, string nsName, string typeName);
    }
    public partial class ManHelpSource : Monodoc.HelpSource
    {
        public ManHelpSource(string base_file, bool create) { }
        protected override string UriPrefix { get { throw null; } }
        public override Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public override string GetText(string url) { throw null; }
        public override bool IsGeneratedContent(string id) { throw null; }
        public override Monodoc.Node MatchNode(string url) { throw null; }
    }
    public partial class ManProvider : Monodoc.Provider
    {
        public ManProvider(string[] handbookTocFiles) { }
        public override void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree) { }
        public override void PopulateTree(Monodoc.Tree tree) { }
    }
    public partial class XhtmlHelpSource : Monodoc.HelpSource
    {
        public XhtmlHelpSource(string base_file, bool create) { }
        public override Monodoc.SortType SortType { get { throw null; } }
        protected override string UriPrefix { get { throw null; } }
        public static string GetAbsoluteLink(string target, string url) { throw null; }
        public override Monodoc.DocumentType GetDocumentTypeForId(string id) { throw null; }
        public override string GetText(string url) { throw null; }
        public override bool IsGeneratedContent(string id) { throw null; }
        public override void PopulateIndex(Monodoc.IndexMaker index_maker) { }
    }
    public partial class XhtmlProvider : Monodoc.Provider
    {
        public XhtmlProvider(string handbookTocFile) { }
        public override void CloseTree(Monodoc.HelpSource hs, Monodoc.Tree tree) { }
        public override void PopulateTree(Monodoc.Tree tree) { }
    }
}
namespace Monodoc.Storage
{
    public partial class NullStorage : Monodoc.IDocStorage, System.IDisposable
    {
        public NullStorage() { }
        public Monodoc.IDocRevisionManager RevisionManager { get { throw null; } }
        public bool SupportChange { get { throw null; } }
        public bool SupportRevision { get { throw null; } }
        public void Dispose() { }
        public System.Collections.Generic.IEnumerable<string> GetAvailableIds() { throw null; }
        public System.IO.Stream Retrieve(string id) { throw null; }
        public string Store(string id, byte[] data) { throw null; }
        public string Store(string id, System.IO.Stream stream) { throw null; }
        public string Store(string id, string text) { throw null; }
    }
    public partial class UncompiledDocStorage : Monodoc.IDocStorage, System.IDisposable
    {
        public UncompiledDocStorage(string basePath) { }
        public Monodoc.IDocRevisionManager RevisionManager { get { throw null; } }
        public bool SupportChange { get { throw null; } }
        public bool SupportRevision { get { throw null; } }
        public void Dispose() { }
        public System.Collections.Generic.IEnumerable<string> GetAvailableIds() { throw null; }
        public System.IO.Stream Retrieve(string id) { throw null; }
        public string Store(string id, byte[] data) { throw null; }
        public string Store(string id, System.IO.Stream stream) { throw null; }
        public string Store(string id, string text) { throw null; }
    }
    public partial class ZipStorage : Monodoc.IDocStorage, System.IDisposable
    {
        public ZipStorage(string zipFileName) { }
        public Monodoc.IDocRevisionManager RevisionManager { get { throw null; } }
        public bool SupportChange { get { throw null; } }
        public bool SupportRevision { get { throw null; } }
        public void Dispose() { }
        public System.Collections.Generic.IEnumerable<string> GetAvailableIds() { throw null; }
        public System.IO.Stream Retrieve(string id) { throw null; }
        public string Store(string id, byte[] data) { throw null; }
        public string Store(string id, System.IO.Stream stream) { throw null; }
        public string Store(string id, string text) { throw null; }
    }
}
namespace Simplicit.Net.Lzo
{
    public partial class LZOCompressor
    {
        public LZOCompressor() { }
        public string Version { get { throw null; } }
        public string VersionDate { get { throw null; } }
        public byte[] Compress(byte[] src) { throw null; }
        public byte[] Decompress(byte[] src) { throw null; }
    }
}