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

System.Web.Extensions.cs « v4.7 « src - github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 671e0f7f9ccbe4318c7629723f8f0de2273ebfff (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
// 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("4.0.0.0")]
[assembly:System.CLSCompliantAttribute(true)]
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
[assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Web.Extensions.dll")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.Web.Extensions.dll")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.Web.Extensions.dll")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.DependencyAttribute("System,", (System.Runtime.CompilerServices.LoadHint)(1))]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
[assembly:System.Web.UI.TagPrefixAttribute("System.Web.UI", "asp")]
[assembly:System.Web.UI.TagPrefixAttribute("System.Web.UI.WebControls", "asp")]
[assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjax.debug.js", "application/x-javascript")]
[assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjax.js", "application/x-javascript")]
[assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxTimer.debug.js", "application/x-javascript")]
[assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxTimer.js", "application/x-javascript")]
[assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxWebForms.debug.js", "application/x-javascript")]
[assembly:System.Web.UI.WebResourceAttribute("MicrosoftAjaxWebForms.js", "application/x-javascript")]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
namespace System.Web.ApplicationServices
{
    public partial class ApplicationServicesHostFactory : System.ServiceModel.Activation.ServiceHostFactory
    {
        public ApplicationServicesHostFactory() { }
        protected override System.ServiceModel.ServiceHost CreateServiceHost(System.Type serviceType, System.Uri[] baseAddresses) { throw null; }
    }
    public partial class AuthenticatingEventArgs : System.EventArgs
    {
        internal AuthenticatingEventArgs() { }
        public bool Authenticated { get { throw null; } set { } }
        public bool AuthenticationIsComplete { get { throw null; } set { } }
        public string CustomCredential { get { throw null; } }
        public string Password { get { throw null; } }
        public string UserName { get { throw null; } }
    }
    public partial class AuthenticationService
    {
        public AuthenticationService() { }
        public static event System.EventHandler<System.Web.ApplicationServices.AuthenticatingEventArgs> Authenticating { add { } remove { } }
        public static event System.EventHandler<System.Web.ApplicationServices.CreatingCookieEventArgs> CreatingCookie { add { } remove { } }
        public bool IsLoggedIn() { throw null; }
        public bool Login(string username, string password, string customCredential, bool isPersistent) { throw null; }
        public void Logout() { }
        public bool ValidateUser(string username, string password, string customCredential) { throw null; }
    }
    public partial class CreatingCookieEventArgs : System.EventArgs
    {
        internal CreatingCookieEventArgs() { }
        public bool CookieIsSet { get { throw null; } set { } }
        public string CustomCredential { get { throw null; } }
        public bool IsPersistent { get { throw null; } }
        public string Password { get { throw null; } }
        public string UserName { get { throw null; } }
    }
    public static partial class KnownTypesProvider
    {
        public static System.Type[] GetKnownTypes(System.Reflection.ICustomAttributeProvider knownTypeAttributeTarget) { throw null; }
    }
    public partial class ProfilePropertyMetadata : System.Runtime.Serialization.IExtensibleDataObject
    {
        public ProfilePropertyMetadata() { }
        public bool AllowAnonymousAccess { get { throw null; } set { } }
        public string DefaultValue { get { throw null; } set { } }
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData { get { throw null; } set { } }
        public bool IsReadOnly { get { throw null; } set { } }
        public string PropertyName { get { throw null; } set { } }
        public int SerializeAs { get { throw null; } set { } }
        public string TypeName { get { throw null; } set { } }
    }
    public partial class ProfileService
    {
        public ProfileService() { }
        public static event System.EventHandler<System.Web.ApplicationServices.ValidatingPropertiesEventArgs> ValidatingProperties { add { } remove { } }
        public System.Collections.Generic.Dictionary<string, object> GetAllPropertiesForCurrentUser(bool authenticatedUserOnly) { throw null; }
        public System.Collections.Generic.Dictionary<string, object> GetPropertiesForCurrentUser(System.Collections.Generic.IEnumerable<string> properties, bool authenticatedUserOnly) { throw null; }
        public System.Web.ApplicationServices.ProfilePropertyMetadata[] GetPropertiesMetadata() { throw null; }
        public System.Collections.ObjectModel.Collection<string> SetPropertiesForCurrentUser(System.Collections.Generic.IDictionary<string, object> values, bool authenticatedUserOnly) { throw null; }
    }
    public partial class RoleService
    {
        public RoleService() { }
        public static event System.EventHandler<System.Web.ApplicationServices.SelectingProviderEventArgs> SelectingProvider { add { } remove { } }
        public string[] GetRolesForCurrentUser() { throw null; }
        public bool IsCurrentUserInRole(string role) { throw null; }
    }
    public partial class SelectingProviderEventArgs : System.EventArgs
    {
        internal SelectingProviderEventArgs() { }
        public string ProviderName { get { throw null; } set { } }
        public System.Security.Principal.IPrincipal User { get { throw null; } }
    }
    public partial class ValidatingPropertiesEventArgs : System.EventArgs
    {
        internal ValidatingPropertiesEventArgs() { }
        public System.Collections.ObjectModel.Collection<string> FailedProperties { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> Properties { get { throw null; } }
    }
}
namespace System.Web.ClientServices
{
    public partial class ClientFormsIdentity : System.IDisposable, System.Security.Principal.IIdentity
    {
        public ClientFormsIdentity(string name, string password, System.Web.Security.MembershipProvider provider, string authenticationType, bool isAuthenticated, System.Net.CookieContainer authenticationCookies) { }
        public System.Net.CookieContainer AuthenticationCookies { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public string AuthenticationType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool IsAuthenticated { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Web.Security.MembershipProvider Provider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public void RevalidateUser() { }
    }
    public partial class ClientRolePrincipal : System.Security.Principal.IPrincipal
    {
        public ClientRolePrincipal(System.Security.Principal.IIdentity identity) { }
        public System.Security.Principal.IIdentity Identity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool IsInRole(string role) { throw null; }
    }
    public static partial class ConnectivityStatus
    {
        public static bool IsOffline { get { throw null; } set { } }
    }
}
namespace System.Web.ClientServices.Providers
{
    public partial class ClientFormsAuthenticationCredentials
    {
        public ClientFormsAuthenticationCredentials(string username, string password, bool rememberMe) { }
        public string Password { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public bool RememberMe { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public string UserName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
    }
    public partial class ClientFormsAuthenticationMembershipProvider : System.Web.Security.MembershipProvider
    {
        public ClientFormsAuthenticationMembershipProvider() { }
        public override string ApplicationName { get { throw null; } set { } }
        public override bool EnablePasswordReset { get { throw null; } }
        public override bool EnablePasswordRetrieval { get { throw null; } }
        public override int MaxInvalidPasswordAttempts { get { throw null; } }
        public override int MinRequiredNonAlphanumericCharacters { get { throw null; } }
        public override int MinRequiredPasswordLength { get { throw null; } }
        public override int PasswordAttemptWindow { get { throw null; } }
        public override System.Web.Security.MembershipPasswordFormat PasswordFormat { get { throw null; } }
        public override string PasswordStrengthRegularExpression { get { throw null; } }
        public override bool RequiresQuestionAndAnswer { get { throw null; } }
        public override bool RequiresUniqueEmail { get { throw null; } }
        public string ServiceUri { get { throw null; } set { } }
        public event System.EventHandler<System.Web.ClientServices.Providers.UserValidatedEventArgs> UserValidated { add { } remove { } }
        public override bool ChangePassword(string username, string oldPassword, string newPassword) { throw null; }
        public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { throw null; }
        public override System.Web.Security.MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status) { status = default(System.Web.Security.MembershipCreateStatus); throw null; }
        public override bool DeleteUser(string username, bool deleteAllRelatedData) { throw null; }
        public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
        public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
        public override System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
        public override int GetNumberOfUsersOnline() { throw null; }
        public override string GetPassword(string username, string answer) { throw null; }
        public override System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw null; }
        public override System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw null; }
        public override string GetUserNameByEmail(string email) { throw null; }
        public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { }
        public void Logout() { }
        public override string ResetPassword(string username, string answer) { throw null; }
        public override bool UnlockUser(string username) { throw null; }
        public override void UpdateUser(System.Web.Security.MembershipUser user) { }
        public override bool ValidateUser(string username, string password) { throw null; }
        public bool ValidateUser(string username, string password, bool rememberMe) { throw null; }
        public static bool ValidateUser(string username, string password, string serviceUri) { throw null; }
    }
    public partial class ClientRoleProvider : System.Web.Security.RoleProvider
    {
        public ClientRoleProvider() { }
        public override string ApplicationName { get { throw null; } set { } }
        public string ServiceUri { get { throw null; } set { } }
        public override void AddUsersToRoles(string[] usernames, string[] roleNames) { }
        public override void CreateRole(string roleName) { }
        public override bool DeleteRole(string roleName, bool throwOnPopulatedRole) { throw null; }
        public override string[] FindUsersInRole(string roleName, string usernameToMatch) { throw null; }
        public override string[] GetAllRoles() { throw null; }
        public override string[] GetRolesForUser(string username) { throw null; }
        public override string[] GetUsersInRole(string roleName) { throw null; }
        public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { }
        public override bool IsUserInRole(string username, string roleName) { throw null; }
        public override void RemoveUsersFromRoles(string[] usernames, string[] roleNames) { }
        public void ResetCache() { }
        public override bool RoleExists(string roleName) { throw null; }
    }
    public partial class ClientSettingsProvider : System.Configuration.SettingsProvider, System.Configuration.IApplicationSettingsProvider
    {
        public ClientSettingsProvider() { }
        public override string ApplicationName { get { throw null; } set { } }
        public static string ServiceUri { get { throw null; } set { } }
        public event System.EventHandler<System.Web.ClientServices.Providers.SettingsSavedEventArgs> SettingsSaved { add { } remove { } }
        public System.Configuration.SettingsPropertyValue GetPreviousVersion(System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property) { throw null; }
        public static System.Configuration.SettingsPropertyCollection GetPropertyMetadata(string serviceUri) { throw null; }
        public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection propertyCollection) { throw null; }
        public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config) { }
        public void Reset(System.Configuration.SettingsContext context) { }
        public override void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection propertyValueCollection) { }
        public void Upgrade(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection properties) { }
    }
    public partial class ClientWindowsAuthenticationMembershipProvider : System.Web.Security.MembershipProvider
    {
        public ClientWindowsAuthenticationMembershipProvider() { }
        public override string ApplicationName { get { throw null; } set { } }
        public override bool EnablePasswordReset { get { throw null; } }
        public override bool EnablePasswordRetrieval { get { throw null; } }
        public override int MaxInvalidPasswordAttempts { get { throw null; } }
        public override int MinRequiredNonAlphanumericCharacters { get { throw null; } }
        public override int MinRequiredPasswordLength { get { throw null; } }
        public override int PasswordAttemptWindow { get { throw null; } }
        public override System.Web.Security.MembershipPasswordFormat PasswordFormat { get { throw null; } }
        public override string PasswordStrengthRegularExpression { get { throw null; } }
        public override bool RequiresQuestionAndAnswer { get { throw null; } }
        public override bool RequiresUniqueEmail { get { throw null; } }
        public override bool ChangePassword(string username, string oldPassword, string newPassword) { throw null; }
        public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer) { throw null; }
        public override System.Web.Security.MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out System.Web.Security.MembershipCreateStatus status) { status = default(System.Web.Security.MembershipCreateStatus); throw null; }
        public override bool DeleteUser(string username, bool deleteAllRelatedData) { throw null; }
        public override System.Web.Security.MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
        public override System.Web.Security.MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
        public override System.Web.Security.MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords) { totalRecords = default(int); throw null; }
        public override int GetNumberOfUsersOnline() { throw null; }
        public override string GetPassword(string username, string answer) { throw null; }
        public override System.Web.Security.MembershipUser GetUser(object providerUserKey, bool userIsOnline) { throw null; }
        public override System.Web.Security.MembershipUser GetUser(string username, bool userIsOnline) { throw null; }
        public override string GetUserNameByEmail(string email) { throw null; }
        public void Logout() { }
        public override string ResetPassword(string username, string answer) { throw null; }
        public override bool UnlockUser(string username) { throw null; }
        public override void UpdateUser(System.Web.Security.MembershipUser user) { }
        public override bool ValidateUser(string username, string password) { throw null; }
    }
    public partial interface IClientFormsAuthenticationCredentialsProvider
    {
        System.Web.ClientServices.Providers.ClientFormsAuthenticationCredentials GetCredentials();
    }
    public partial class SettingsSavedEventArgs : System.EventArgs
    {
        public SettingsSavedEventArgs(System.Collections.Generic.IEnumerable<string> failedSettingsList) { }
        public System.Collections.ObjectModel.ReadOnlyCollection<string> FailedSettingsList { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    public partial class UserValidatedEventArgs : System.EventArgs
    {
        public UserValidatedEventArgs(string username) { }
        public string UserName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
}
namespace System.Web.Compilation
{
    public partial interface IWcfReferenceReceiveContextInformation
    {
        void ReceiveImportContextInformation(System.Collections.Generic.IDictionary<string, byte[]> serviceReferenceExtensionFileContents, System.IServiceProvider serviceProvider);
    }
    public partial class WCFBuildProvider : System.Web.Compilation.BuildProvider
    {
        public WCFBuildProvider() { }
        public override void GenerateCode(System.Web.Compilation.AssemblyBuilder assemblyBuilder) { }
    }
}
namespace System.Web.Configuration
{
    public partial class Converter : System.Configuration.ConfigurationElement
    {
        public Converter() { }
        [System.Configuration.ConfigurationPropertyAttribute("name", IsRequired=true, IsKey=true, DefaultValue="")]
        [System.Configuration.StringValidatorAttribute(MinLength=1)]
        public string Name { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("type", IsRequired=true, DefaultValue="")]
        [System.Configuration.StringValidatorAttribute(MinLength=1)]
        public string Type { get { throw null; } set { } }
    }
    [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Web.Configuration.Converter))]
    public partial class ConvertersCollection : System.Configuration.ConfigurationElementCollection
    {
        public ConvertersCollection() { }
        public System.Web.Configuration.Converter this[int index] { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
        public void Add(System.Web.Configuration.Converter converter) { }
        public void Clear() { }
        protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
        protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
        public void Remove(System.Web.Configuration.Converter converter) { }
    }
    public sealed partial class ScriptingAuthenticationServiceSection : System.Configuration.ConfigurationSection
    {
        public ScriptingAuthenticationServiceSection() { }
        [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
        public bool Enabled { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("requireSSL", DefaultValue=false)]
        public bool RequireSSL { get { throw null; } set { } }
    }
    public sealed partial class ScriptingJsonSerializationSection : System.Configuration.ConfigurationSection
    {
        public ScriptingJsonSerializationSection() { }
        [System.Configuration.ConfigurationPropertyAttribute("converters", IsKey=true)]
        public System.Web.Configuration.ConvertersCollection Converters { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("maxJsonLength", DefaultValue=2097152)]
        public int MaxJsonLength { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("recursionLimit", DefaultValue=100)]
        public int RecursionLimit { get { throw null; } set { } }
    }
    public sealed partial class ScriptingProfileServiceSection : System.Configuration.ConfigurationSection
    {
        public ScriptingProfileServiceSection() { }
        [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
        public bool Enabled { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
        [System.Configuration.ConfigurationPropertyAttribute("readAccessProperties", DefaultValue=null)]
        public string[] ReadAccessProperties { get { throw null; } set { } }
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
        [System.Configuration.ConfigurationPropertyAttribute("writeAccessProperties", DefaultValue=null)]
        public string[] WriteAccessProperties { get { throw null; } set { } }
    }
    public sealed partial class ScriptingRoleServiceSection : System.Configuration.ConfigurationSection
    {
        public ScriptingRoleServiceSection() { }
        [System.Configuration.ConfigurationPropertyAttribute("enabled", DefaultValue=false)]
        public bool Enabled { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
    }
    public sealed partial class ScriptingScriptResourceHandlerSection : System.Configuration.ConfigurationSection
    {
        public ScriptingScriptResourceHandlerSection() { }
        [System.Configuration.ConfigurationPropertyAttribute("enableCaching", DefaultValue=true)]
        public bool EnableCaching { get { throw null; } set { } }
        [System.Configuration.ConfigurationPropertyAttribute("enableCompression", DefaultValue=true)]
        public bool EnableCompression { get { throw null; } set { } }
        protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
    }
    public sealed partial class ScriptingSectionGroup : System.Configuration.ConfigurationSectionGroup
    {
        public ScriptingSectionGroup() { }
        [System.Configuration.ConfigurationPropertyAttribute("scriptResourceHandler")]
        public System.Web.Configuration.ScriptingScriptResourceHandlerSection ScriptResourceHandler { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("webServices")]
        public System.Web.Configuration.ScriptingWebServicesSectionGroup WebServices { get { throw null; } }
    }
    public sealed partial class ScriptingWebServicesSectionGroup : System.Configuration.ConfigurationSectionGroup
    {
        public ScriptingWebServicesSectionGroup() { }
        [System.Configuration.ConfigurationPropertyAttribute("authenticationService")]
        public System.Web.Configuration.ScriptingAuthenticationServiceSection AuthenticationService { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("jsonSerialization")]
        public System.Web.Configuration.ScriptingJsonSerializationSection JsonSerialization { get { throw null; } }
        [System.Configuration.ConfigurationPropertyAttribute("profileService")]
        public System.Web.Configuration.ScriptingProfileServiceSection ProfileService { get { throw null; } }
        public System.Web.Configuration.ScriptingRoleServiceSection RoleService { get { throw null; } }
    }
    public sealed partial class SystemWebExtensionsSectionGroup : System.Configuration.ConfigurationSectionGroup
    {
        public SystemWebExtensionsSectionGroup() { }
        [System.Configuration.ConfigurationPropertyAttribute("scripting")]
        public System.Web.Configuration.ScriptingSectionGroup Scripting { get { throw null; } }
    }
}
namespace System.Web.DynamicData
{
    public enum DynamicDataSourceOperation
    {
        ContextCreate = 4,
        Delete = 0,
        Insert = 1,
        Select = 2,
        Update = 3,
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class DynamicValidatorEventArgs : System.EventArgs
    {
        public DynamicValidatorEventArgs(System.Exception exception, System.Web.DynamicData.DynamicDataSourceOperation operation) { }
        public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Web.DynamicData.DynamicDataSourceOperation Operation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial interface IDynamicDataSource : System.Web.UI.IDataSource
    {
        bool AutoGenerateWhereClause { get; set; }
        System.Type ContextType { get; set; }
        bool EnableDelete { get; set; }
        bool EnableInsert { get; set; }
        bool EnableUpdate { get; set; }
        string EntitySetName { get; set; }
        string Where { get; set; }
        System.Web.UI.WebControls.ParameterCollection WhereParameters { get; }
        event System.EventHandler<System.Web.DynamicData.DynamicValidatorEventArgs> Exception;
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial interface IDynamicValidatorException
    {
        System.Collections.Generic.IDictionary<string, System.Exception> InnerExceptions { get; }
    }
}
namespace System.Web.Handlers
{
    public partial class ScriptModule : System.Web.IHttpModule
    {
        public ScriptModule() { }
        protected virtual void Dispose() { }
        protected virtual void Init(System.Web.HttpApplication app) { }
        void System.Web.IHttpModule.Dispose() { }
        void System.Web.IHttpModule.Init(System.Web.HttpApplication context) { }
    }
    public partial class ScriptResourceHandler : System.Web.IHttpHandler
    {
        public ScriptResourceHandler() { }
        protected virtual bool IsReusable { get { throw null; } }
        bool System.Web.IHttpHandler.IsReusable { get { throw null; } }
        protected virtual void ProcessRequest(System.Web.HttpContext context) { }
        void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext context) { }
    }
}
namespace System.Web.Management
{
    public partial class WebServiceErrorEvent : System.Web.Management.WebRequestErrorEvent
    {
        protected internal WebServiceErrorEvent(string message, object eventSource, System.Exception exception) : base (default(string), default(object), default(int), default(System.Exception)) { }
        public static int WebServiceErrorEventCode { get { throw null; } }
    }
}
namespace System.Web.Query.Dynamic
{
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public abstract partial class DynamicClass
    {
        protected DynamicClass() { }
        public override string ToString() { throw null; }
    }
    public partial class ParseException : System.Exception
    {
        public ParseException(string message, int position) { }
        public int Position { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public override string ToString() { throw null; }
    }
}
namespace System.Web.Script
{
    public partial class AjaxFrameworkAssemblyAttribute : System.Attribute
    {
        public AjaxFrameworkAssemblyAttribute() { }
        protected internal virtual System.Reflection.Assembly GetDefaultAjaxFrameworkAssembly(System.Reflection.Assembly currentAssembly) { throw null; }
    }
}
namespace System.Web.Script.Serialization
{
    public abstract partial class JavaScriptConverter
    {
        protected JavaScriptConverter() { }
        public abstract System.Collections.Generic.IEnumerable<System.Type> SupportedTypes { get; }
        public abstract object Deserialize(System.Collections.Generic.IDictionary<string, object> dictionary, System.Type type, System.Web.Script.Serialization.JavaScriptSerializer serializer);
        public abstract System.Collections.Generic.IDictionary<string, object> Serialize(object obj, System.Web.Script.Serialization.JavaScriptSerializer serializer);
    }
    public partial class JavaScriptSerializer
    {
        public JavaScriptSerializer() { }
        public JavaScriptSerializer(System.Web.Script.Serialization.JavaScriptTypeResolver resolver) { }
        public int MaxJsonLength { get { throw null; } set { } }
        public int RecursionLimit { get { throw null; } set { } }
        public object ConvertToType(object obj, System.Type targetType) { throw null; }
        public T ConvertToType<T>(object obj) { throw null; }
        public object Deserialize(string input, System.Type targetType) { throw null; }
        public object DeserializeObject(string input) { throw null; }
        public T Deserialize<T>(string input) { throw null; }
        public void RegisterConverters(System.Collections.Generic.IEnumerable<System.Web.Script.Serialization.JavaScriptConverter> converters) { }
        public string Serialize(object obj) { throw null; }
        public void Serialize(object obj, System.Text.StringBuilder output) { }
    }
    public abstract partial class JavaScriptTypeResolver
    {
        protected JavaScriptTypeResolver() { }
        public abstract System.Type ResolveType(string id);
        public abstract string ResolveTypeId(System.Type type);
    }
    [System.AttributeUsageAttribute((System.AttributeTargets)(384))]
    public sealed partial class ScriptIgnoreAttribute : System.Attribute
    {
        public ScriptIgnoreAttribute() { }
        public bool ApplyToOverrides { get { throw null; } set { } }
    }
    public partial class SimpleTypeResolver : System.Web.Script.Serialization.JavaScriptTypeResolver
    {
        public SimpleTypeResolver() { }
        public override System.Type ResolveType(string id) { throw null; }
        public override string ResolveTypeId(System.Type type) { throw null; }
    }
}
namespace System.Web.Script.Services
{
    [System.AttributeUsageAttribute((System.AttributeTargets)(1092), AllowMultiple=true)]
    public sealed partial class GenerateScriptTypeAttribute : System.Attribute
    {
        public GenerateScriptTypeAttribute(System.Type type) { }
        public string ScriptTypeId { get { throw null; } set { } }
        public System.Type Type { get { throw null; } }
    }
    public static partial class ProxyGenerator
    {
        public static string GetClientProxyScript(System.Type type, string path, bool debug) { throw null; }
        public static string GetClientProxyScript(System.Type type, string path, bool debug, System.ServiceModel.Description.ServiceEndpoint serviceEndpoint) { throw null; }
    }
    public enum ResponseFormat
    {
        Json = 0,
        Xml = 1,
    }
    [System.AttributeUsageAttribute((System.AttributeTargets)(64))]
    public sealed partial class ScriptMethodAttribute : System.Attribute
    {
        public ScriptMethodAttribute() { }
        public System.Web.Script.Services.ResponseFormat ResponseFormat { get { throw null; } set { } }
        public bool UseHttpGet { get { throw null; } set { } }
        public bool XmlSerializeString { get { throw null; } set { } }
    }
    [System.AttributeUsageAttribute((System.AttributeTargets)(1028))]
    public sealed partial class ScriptServiceAttribute : System.Attribute
    {
        public ScriptServiceAttribute() { }
    }
}
namespace System.Web.UI
{
    public enum AjaxFrameworkMode
    {
        Disabled = 1,
        Enabled = 0,
        Explicit = 2,
    }
    public partial class AsyncPostBackErrorEventArgs : System.EventArgs
    {
        public AsyncPostBackErrorEventArgs(System.Exception exception) { }
        public System.Exception Exception { get { throw null; } }
    }
    public partial class AsyncPostBackTrigger : System.Web.UI.UpdatePanelControlTrigger
    {
        public AsyncPostBackTrigger() { }
        public new string ControlID { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string EventName { get { throw null; } set { } }
        protected internal override bool HasTriggered() { throw null; }
        protected internal override void Initialize() { }
        public void OnEvent(object sender, System.EventArgs e) { }
        public override string ToString() { throw null; }
    }
    [System.ComponentModel.DefaultPropertyAttribute("Path")]
    public partial class AuthenticationServiceManager
    {
        public AuthenticationServiceManager() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.NotifyParentPropertyAttribute(true)]
        public string Path { get { throw null; } set { } }
    }
    [System.ComponentModel.DefaultPropertyAttribute("Path")]
    public partial class CompositeScriptReference : System.Web.UI.ScriptReferenceBase
    {
        public CompositeScriptReference() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.EditorAttribute("System.Web.UI.Design.CollectionEditorBase, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.ComponentModel.NotifyParentPropertyAttribute(true)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ScriptReferenceCollection Scripts { get { throw null; } }
        protected internal override string GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip) { throw null; }
        protected internal override bool IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager) { throw null; }
        [System.ObsoleteAttribute("Use IsAjaxFrameworkScript(ScriptManager)")]
        protected internal override bool IsFromSystemWebExtensions() { throw null; }
    }
    public partial class CompositeScriptReferenceEventArgs : System.EventArgs
    {
        public CompositeScriptReferenceEventArgs(System.Web.UI.CompositeScriptReference compositeScript) { }
        public System.Web.UI.CompositeScriptReference CompositeScript { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.ComponentModel.DefaultPropertyAttribute("TargetControlID")]
    [System.Web.UI.NonVisualControlAttribute]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    public abstract partial class ExtenderControl : System.Web.UI.Control, System.Web.UI.IExtenderControl
    {
        protected ExtenderControl() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.IDReferencePropertyAttribute]
        public string TargetControlID { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override bool Visible { get { throw null; } set { } }
        protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors(System.Web.UI.Control targetControl);
        protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
        protected internal override void OnPreRender(System.EventArgs e) { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IExtenderControl.GetScriptDescriptors(System.Web.UI.Control targetControl) { throw null; }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IExtenderControl.GetScriptReferences() { throw null; }
    }
    public partial class HistoryEventArgs : System.EventArgs
    {
        public HistoryEventArgs(System.Collections.Specialized.NameValueCollection state) { }
        public System.Collections.Specialized.NameValueCollection State { get { throw null; } }
    }
    public partial interface IExtenderControl
    {
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors(System.Web.UI.Control targetControl);
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
    }
    public partial interface IScriptControl
    {
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors();
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
    }
    public partial class PostBackTrigger : System.Web.UI.UpdatePanelControlTrigger
    {
        public PostBackTrigger() { }
        public new string ControlID { get { throw null; } set { } }
        protected internal override bool HasTriggered() { throw null; }
        protected internal override void Initialize() { }
        public override string ToString() { throw null; }
    }
    [System.ComponentModel.DefaultPropertyAttribute("Path")]
    public partial class ProfileServiceManager
    {
        public ProfileServiceManager() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.NotifyParentPropertyAttribute(true)]
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
        public string[] LoadProperties { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.NotifyParentPropertyAttribute(true)]
        public string Path { get { throw null; } set { } }
    }
    public sealed partial class RegisteredArrayDeclaration
    {
        internal RegisteredArrayDeclaration() { }
        public System.Web.UI.Control Control { get { throw null; } }
        public string Name { get { throw null; } }
        public string Value { get { throw null; } }
    }
    public sealed partial class RegisteredDisposeScript
    {
        internal RegisteredDisposeScript() { }
        public System.Web.UI.Control Control { get { throw null; } }
        public string Script { get { throw null; } }
    }
    public sealed partial class RegisteredExpandoAttribute
    {
        internal RegisteredExpandoAttribute() { }
        public System.Web.UI.Control Control { get { throw null; } }
        public string ControlId { get { throw null; } }
        public bool Encode { get { throw null; } }
        public string Name { get { throw null; } }
        public string Value { get { throw null; } }
    }
    public sealed partial class RegisteredHiddenField
    {
        internal RegisteredHiddenField() { }
        public System.Web.UI.Control Control { get { throw null; } }
        public string InitialValue { get { throw null; } }
        public string Name { get { throw null; } }
    }
    public sealed partial class RegisteredScript
    {
        internal RegisteredScript() { }
        public bool AddScriptTags { get { throw null; } }
        public System.Web.UI.Control Control { get { throw null; } }
        public string Key { get { throw null; } }
        public string Script { get { throw null; } }
        public System.Web.UI.RegisteredScriptType ScriptType { get { throw null; } }
        public System.Type Type { get { throw null; } }
        public string Url { get { throw null; } }
    }
    public enum RegisteredScriptType
    {
        ClientScriptBlock = 1,
        ClientScriptInclude = 0,
        ClientStartupScript = 2,
        OnSubmitStatement = 3,
    }
    public partial class RoleServiceManager
    {
        public RoleServiceManager() { }
        public bool LoadRoles { get { throw null; } set { } }
        public string Path { get { throw null; } set { } }
    }
    public partial class ScriptBehaviorDescriptor : System.Web.UI.ScriptComponentDescriptor
    {
        public ScriptBehaviorDescriptor(string type, string elementID) : base (default(string)) { }
        public override string ClientID { get { throw null; } }
        public string ElementID { get { throw null; } }
        public string Name { get { throw null; } set { } }
        protected internal override string GetScript() { throw null; }
    }
    public partial class ScriptComponentDescriptor : System.Web.UI.ScriptDescriptor
    {
        public ScriptComponentDescriptor(string type) { }
        public virtual string ClientID { get { throw null; } }
        public virtual string ID { get { throw null; } set { } }
        public string Type { get { throw null; } set { } }
        public void AddComponentProperty(string name, string componentID) { }
        public void AddElementProperty(string name, string elementID) { }
        public void AddEvent(string name, string handler) { }
        public void AddProperty(string name, object value) { }
        public void AddScriptProperty(string name, string script) { }
        protected internal override string GetScript() { throw null; }
    }
    public abstract partial class ScriptControl : System.Web.UI.WebControls.WebControl, System.Web.UI.IScriptControl
    {
        protected ScriptControl() { }
        protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors();
        protected abstract System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences();
        protected internal override void OnPreRender(System.EventArgs e) { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IScriptControl.GetScriptDescriptors() { throw null; }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IScriptControl.GetScriptReferences() { throw null; }
    }
    public partial class ScriptControlDescriptor : System.Web.UI.ScriptComponentDescriptor
    {
        public ScriptControlDescriptor(string type, string elementID) : base (default(string)) { }
        public override string ClientID { get { throw null; } }
        public string ElementID { get { throw null; } }
        public override string ID { get { throw null; } set { } }
    }
    public abstract partial class ScriptDescriptor
    {
        protected ScriptDescriptor() { }
        protected internal abstract string GetScript();
    }
    [System.ComponentModel.DefaultPropertyAttribute("Scripts")]
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.ScriptManagerDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.Web.UI.NonVisualControlAttribute]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class ScriptManager : System.Web.UI.Control, System.Web.UI.IPostBackDataHandler, System.Web.UI.IPostBackEventHandler
    {
        public ScriptManager() { }
        public virtual System.Reflection.Assembly AjaxFrameworkAssembly { get { throw null; } }
        public System.Web.UI.AjaxFrameworkMode AjaxFrameworkMode { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool AllowCustomErrorsRedirect { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string AsyncPostBackErrorMessage { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public string AsyncPostBackSourceElementID { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(90)]
        public int AsyncPostBackTimeout { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.AuthenticationServiceManager AuthenticationService { get { throw null; } }
        public string ClientNavigateHandler { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.CompositeScriptReference CompositeScript { get { throw null; } }
        public virtual string EmptyPageUrl { get { throw null; } set { } }
        public bool EnableCdn { get { throw null; } set { } }
        public bool EnableCdnFallback { get { throw null; } set { } }
        public bool EnableHistory { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnablePageMethods { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool EnablePartialRendering { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnableScriptGlobalization { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnableScriptLocalization { get { throw null; } set { } }
        public bool EnableSecureHistoryState { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsDebuggingEnabled { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsInAsyncPostBack { get { throw null; } }
        public bool IsNavigating { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool LoadScriptsBeforeUI { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ProfileServiceManager ProfileService { get { throw null; } }
        public System.Web.UI.RoleServiceManager RoleService { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        public System.Web.UI.ScriptMode ScriptMode { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string ScriptPath { get { throw null; } set { } }
        public static System.Web.UI.ScriptResourceMapping ScriptResourceMapping { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ScriptReferenceCollection Scripts { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ServiceReferenceCollection Services { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool SupportsPartialRendering { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override bool Visible { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.AsyncPostBackErrorEventArgs> AsyncPostBackError { add { } remove { } }
        public event System.EventHandler<System.Web.UI.HistoryEventArgs> Navigate { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.CompositeScriptReferenceEventArgs> ResolveCompositeScriptReference { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.ScriptReferenceEventArgs> ResolveScriptReference { add { } remove { } }
        public void AddHistoryPoint(System.Collections.Specialized.NameValueCollection state, string title) { }
        public void AddHistoryPoint(string key, string value) { }
        public void AddHistoryPoint(string key, string value, string title) { }
        public static System.Web.UI.ScriptManager GetCurrent(System.Web.UI.Page page) { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredArrayDeclaration> GetRegisteredArrayDeclarations() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredScript> GetRegisteredClientScriptBlocks() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredDisposeScript> GetRegisteredDisposeScripts() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredExpandoAttribute> GetRegisteredExpandoAttributes() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredHiddenField> GetRegisteredHiddenFields() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredScript> GetRegisteredOnSubmitStatements() { throw null; }
        public System.Collections.ObjectModel.ReadOnlyCollection<System.Web.UI.RegisteredScript> GetRegisteredStartupScripts() { throw null; }
        public string GetStateString() { throw null; }
        protected virtual bool LoadPostData(string postDataKey, System.Collections.Specialized.NameValueCollection postCollection) { throw null; }
        protected internal virtual void OnAsyncPostBackError(System.Web.UI.AsyncPostBackErrorEventArgs e) { }
        protected internal override void OnInit(System.EventArgs e) { }
        protected internal override void OnPreRender(System.EventArgs e) { }
        protected virtual void OnResolveCompositeScriptReference(System.Web.UI.CompositeScriptReferenceEventArgs e) { }
        protected virtual void OnResolveScriptReference(System.Web.UI.ScriptReferenceEventArgs e) { }
        protected virtual void RaisePostBackEvent(string eventArgument) { }
        protected virtual void RaisePostDataChangedEvent() { }
        public static void RegisterArrayDeclaration(System.Web.UI.Control control, string arrayName, string arrayValue) { }
        public static void RegisterArrayDeclaration(System.Web.UI.Page page, string arrayName, string arrayValue) { }
        public void RegisterAsyncPostBackControl(System.Web.UI.Control control) { }
        public static void RegisterClientScriptBlock(System.Web.UI.Control control, System.Type type, string key, string script, bool addScriptTags) { }
        public static void RegisterClientScriptBlock(System.Web.UI.Page page, System.Type type, string key, string script, bool addScriptTags) { }
        public static void RegisterClientScriptInclude(System.Web.UI.Control control, System.Type type, string key, string url) { }
        public static void RegisterClientScriptInclude(System.Web.UI.Page page, System.Type type, string key, string url) { }
        public static void RegisterClientScriptResource(System.Web.UI.Control control, System.Type type, string resourceName) { }
        public static void RegisterClientScriptResource(System.Web.UI.Page page, System.Type type, string resourceName) { }
        public void RegisterDataItem(System.Web.UI.Control control, string dataItem) { }
        public void RegisterDataItem(System.Web.UI.Control control, string dataItem, bool isJsonSerialized) { }
        public void RegisterDispose(System.Web.UI.Control control, string disposeScript) { }
        public static void RegisterExpandoAttribute(System.Web.UI.Control control, string controlId, string attributeName, string attributeValue, bool encode) { }
        public void RegisterExtenderControl<TExtenderControl>(TExtenderControl extenderControl, System.Web.UI.Control targetControl) where TExtenderControl : System.Web.UI.Control, System.Web.UI.IExtenderControl { }
        public static void RegisterHiddenField(System.Web.UI.Control control, string hiddenFieldName, string hiddenFieldInitialValue) { }
        public static void RegisterHiddenField(System.Web.UI.Page page, string hiddenFieldName, string hiddenFieldInitialValue) { }
        public static void RegisterNamedClientScriptResource(System.Web.UI.Control control, string resourceName) { }
        public static void RegisterNamedClientScriptResource(System.Web.UI.Page page, string resourceName) { }
        public static void RegisterOnSubmitStatement(System.Web.UI.Control control, System.Type type, string key, string script) { }
        public static void RegisterOnSubmitStatement(System.Web.UI.Page page, System.Type type, string key, string script) { }
        public void RegisterPostBackControl(System.Web.UI.Control control) { }
        public void RegisterScriptControl<TScriptControl>(TScriptControl scriptControl) where TScriptControl : System.Web.UI.Control, System.Web.UI.IScriptControl { }
        public void RegisterScriptDescriptors(System.Web.UI.IExtenderControl extenderControl) { }
        public void RegisterScriptDescriptors(System.Web.UI.IScriptControl scriptControl) { }
        public static void RegisterStartupScript(System.Web.UI.Control control, System.Type type, string key, string script, bool addScriptTags) { }
        public static void RegisterStartupScript(System.Web.UI.Page page, System.Type type, string key, string script, bool addScriptTags) { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        public void SetFocus(string clientID) { }
        public void SetFocus(System.Web.UI.Control control) { }
        bool System.Web.UI.IPostBackDataHandler.LoadPostData(string postDataKey, System.Collections.Specialized.NameValueCollection postCollection) { throw null; }
        void System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() { }
        void System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument) { }
    }
    [System.ComponentModel.DefaultPropertyAttribute("Scripts")]
    [System.Web.UI.NonVisualControlAttribute]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    public partial class ScriptManagerProxy : System.Web.UI.Control
    {
        public ScriptManagerProxy() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.AuthenticationServiceManager AuthenticationService { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.CompositeScriptReference CompositeScript { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ProfileServiceManager ProfileService { get { throw null; } }
        public System.Web.UI.RoleServiceManager RoleService { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ScriptReferenceCollection Scripts { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ServiceReferenceCollection Services { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override bool Visible { get { throw null; } set { } }
        public event System.EventHandler<System.Web.UI.HistoryEventArgs> Navigate { add { } remove { } }
        protected internal override void OnInit(System.EventArgs e) { }
    }
    public enum ScriptMode
    {
        Auto = 0,
        Debug = 2,
        Inherit = 1,
        Release = 3,
    }
    [System.ComponentModel.DefaultPropertyAttribute("Path")]
    public partial class ScriptReference : System.Web.UI.ScriptReferenceBase
    {
        public ScriptReference() { }
        public ScriptReference(string path) { }
        public ScriptReference(string name, string assembly) { }
        public string Assembly { get { throw null; } set { } }
        public bool IgnoreScriptPath { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        [System.MonoTODOAttribute("Compression not supported yet.")]
        protected internal override string GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip) { throw null; }
        protected internal override bool IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager) { throw null; }
        [System.ObsoleteAttribute("Use IsAjaxFrameworkScript(ScriptManager)")]
        protected internal override bool IsFromSystemWebExtensions() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public abstract partial class ScriptReferenceBase
    {
        protected ScriptReferenceBase() { }
        public bool NotifyScriptLoaded { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public string Path { get { throw null; } set { } }
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
        public string[] ResourceUICultures { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Web.UI.ScriptMode ScriptMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        protected internal abstract string GetUrl(System.Web.UI.ScriptManager scriptManager, bool zip);
        protected internal virtual bool IsAjaxFrameworkScript(System.Web.UI.ScriptManager scriptManager) { throw null; }
        [System.ObsoleteAttribute("Use IsAjaxFrameworkScript(ScriptManager)")]
        protected internal abstract bool IsFromSystemWebExtensions();
        protected static string ReplaceExtension(string pathOrName) { throw null; }
    }
    public partial class ScriptReferenceCollection : System.Collections.ObjectModel.Collection<System.Web.UI.ScriptReference>
    {
        public ScriptReferenceCollection() { }
    }
    public partial class ScriptReferenceEventArgs : System.EventArgs
    {
        public ScriptReferenceEventArgs(System.Web.UI.ScriptReference script) { }
        public System.Web.UI.ScriptReference Script { get { throw null; } }
    }
    [System.AttributeUsageAttribute((System.AttributeTargets)(1), AllowMultiple=true)]
    public sealed partial class ScriptResourceAttribute : System.Attribute
    {
        public ScriptResourceAttribute(string scriptName) { }
        public ScriptResourceAttribute(string scriptName, string stringResourceName, string stringResourceClientTypeName) { }
        public string ScriptName { get { throw null; } }
        public string ScriptResourceName { get { throw null; } }
        public string StringResourceClientTypeName { get { throw null; } }
        public string StringResourceName { get { throw null; } }
        public string TypeName { get { throw null; } }
    }
    public partial class ScriptResourceDefinition
    {
        public ScriptResourceDefinition() { }
        public string CdnDebugPath { get { throw null; } set { } }
        public string CdnPath { get { throw null; } set { } }
        public bool CdnSupportsSecureConnection { get { throw null; } set { } }
        public string DebugPath { get { throw null; } set { } }
        public string LoadSuccessExpression { get { throw null; } set { } }
        public string Path { get { throw null; } set { } }
        public System.Reflection.Assembly ResourceAssembly { get { throw null; } set { } }
        public string ResourceName { get { throw null; } set { } }
    }
    public partial class ScriptResourceMapping
    {
        public ScriptResourceMapping() { }
        public void AddDefinition(string name, System.Reflection.Assembly assembly, System.Web.UI.ScriptResourceDefinition definition) { }
        public void AddDefinition(string name, System.Web.UI.ScriptResourceDefinition definition) { }
        public void Clear() { }
        public System.Web.UI.ScriptResourceDefinition GetDefinition(string name) { throw null; }
        public System.Web.UI.ScriptResourceDefinition GetDefinition(string name, System.Reflection.Assembly assembly) { throw null; }
        public System.Web.UI.ScriptResourceDefinition GetDefinition(System.Web.UI.ScriptReference scriptReference) { throw null; }
        public System.Web.UI.ScriptResourceDefinition RemoveDefinition(string name) { throw null; }
        public System.Web.UI.ScriptResourceDefinition RemoveDefinition(string name, System.Reflection.Assembly assembly) { throw null; }
    }
    [System.ComponentModel.DefaultPropertyAttribute("Path")]
    public partial class ServiceReference
    {
        public ServiceReference() { }
        public ServiceReference(string path) { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public virtual bool InlineScript { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public virtual string Path { get { throw null; } set { } }
        protected internal virtual string GetProxyScript(System.Web.UI.ScriptManager scriptManager, System.Web.UI.Control containingControl) { throw null; }
        protected internal virtual string GetProxyUrl(System.Web.UI.ScriptManager scriptManager, System.Web.UI.Control containingControl) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class ServiceReferenceCollection : System.Collections.ObjectModel.Collection<System.Web.UI.ServiceReference>
    {
        public ServiceReferenceCollection() { }
    }
    [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=true)]
    public sealed partial class TargetControlTypeAttribute : System.Attribute
    {
        public TargetControlTypeAttribute(System.Type targetControlType) { }
        public System.Type TargetControlType { get { throw null; } }
        public override object TypeId { get { throw null; } }
    }
    [System.ComponentModel.DefaultEventAttribute("Tick")]
    [System.ComponentModel.DefaultPropertyAttribute("Interval")]
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.TimerDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.Web.UI.NonVisualControlAttribute]
    [System.Web.UI.SupportsEventValidationAttribute]
    public partial class Timer : System.Web.UI.Control, System.Web.UI.IPostBackEventHandler, System.Web.UI.IScriptControl
    {
        public Timer() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool Enabled { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(60000)]
        public int Interval { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override bool Visible { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.EventArgs> Tick { add { } remove { } }
        protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors() { throw null; }
        protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences() { throw null; }
        protected internal override void OnPreRender(System.EventArgs e) { }
        protected virtual void OnTick(System.EventArgs e) { }
        protected virtual void RaisePostBackEvent(string eventArgument) { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        void System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument) { }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IScriptControl.GetScriptDescriptors() { throw null; }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IScriptControl.GetScriptReferences() { throw null; }
    }
    [System.ComponentModel.DefaultPropertyAttribute("Triggers")]
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.UpdatePanelDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class UpdatePanel : System.Web.UI.Control, System.Web.UI.IAttributeAccessor
    {
        public UpdatePanel() { }
        public System.Web.UI.AttributeCollection Attributes { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool ChildrenAsTriggers { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateInstanceAttribute((System.Web.UI.TemplateInstance)(1))]
        public System.Web.UI.ITemplate ContentTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Web.UI.Control ContentTemplateContainer { get { throw null; } }
        public sealed override System.Web.UI.ControlCollection Controls { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsInPartialRendering { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Layout")]
        public System.Web.UI.UpdatePanelRenderMode RenderMode { get { throw null; } set { } }
        protected internal virtual bool RequiresUpdate { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.UpdatePanelTriggerCollection Triggers { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute((System.Web.UI.UpdatePanelUpdateMode)(0))]
        public System.Web.UI.UpdatePanelUpdateMode UpdateMode { get { throw null; } set { } }
        protected virtual System.Web.UI.Control CreateContentTemplateContainer() { throw null; }
        protected sealed override System.Web.UI.ControlCollection CreateControlCollection() { throw null; }
        protected internal virtual void Initialize() { }
        protected internal override void OnInit(System.EventArgs e) { }
        protected internal override void OnLoad(System.EventArgs e) { }
        protected internal override void OnPreRender(System.EventArgs e) { }
        protected internal override void OnUnload(System.EventArgs e) { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        protected internal override void RenderChildren(System.Web.UI.HtmlTextWriter writer) { }
        string System.Web.UI.IAttributeAccessor.GetAttribute(string key) { throw null; }
        void System.Web.UI.IAttributeAccessor.SetAttribute(string key, string value) { }
        public void Update() { }
    }
    public abstract partial class UpdatePanelControlTrigger : System.Web.UI.UpdatePanelTrigger
    {
        protected UpdatePanelControlTrigger() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.IDReferencePropertyAttribute]
        public string ControlID { get { throw null; } set { } }
        protected System.Web.UI.Control FindTargetControl(bool searchNamingContainers) { throw null; }
    }
    public enum UpdatePanelRenderMode
    {
        Block = 0,
        Inline = 1,
    }
    public abstract partial class UpdatePanelTrigger
    {
        protected UpdatePanelTrigger() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Web.UI.UpdatePanel Owner { get { throw null; } }
        protected internal abstract bool HasTriggered();
        protected internal virtual void Initialize() { }
    }
    public partial class UpdatePanelTriggerCollection : System.Collections.ObjectModel.Collection<System.Web.UI.UpdatePanelTrigger>
    {
        public UpdatePanelTriggerCollection(System.Web.UI.UpdatePanel owner) { }
        public System.Web.UI.UpdatePanel Owner { get { throw null; } }
        protected override void ClearItems() { }
        protected override void InsertItem(int index, System.Web.UI.UpdatePanelTrigger item) { }
        protected override void RemoveItem(int index) { }
        protected override void SetItem(int index, System.Web.UI.UpdatePanelTrigger item) { }
    }
    public enum UpdatePanelUpdateMode
    {
        Always = 0,
        Conditional = 1,
    }
    [System.ComponentModel.DefaultPropertyAttribute("AssociatedUpdatePanelID")]
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.UpdateProgressDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    public partial class UpdateProgress : System.Web.UI.Control, System.Web.UI.IAttributeAccessor, System.Web.UI.IScriptControl
    {
        public UpdateProgress() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.IDReferencePropertyAttribute(typeof(System.Web.UI.UpdatePanel))]
        public string AssociatedUpdatePanelID { get { throw null; } set { } }
        public System.Web.UI.AttributeCollection Attributes { get { throw null; } }
        public override System.Web.UI.ControlCollection Controls { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(500)]
        public int DisplayAfter { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool DynamicLayout { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.ITemplate ProgressTemplate { get { throw null; } set { } }
        protected internal override void CreateChildControls() { }
        public override void DataBind() { }
        protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors() { throw null; }
        protected virtual System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences() { throw null; }
        protected internal override void OnPreRender(System.EventArgs e) { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        string System.Web.UI.IAttributeAccessor.GetAttribute(string key) { throw null; }
        void System.Web.UI.IAttributeAccessor.SetAttribute(string key, string value) { }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> System.Web.UI.IScriptControl.GetScriptDescriptors() { throw null; }
        System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> System.Web.UI.IScriptControl.GetScriptReferences() { throw null; }
    }
}
namespace System.Web.UI.WebControls
{
    public abstract partial class ContextDataSource : System.Web.UI.WebControls.QueryableDataSource
    {
        protected ContextDataSource() { }
        public virtual string ContextTypeName { get { throw null; } set { } }
        protected string EntitySetName { get { throw null; } set { } }
        public virtual string EntityTypeName { get { throw null; } set { } }
    }
    public partial class ContextDataSourceContextData
    {
        public ContextDataSourceContextData() { }
        public ContextDataSourceContextData(object context) { }
        public object Context { get { throw null; } set { } }
        public object EntitySet { get { throw null; } set { } }
    }
    public abstract partial class ContextDataSourceView : System.Web.UI.WebControls.QueryableDataSourceView
    {
        protected static readonly object EventContextCreated;
        protected static readonly object EventContextCreating;
        protected static readonly object EventContextDisposing;
        protected ContextDataSourceView(System.Web.UI.DataSourceControl owner, string viewName, System.Web.HttpContext context) : base (default(System.Web.UI.DataSourceControl), default(string), default(System.Web.HttpContext)) { }
        protected object Context { get { throw null; } set { } }
        public virtual System.Type ContextType { get { throw null; } }
        public virtual string ContextTypeName { get { throw null; } set { } }
        protected object EntitySet { get { throw null; } }
        public string EntitySetName { get { throw null; } set { } }
        protected System.Type EntitySetType { get { throw null; } }
        protected override System.Type EntityType { get { throw null; } }
        public string EntityTypeName { get { throw null; } set { } }
        protected virtual System.Web.UI.WebControls.ContextDataSourceContextData CreateContext(System.Web.UI.DataSourceOperation operation) { throw null; }
        protected void DisposeContext() { }
        protected virtual void DisposeContext(object dataContext) { }
        protected override int ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
        protected override int ExecuteInsert(System.Collections.IDictionary values) { throw null; }
        protected override int ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
        protected virtual System.Type GetDataObjectType(System.Type type) { throw null; }
        protected virtual System.Type GetEntitySetType() { throw null; }
        protected override object GetSource(System.Web.UI.WebControls.QueryContext context) { throw null; }
    }
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.WebControls.DataPagerDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.ComponentModel.ToolboxItemFilterAttribute("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", (System.ComponentModel.ToolboxItemFilterType)(3))]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    [System.Web.UI.SupportsEventValidationAttribute]
    [System.Web.UI.ThemeableAttribute(true)]
    public partial class DataPager : System.Web.UI.Control, System.Web.UI.IAttributeAccessor, System.Web.UI.INamingContainer, System.Web.UI.WebControls.ICompositeControlDesignerAccessor
    {
        public DataPager() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public System.Web.UI.AttributeCollection Attributes { get { throw null; } }
        public override System.Web.UI.ControlCollection Controls { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Default")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.EditorAttribute("System.Web.UI.Design.WebControls.DataPagerFieldTypeEditor, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", typeof(System.Drawing.Design.UITypeEditor))]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public virtual System.Web.UI.WebControls.DataPagerFieldCollection Fields { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public int MaximumRows { get { throw null; } }
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.IDReferencePropertyAttribute(typeof(System.Web.UI.WebControls.IPageableItemContainer))]
        [System.Web.UI.ThemeableAttribute(false)]
        public virtual string PagedControlID { get { throw null; } set { } }
        [System.ComponentModel.DefaultValueAttribute(10)]
        public int PageSize { get { throw null; } set { } }
        [System.ComponentModel.DefaultValueAttribute("")]
        public string QueryStringField { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public int StartRowIndex { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        protected virtual System.Web.UI.HtmlTextWriterTag TagKey { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public int TotalRowCount { get { throw null; } }
        protected virtual void AddAttributesToRender(System.Web.UI.HtmlTextWriter writer) { }
        protected virtual void ConnectToEvents(System.Web.UI.WebControls.IPageableItemContainer container) { }
        protected virtual void CreatePagerFields() { }
        public override void DataBind() { }
        protected virtual System.Web.UI.WebControls.IPageableItemContainer FindPageableItemContainer() { throw null; }
        protected internal override void LoadControlState(object savedState) { }
        protected override void LoadViewState(object savedState) { }
        protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
        protected internal override void OnInit(System.EventArgs e) { }
        protected internal override void OnLoad(System.EventArgs e) { }
        protected virtual void OnTotalRowCountAvailable(object sender, System.Web.UI.WebControls.PageEventArgs e) { }
        protected virtual void RecreateChildControls() { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        public virtual void RenderBeginTag(System.Web.UI.HtmlTextWriter writer) { }
        protected virtual void RenderContents(System.Web.UI.HtmlTextWriter writer) { }
        protected internal override object SaveControlState() { throw null; }
        protected override object SaveViewState() { throw null; }
        public virtual void SetPageProperties(int startRowIndex, int maximumRows, bool databind) { }
        string System.Web.UI.IAttributeAccessor.GetAttribute(string name) { throw null; }
        void System.Web.UI.IAttributeAccessor.SetAttribute(string name, string value) { }
        void System.Web.UI.WebControls.ICompositeControlDesignerAccessor.RecreateChildControls() { }
        protected override void TrackViewState() { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class DataPagerCommandEventArgs : System.Web.UI.WebControls.CommandEventArgs
    {
        public DataPagerCommandEventArgs(System.Web.UI.WebControls.DataPagerField pagerField, int totalRowCount, System.Web.UI.WebControls.CommandEventArgs originalArgs, System.Web.UI.WebControls.DataPagerFieldItem item) : base (default(System.Web.UI.WebControls.CommandEventArgs)) { }
        public System.Web.UI.WebControls.DataPagerFieldItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public int NewMaximumRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int NewStartRowIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Web.UI.WebControls.DataPagerField PagerField { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public int TotalRowCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public abstract partial class DataPagerField : System.Web.UI.IStateManager
    {
        protected DataPagerField() { }
        protected System.Web.UI.WebControls.DataPager DataPager { get { throw null; } }
        protected bool IsTrackingViewState { get { throw null; } }
        protected bool QueryStringHandled { get { throw null; } set { } }
        protected string QueryStringValue { get { throw null; } }
        bool System.Web.UI.IStateManager.IsTrackingViewState { get { throw null; } }
        protected System.Web.UI.StateBag ViewState { get { throw null; } }
        public bool Visible { get { throw null; } set { } }
        protected internal System.Web.UI.WebControls.DataPagerField CloneField() { throw null; }
        protected virtual void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
        public abstract void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex);
        protected abstract System.Web.UI.WebControls.DataPagerField CreateField();
        protected string GetQueryStringNavigateUrl(int pageNumber) { throw null; }
        public abstract void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e);
        protected virtual void LoadViewState(object savedState) { }
        protected virtual void OnFieldChanged() { }
        protected virtual object SaveViewState() { throw null; }
        void System.Web.UI.IStateManager.LoadViewState(object state) { }
        object System.Web.UI.IStateManager.SaveViewState() { throw null; }
        void System.Web.UI.IStateManager.TrackViewState() { }
        protected virtual void TrackViewState() { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class DataPagerFieldCollection : System.Web.UI.StateManagedCollection
    {
        public DataPagerFieldCollection(System.Web.UI.WebControls.DataPager dataPager) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Web.UI.WebControls.DataPagerField this[int index] { get { throw null; } }
        public event System.EventHandler FieldsChanged { add { } remove { } }
        public void Add(System.Web.UI.WebControls.DataPagerField field) { }
        public System.Web.UI.WebControls.DataPagerFieldCollection CloneFields(System.Web.UI.WebControls.DataPager pager) { throw null; }
        public bool Contains(System.Web.UI.WebControls.DataPagerField field) { throw null; }
        public void CopyTo(System.Web.UI.WebControls.DataPagerField[] array, int index) { }
        protected override object CreateKnownType(int index) { throw null; }
        protected override System.Type[] GetKnownTypes() { throw null; }
        public int IndexOf(System.Web.UI.WebControls.DataPagerField field) { throw null; }
        public void Insert(int index, System.Web.UI.WebControls.DataPagerField field) { }
        protected override void OnClearComplete() { }
        protected override void OnInsertComplete(int index, object value) { }
        protected override void OnRemoveComplete(int index, object value) { }
        protected override void OnValidate(object o) { }
        public void Remove(System.Web.UI.WebControls.DataPagerField field) { }
        public void RemoveAt(int index) { }
        protected override void SetDirtyObject(object o) { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class DataPagerFieldCommandEventArgs : System.Web.UI.WebControls.CommandEventArgs
    {
        public DataPagerFieldCommandEventArgs(System.Web.UI.WebControls.DataPagerFieldItem item, object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs) : base (default(System.Web.UI.WebControls.CommandEventArgs)) { }
        public object CommandSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Web.UI.WebControls.DataPagerFieldItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class DataPagerFieldItem : System.Web.UI.Control, System.Web.UI.INamingContainer
    {
        public DataPagerFieldItem(System.Web.UI.WebControls.DataPagerField field, System.Web.UI.WebControls.DataPager pager) { }
        public System.Web.UI.WebControls.DataPager Pager { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Web.UI.WebControls.DataPagerField PagerField { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
    }
    public enum InsertItemPosition
    {
        FirstItem = 1,
        LastItem = 2,
        None = 0,
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial interface IPageableItemContainer
    {
        int MaximumRows { get; }
        int StartRowIndex { get; }
        event System.EventHandler<System.Web.UI.WebControls.PageEventArgs> TotalRowCountAvailable;
        void SetPageProperties(int startRowIndex, int maximumRows, bool databind);
    }
    public partial interface IQueryableDataSource : System.Web.UI.IDataSource
    {
        event System.EventHandler<System.Web.UI.WebControls.QueryCreatedEventArgs> QueryCreated;
        void RaiseViewChanged();
    }
    [System.ComponentModel.DefaultEventAttribute("Selecting")]
    [System.ComponentModel.DefaultPropertyAttribute("ContextTypeName")]
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.WebControls.LinqDataSourceDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.ComponentModel.ToolboxItemFilterAttribute("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", (System.ComponentModel.ToolboxItemFilterType)(3))]
    [System.Web.UI.ParseChildrenAttribute(true)]
    [System.Web.UI.PersistChildrenAttribute(false)]
    public partial class LinqDataSource : System.Web.UI.WebControls.ContextDataSource, System.Web.DynamicData.IDynamicDataSource, System.Web.UI.IDataSource
    {
        public LinqDataSource() { }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool AutoGenerateOrderByClause { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool AutoGenerateWhereClause { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool AutoPage { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool AutoSort { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public override string ContextTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection DeleteParameters { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnableDelete { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnableInsert { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnableObjectTracking { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool EnableUpdate { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string GroupBy { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection GroupByParameters { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection InsertParameters { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string OrderBy { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection OrderByParameters { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string OrderGroupsBy { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection OrderGroupsByParameters { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string Select { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection SelectParameters { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public bool StoreOriginalValuesInViewState { get { throw null; } set { } }
        [System.MonoTODOAttribute("looks like we need System.Web.Query.Dynamic stuff or alternative")]
        System.Type System.Web.DynamicData.IDynamicDataSource.ContextType { get { throw null; } set { } }
        string System.Web.DynamicData.IDynamicDataSource.EntitySetName { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string TableName { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection UpdateParameters { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        public string Where { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.MergablePropertyAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public System.Web.UI.WebControls.ParameterCollection WhereParameters { get { throw null; } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> ContextCreated { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceContextEventArgs> ContextCreating { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs> ContextDisposing { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Deleted { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs> Deleting { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Inserted { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceInsertEventArgs> Inserting { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Selected { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceSelectEventArgs> Selecting { add { } remove { } }
        event System.EventHandler<System.Web.DynamicData.DynamicValidatorEventArgs> System.Web.DynamicData.IDynamicDataSource.Exception { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Updated { add { } remove { } }
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs> Updating { add { } remove { } }
        protected override System.Web.UI.WebControls.QueryableDataSourceView CreateQueryableView() { throw null; }
        protected virtual System.Web.UI.WebControls.LinqDataSourceView CreateView() { throw null; }
        public int Delete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
        public int Insert(System.Collections.IDictionary values) { throw null; }
        protected internal override void OnInit(System.EventArgs e) { }
        protected internal override void OnUnload(System.EventArgs e) { }
        public int Update(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceContextEventArgs : System.EventArgs
    {
        public LinqDataSourceContextEventArgs() { }
        public LinqDataSourceContextEventArgs(System.Web.UI.DataSourceOperation operation) { }
        public object ObjectInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Web.UI.DataSourceOperation Operation { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceDeleteEventArgs : System.ComponentModel.CancelEventArgs
    {
        public LinqDataSourceDeleteEventArgs(object originalObject) { }
        public LinqDataSourceDeleteEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception) { }
        public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public object OriginalObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceDisposeEventArgs : System.ComponentModel.CancelEventArgs
    {
        public LinqDataSourceDisposeEventArgs(object instance) { }
        public object ObjectInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceInsertEventArgs : System.ComponentModel.CancelEventArgs
    {
        public LinqDataSourceInsertEventArgs(object newObject) { }
        public LinqDataSourceInsertEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception) { }
        public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public object NewObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceSelectEventArgs : System.ComponentModel.CancelEventArgs
    {
        public LinqDataSourceSelectEventArgs(System.Web.UI.DataSourceSelectArguments arguments, System.Collections.Generic.IDictionary<string, object> whereParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string, object> groupByParameters, System.Collections.Generic.IDictionary<string, object> orderGroupsByParameters, System.Collections.Generic.IDictionary<string, object> selectParameters) { }
        public System.Web.UI.DataSourceSelectArguments Arguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> GroupByParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary OrderByParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> OrderGroupsByParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public object Result { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Collections.Generic.IDictionary<string, object> SelectParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> WhereParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceStatusEventArgs : System.EventArgs
    {
        public LinqDataSourceStatusEventArgs(System.Exception exception) { }
        public LinqDataSourceStatusEventArgs(object result) { }
        public LinqDataSourceStatusEventArgs(object result, int totalRowCount) { }
        public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public object Result { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public int TotalRowCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceUpdateEventArgs : System.ComponentModel.CancelEventArgs
    {
        public LinqDataSourceUpdateEventArgs(object originalObject, object newObject) { }
        public LinqDataSourceUpdateEventArgs(System.Web.UI.WebControls.LinqDataSourceValidationException exception) { }
        public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public object NewObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public object OriginalObject { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.SerializableAttribute]
    public partial class LinqDataSourceValidationException : System.Exception, System.Runtime.Serialization.ISerializable, System.Web.DynamicData.IDynamicValidatorException
    {
        public LinqDataSourceValidationException() { }
        [System.MonoTODOAttribute]
        protected LinqDataSourceValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public LinqDataSourceValidationException(string message) { }
        public LinqDataSourceValidationException(string message, System.Collections.Generic.IDictionary<string, System.Exception> innerExceptions) { }
        public LinqDataSourceValidationException(string message, System.Exception innerException) { }
        public System.Collections.Generic.IDictionary<string, System.Exception> InnerExceptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        [System.MonoTODOAttribute]
        [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
        public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class LinqDataSourceView : System.Web.UI.WebControls.ContextDataSourceView
    {
        public LinqDataSourceView(System.Web.UI.WebControls.LinqDataSource owner, string name, System.Web.HttpContext context) : base (default(System.Web.UI.DataSourceControl), default(string), default(System.Web.HttpContext)) { }
        public override bool CanDelete { get { throw null; } }
        public override bool CanInsert { get { throw null; } }
        public override bool CanPage { get { throw null; } }
        public override bool CanRetrieveTotalRowCount { get { throw null; } }
        public override bool CanSort { get { throw null; } }
        public override bool CanUpdate { get { throw null; } }
        public override System.Type ContextType { get { throw null; } }
        public override string ContextTypeName { get { throw null; } set { } }
        [System.MonoTODOAttribute]
        public bool EnableDelete { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.MonoTODOAttribute]
        public bool EnableInsert { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.MonoTODOAttribute]
        public bool EnableObjectTracking { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.MonoTODOAttribute]
        public bool EnableUpdate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.MonoTODOAttribute]
        public bool StoreOriginalValuesInViewState { get { throw null; } set { } }
        [System.MonoTODOAttribute]
        public string TableName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> ContextCreated { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceContextEventArgs> ContextCreating { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs> ContextDisposing { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Deleted { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs> Deleting { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Inserted { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceInsertEventArgs> Inserting { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Selected { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceSelectEventArgs> Selecting { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Updated { add { } remove { } }
        [System.MonoTODOAttribute]
        public event System.EventHandler<System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs> Updating { add { } remove { } }
        protected virtual object CreateContext(System.Type contextType) { throw null; }
        protected override System.Web.UI.WebControls.ContextDataSourceContextData CreateContext(System.Web.UI.DataSourceOperation operation) { throw null; }
        protected virtual void DeleteDataObject(object dataContext, object table, object oldDataObject) { }
        protected override int DeleteObject(object oldEntity) { throw null; }
        protected override void DisposeContext(object dataContext) { }
        [System.MonoTODOAttribute]
        protected override int ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
        protected override int ExecuteInsert(System.Collections.IDictionary values) { throw null; }
        [System.MonoTODOAttribute]
        protected internal override System.Collections.IEnumerable ExecuteSelect(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
        [System.MonoTODOAttribute]
        protected override int ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
        protected override object GetSource(System.Web.UI.WebControls.QueryContext context) { throw null; }
        protected virtual System.Reflection.MemberInfo GetTableMemberInfo(System.Type contextType) { throw null; }
        protected override void HandleValidationErrors(System.Collections.Generic.IDictionary<string, System.Exception> errors, System.Web.UI.DataSourceOperation operation) { }
        protected virtual void InsertDataObject(object dataContext, object table, object newDataObject) { }
        protected override int InsertObject(object newEntity) { throw null; }
        protected virtual void OnContextCreated(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
        protected virtual void OnContextCreating(System.Web.UI.WebControls.LinqDataSourceContextEventArgs e) { }
        protected virtual void OnContextDisposing(System.Web.UI.WebControls.LinqDataSourceDisposeEventArgs e) { }
        protected virtual void OnDeleted(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
        protected virtual void OnDeleting(System.Web.UI.WebControls.LinqDataSourceDeleteEventArgs e) { }
        protected virtual void OnException(System.Web.DynamicData.DynamicValidatorEventArgs e) { }
        protected virtual void OnInserted(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
        protected virtual void OnInserting(System.Web.UI.WebControls.LinqDataSourceInsertEventArgs e) { }
        protected virtual void OnSelected(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
        protected virtual void OnSelecting(System.Web.UI.WebControls.LinqDataSourceSelectEventArgs e) { }
        protected virtual void OnUpdated(System.Web.UI.WebControls.LinqDataSourceStatusEventArgs e) { }
        protected virtual void OnUpdating(System.Web.UI.WebControls.LinqDataSourceUpdateEventArgs e) { }
        [System.MonoTODOAttribute]
        protected virtual void ResetDataObject(object table, object dataObject) { }
        public System.Collections.IEnumerable Select(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
        protected override void StoreOriginalValues(System.Collections.IList results) { }
        protected virtual void UpdateDataObject(object dataContext, object table, object oldDataObject, object newDataObject) { }
        protected override int UpdateObject(object oldEntity, object newEntity) { throw null; }
        [System.MonoTODOAttribute]
        protected virtual void ValidateContextType(System.Type contextType, bool selecting) { }
        [System.MonoTODOAttribute]
        protected virtual void ValidateDeleteSupported(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { }
        protected virtual void ValidateEditSupported() { }
        [System.MonoTODOAttribute]
        protected virtual void ValidateInsertSupported(System.Collections.IDictionary values) { }
        [System.MonoTODOAttribute]
        protected virtual void ValidateTableType(System.Type tableType, bool selecting) { }
        [System.MonoTODOAttribute]
        protected virtual void ValidateUpdateSupported(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { }
    }
    [System.ComponentModel.DefaultEventAttribute("SelectedIndexChanged")]
    [System.ComponentModel.DefaultPropertyAttribute("SelectedValue")]
    [System.ComponentModel.DesignerAttribute("System.Web.UI.Design.WebControls.ListViewDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
    [System.ComponentModel.ToolboxItemFilterAttribute("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", (System.ComponentModel.ToolboxItemFilterType)(3))]
    [System.Drawing.ToolboxBitmapAttribute(typeof(System.Web.UI.WebControls.ListView), "ListView.ico")]
    [System.Web.UI.ControlValuePropertyAttribute("SelectedValue")]
    [System.Web.UI.SupportsEventValidationAttribute]
    public partial class ListView : System.Web.UI.WebControls.DataBoundControl, System.Web.UI.IDataKeysControl, System.Web.UI.INamingContainer, System.Web.UI.WebControls.IDataBoundControl, System.Web.UI.WebControls.IDataBoundListControl, System.Web.UI.WebControls.IPageableItemContainer, System.Web.UI.WebControls.IPersistedSelector
    {
        public ListView() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override string AccessKey { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
        public virtual System.Web.UI.ITemplate AlternatingItemTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Drawing.Color BackColor { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Drawing.Color BorderColor { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Web.UI.WebControls.BorderStyle BorderStyle { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Web.UI.WebControls.Unit BorderWidth { get { throw null; } set { } }
        public virtual string[] ClientIDRowSuffix { get { throw null; } set { } }
        public System.Web.UI.WebControls.DataKeyArray ClientIDRowSuffixDataKeys { get { throw null; } }
        public override System.Web.UI.ControlCollection Controls { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute(true)]
        public virtual bool ConvertEmptyStringToNull { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        [System.Web.UI.CssClassPropertyAttribute]
        public override string CssClass { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Data")]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.ComponentModel.EditorAttribute("System.Web.UI.Design.WebControls.DataFieldEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Web.UI.WebControls.StringArrayConverter))]
        public virtual string[] DataKeyNames { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public virtual System.Web.UI.WebControls.DataKeyArray DataKeys { get { throw null; } }
        public virtual string DeleteMethod { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Default")]
        [System.ComponentModel.DefaultValueAttribute(-1)]
        public virtual int EditIndex { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public virtual System.Web.UI.WebControls.ListViewItem EditItem { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
        public virtual System.Web.UI.ITemplate EditItemTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListView))]
        public virtual System.Web.UI.ITemplate EmptyDataTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
        public virtual System.Web.UI.ITemplate EmptyItemTemplate { get { throw null; } set { } }
        [System.ComponentModel.DefaultValueAttribute(false)]
        [System.MonoTODOAttribute("Figure out where it is used and what's the effect of setting it to true.")]
        public virtual bool EnableModelValidation { get { throw null; } set { } }
        public virtual bool EnablePersistedSelection { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Web.UI.WebControls.FontInfo Font { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Drawing.Color ForeColor { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Default")]
        [System.ComponentModel.DefaultValueAttribute(1)]
        public virtual int GroupItemCount { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("groupPlaceholder")]
        public virtual string GroupPlaceholderID { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
        public virtual System.Web.UI.ITemplate GroupSeparatorTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
        public virtual System.Web.UI.ITemplate GroupTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Web.UI.WebControls.Unit Height { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public virtual System.Web.UI.WebControls.ListViewItem InsertItem { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Default")]
        [System.ComponentModel.DefaultValueAttribute((System.Web.UI.WebControls.InsertItemPosition)(0))]
        public virtual System.Web.UI.WebControls.InsertItemPosition InsertItemPosition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem), (System.ComponentModel.BindingDirection)(1))]
        public virtual System.Web.UI.ITemplate InsertItemTemplate { get { throw null; } set { } }
        public virtual string InsertMethod { get { throw null; } set { } }
        protected override bool IsUsingModelBinders { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        [System.ComponentModel.DefaultValueAttribute("itemPlaceholder")]
        public virtual string ItemPlaceholderID { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public virtual System.Collections.Generic.IList<System.Web.UI.WebControls.ListViewDataItem> Items { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewItem))]
        public virtual System.Web.UI.ITemplate ItemSeparatorTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
        public virtual System.Web.UI.ITemplate ItemTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListView))]
        public virtual System.Web.UI.ITemplate LayoutTemplate { get { throw null; } set { } }
        protected virtual int MaximumRows { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public virtual System.Web.UI.WebControls.DataKey SelectedDataKey { get { throw null; } }
        [System.ComponentModel.CategoryAttribute("Default")]
        [System.ComponentModel.DefaultValueAttribute(-1)]
        public virtual int SelectedIndex { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute("")]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.ListViewDataItem), (System.ComponentModel.BindingDirection)(1))]
        public virtual System.Web.UI.ITemplate SelectedItemTemplate { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public virtual System.Web.UI.WebControls.DataKey SelectedPersistedDataKey { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public object SelectedValue { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute((System.Web.UI.WebControls.SortDirection)(0))]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        public virtual System.Web.UI.WebControls.SortDirection SortDirection { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        public virtual string SortExpression { get { throw null; } }
        protected virtual int StartRowIndex { get { throw null; } }
        System.Web.UI.WebControls.DataKeyArray System.Web.UI.IDataKeysControl.ClientIDRowSuffixDataKeys { get { throw null; } }
        string[] System.Web.UI.WebControls.IDataBoundControl.DataKeyNames { get { throw null; } set { } }
        string System.Web.UI.WebControls.IDataBoundControl.DataMember { get { throw null; } set { } }
        object System.Web.UI.WebControls.IDataBoundControl.DataSource { get { throw null; } set { } }
        string System.Web.UI.WebControls.IDataBoundControl.DataSourceID { get { throw null; } set { } }
        System.Web.UI.IDataSource System.Web.UI.WebControls.IDataBoundControl.DataSourceObject { get { throw null; } }
        string[] System.Web.UI.WebControls.IDataBoundListControl.ClientIDRowSuffix { get { throw null; } set { } }
        System.Web.UI.WebControls.DataKeyArray System.Web.UI.WebControls.IDataBoundListControl.DataKeys { get { throw null; } }
        bool System.Web.UI.WebControls.IDataBoundListControl.EnablePersistedSelection { get { throw null; } set { } }
        System.Web.UI.WebControls.DataKey System.Web.UI.WebControls.IDataBoundListControl.SelectedDataKey { get { throw null; } }
        int System.Web.UI.WebControls.IDataBoundListControl.SelectedIndex { get { throw null; } set { } }
        int System.Web.UI.WebControls.IPageableItemContainer.MaximumRows { get { throw null; } }
        int System.Web.UI.WebControls.IPageableItemContainer.StartRowIndex { get { throw null; } }
        System.Web.UI.WebControls.DataKey System.Web.UI.WebControls.IPersistedSelector.DataKey { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override short TabIndex { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override string ToolTip { get { throw null; } set { } }
        public virtual string UpdateMethod { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(0))]
        [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
        public override System.Web.UI.WebControls.Unit Width { get { throw null; } set { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewCancelEventArgs> ItemCanceling { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewCommandEventArgs> ItemCommand { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewItemEventArgs> ItemCreated { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Data")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewItemEventArgs> ItemDataBound { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewDeletedEventArgs> ItemDeleted { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewDeleteEventArgs> ItemDeleting { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewEditEventArgs> ItemEditing { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewInsertedEventArgs> ItemInserted { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewInsertEventArgs> ItemInserting { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewUpdatedEventArgs> ItemUpdated { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewUpdateEventArgs> ItemUpdating { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        public event System.EventHandler LayoutCreated { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        public event System.EventHandler PagePropertiesChanged { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Behavior")]
        public event System.EventHandler<System.Web.UI.WebControls.PagePropertiesChangingEventArgs> PagePropertiesChanging { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler SelectedIndexChanged { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewSelectEventArgs> SelectedIndexChanging { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler Sorted { add { } remove { } }
        [System.ComponentModel.CategoryAttribute("Action")]
        public event System.EventHandler<System.Web.UI.WebControls.ListViewSortEventArgs> Sorting { add { } remove { } }
        event System.EventHandler<System.Web.UI.WebControls.PageEventArgs> System.Web.UI.WebControls.IPageableItemContainer.TotalRowCountAvailable { add { } remove { } }
        protected virtual void AddControlToContainer(System.Web.UI.Control control, System.Web.UI.Control container, int addLocation) { }
        protected internal override void CreateChildControls() { }
        protected virtual int CreateChildControls(System.Collections.IEnumerable dataSource, bool dataBinding) { throw null; }
        protected override System.Web.UI.WebControls.Style CreateControlStyle() { throw null; }
        protected virtual System.Web.UI.WebControls.ListViewDataItem CreateDataItem(int dataItemIndex, int displayIndex) { throw null; }
        protected override System.Web.UI.DataSourceSelectArguments CreateDataSourceSelectArguments() { throw null; }
        protected virtual void CreateEmptyDataItem() { }
        protected virtual System.Web.UI.WebControls.ListViewItem CreateEmptyItem() { throw null; }
        protected virtual System.Web.UI.WebControls.ListViewItem CreateInsertItem() { throw null; }
        protected virtual System.Web.UI.WebControls.ListViewItem CreateItem(System.Web.UI.WebControls.ListViewItemType itemType) { throw null; }
        protected virtual System.Collections.Generic.IList<System.Web.UI.WebControls.ListViewDataItem> CreateItemsInGroups(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, bool dataBinding, System.Web.UI.WebControls.InsertItemPosition insertPosition, System.Collections.ArrayList keyArray) { throw null; }
        protected virtual System.Collections.Generic.IList<System.Web.UI.WebControls.ListViewDataItem> CreateItemsWithoutGroups(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, bool dataBinding, System.Web.UI.WebControls.InsertItemPosition insertPosition, System.Collections.ArrayList keyArray) { throw null; }
        protected virtual void CreateLayoutTemplate() { }
        protected virtual void CreateSuffixArrayList(System.Web.UI.WebControls.ListViewPagedDataSource dataSource, System.Collections.ArrayList suffixArray) { }
        public virtual void DeleteItem(int itemIndex) { }
        protected virtual void EnsureLayoutTemplate() { }
        public virtual void ExtractItemValues(System.Collections.Specialized.IOrderedDictionary itemValues, System.Web.UI.WebControls.ListViewItem item, bool includePrimaryKey) { }
        protected virtual System.Web.UI.Control FindPlaceholder(string containerID, System.Web.UI.Control container) { throw null; }
        public virtual void InsertNewItem(bool causesValidation) { }
        protected virtual void InstantiateEmptyDataTemplate(System.Web.UI.Control container) { }
        protected virtual void InstantiateEmptyItemTemplate(System.Web.UI.Control container) { }
        protected virtual void InstantiateGroupSeparatorTemplate(System.Web.UI.Control container) { }
        protected virtual void InstantiateGroupTemplate(System.Web.UI.Control container) { }
        protected virtual void InstantiateInsertItemTemplate(System.Web.UI.Control container) { }
        protected virtual void InstantiateItemSeparatorTemplate(System.Web.UI.Control container) { }
        protected virtual void InstantiateItemTemplate(System.Web.UI.Control container, int displayIndex) { }
        protected internal override void LoadControlState(object savedState) { }
        protected override void LoadViewState(object savedState) { }
        protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
        protected internal override void OnInit(System.EventArgs e) { }
        protected virtual void OnItemCanceling(System.Web.UI.WebControls.ListViewCancelEventArgs e) { }
        protected virtual void OnItemCommand(System.Web.UI.WebControls.ListViewCommandEventArgs e) { }
        protected virtual void OnItemCreated(System.Web.UI.WebControls.ListViewItemEventArgs e) { }
        protected virtual void OnItemDataBound(System.Web.UI.WebControls.ListViewItemEventArgs e) { }
        protected virtual void OnItemDeleted(System.Web.UI.WebControls.ListViewDeletedEventArgs e) { }
        protected virtual void OnItemDeleting(System.Web.UI.WebControls.ListViewDeleteEventArgs e) { }
        protected virtual void OnItemEditing(System.Web.UI.WebControls.ListViewEditEventArgs e) { }
        protected virtual void OnItemInserted(System.Web.UI.WebControls.ListViewInsertedEventArgs e) { }
        protected virtual void OnItemInserting(System.Web.UI.WebControls.ListViewInsertEventArgs e) { }
        protected virtual void OnItemUpdated(System.Web.UI.WebControls.ListViewUpdatedEventArgs e) { }
        protected virtual void OnItemUpdating(System.Web.UI.WebControls.ListViewUpdateEventArgs e) { }
        protected virtual void OnLayoutCreated(System.EventArgs e) { }
        protected virtual void OnPagePropertiesChanged(System.EventArgs e) { }
        protected virtual void OnPagePropertiesChanging(System.Web.UI.WebControls.PagePropertiesChangingEventArgs e) { }
        protected virtual void OnSelectedIndexChanged(System.EventArgs e) { }
        protected virtual void OnSelectedIndexChanging(System.Web.UI.WebControls.ListViewSelectEventArgs e) { }
        protected virtual void OnSorted(System.EventArgs e) { }
        protected virtual void OnSorting(System.Web.UI.WebControls.ListViewSortEventArgs e) { }
        protected virtual void OnTotalRowCountAvailable(System.Web.UI.WebControls.PageEventArgs e) { }
        protected internal override void PerformDataBinding(System.Collections.IEnumerable data) { }
        protected override void PerformSelect() { }
        protected virtual void RemoveItems() { }
        protected internal override void Render(System.Web.UI.HtmlTextWriter writer) { }
        protected internal override object SaveControlState() { throw null; }
        protected override object SaveViewState() { throw null; }
        public void SelectItem(int rowIndex) { }
        public void SetEditItem(int rowIndex) { }
        protected virtual void SetPageProperties(int startRowIndex, int maximumRows, bool databind) { }
        public virtual void Sort(string sortExpression, System.Web.UI.WebControls.SortDirection sortDirection) { }
        void System.Web.UI.WebControls.IPageableItemContainer.SetPageProperties(int startRowIndex, int maximumRows, bool databind) { }
        public virtual void UpdateItem(int itemIndex, bool causesValidation) { }
    }
    public partial class ListViewCancelEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewCancelEventArgs(int itemIndex, System.Web.UI.WebControls.ListViewCancelMode cancelMode) { }
        public System.Web.UI.WebControls.ListViewCancelMode CancelMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public int ItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    public enum ListViewCancelMode
    {
        CancelingEdit = 0,
        CancelingInsert = 1,
    }
    public partial class ListViewCommandEventArgs : System.Web.UI.WebControls.CommandEventArgs
    {
        public ListViewCommandEventArgs(System.Web.UI.WebControls.ListViewItem item, object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs) : base (default(System.Web.UI.WebControls.CommandEventArgs)) { }
        public object CommandSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool Handled { get { throw null; } set { } }
        public System.Web.UI.WebControls.ListViewItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    public partial class ListViewDataItem : System.Web.UI.WebControls.ListViewItem
    {
        public ListViewDataItem(int dataItemIndex, int displayIndex) : base (default(System.Web.UI.WebControls.ListViewItemType)) { }
        public override object DataItem { get { throw null; } set { } }
        public override int DataItemIndex { get { throw null; } }
        public override int DisplayIndex { get { throw null; } }
        protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
    }
    public partial class ListViewDeletedEventArgs : System.EventArgs
    {
        public ListViewDeletedEventArgs(int affectedRows, System.Exception exception) { }
        public int AffectedRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Collections.Specialized.IOrderedDictionary Keys { get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
    }
    public partial class ListViewDeleteEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewDeleteEventArgs(int itemIndex) { }
        public int ItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary Keys { get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
    }
    public partial class ListViewEditEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewEditEventArgs(int newEditIndex) { }
        public int NewEditIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    public partial class ListViewInsertedEventArgs : System.EventArgs
    {
        public ListViewInsertedEventArgs(int affectedRows, System.Exception exception) { }
        public int AffectedRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public bool KeepInInsertMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
    }
    public partial class ListViewInsertEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewInsertEventArgs(System.Web.UI.WebControls.ListViewItem item) { }
        public System.Web.UI.WebControls.ListViewItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary Values { get { throw null; } }
    }
    [System.ComponentModel.ToolboxItemAttribute(false)]
    public partial class ListViewItem : System.Web.UI.Control, System.Web.UI.IDataItemContainer, System.Web.UI.INamingContainer
    {
        public ListViewItem(System.Web.UI.WebControls.ListViewItemType itemType) { }
        public virtual object DataItem { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public virtual int DataItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public virtual int DisplayIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Web.UI.WebControls.ListViewItemType ItemType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        protected override bool OnBubbleEvent(object source, System.EventArgs e) { throw null; }
    }
    public partial class ListViewItemEventArgs : System.EventArgs
    {
        public ListViewItemEventArgs(System.Web.UI.WebControls.ListViewItem item) { }
        public System.Web.UI.WebControls.ListViewItem Item { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    public enum ListViewItemType
    {
        DataItem = 0,
        EmptyItem = 2,
        InsertItem = 1,
    }
    public partial class ListViewPagedDataSource : System.Collections.ICollection, System.Collections.IEnumerable, System.ComponentModel.ITypedList
    {
        public ListViewPagedDataSource() { }
        public bool AllowServerPaging { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int Count { get { throw null; } }
        public System.Collections.IEnumerable DataSource { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int DataSourceCount { get { throw null; } }
        public bool IsReadOnly { get { throw null; } }
        public bool IsServerPagingEnabled { get { throw null; } }
        public bool IsSynchronized { get { throw null; } }
        public int MaximumRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public int StartRowIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public object SyncRoot { get { throw null; } }
        public int TotalRowCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public void CopyTo(System.Array array, int index) { }
        public System.Collections.IEnumerator GetEnumerator() { throw null; }
        public System.ComponentModel.PropertyDescriptorCollection GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
        public string GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) { throw null; }
    }
    public partial class ListViewSelectEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewSelectEventArgs(int newSelectedIndex) { }
        public int NewSelectedIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
    }
    public partial class ListViewSortEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewSortEventArgs(string sortExpression, System.Web.UI.WebControls.SortDirection sortDirection) { }
        public System.Web.UI.WebControls.SortDirection SortDirection { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public string SortExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
    }
    public partial class ListViewUpdatedEventArgs : System.EventArgs
    {
        public ListViewUpdatedEventArgs(int affectedRows, System.Exception exception) { }
        public int AffectedRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Exception Exception { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public bool ExceptionHandled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public bool KeepInEditMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public System.Collections.Specialized.IOrderedDictionary NewValues { get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary OldValues { get { throw null; } }
    }
    public partial class ListViewUpdateEventArgs : System.ComponentModel.CancelEventArgs
    {
        public ListViewUpdateEventArgs(int itemIndex) { }
        public int ItemIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary Keys { get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary NewValues { get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary OldValues { get { throw null; } }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class NextPreviousPagerField : System.Web.UI.WebControls.DataPagerField
    {
        public NextPreviousPagerField() { }
        public string ButtonCssClass { get { throw null; } set { } }
        public System.Web.UI.WebControls.ButtonType ButtonType { get { throw null; } set { } }
        public string FirstPageImageUrl { get { throw null; } set { } }
        public string FirstPageText { get { throw null; } set { } }
        public string LastPageImageUrl { get { throw null; } set { } }
        public string LastPageText { get { throw null; } set { } }
        public string NextPageImageUrl { get { throw null; } set { } }
        public string NextPageText { get { throw null; } set { } }
        public string PreviousPageImageUrl { get { throw null; } set { } }
        public string PreviousPageText { get { throw null; } set { } }
        public bool RenderDisabledButtonsAsLabels { get { throw null; } set { } }
        public bool RenderNonBreakingSpacesBetweenControls { get { throw null; } set { } }
        public bool ShowFirstPageButton { get { throw null; } set { } }
        public bool ShowLastPageButton { get { throw null; } set { } }
        public bool ShowNextPageButton { get { throw null; } set { } }
        public bool ShowPreviousPageButton { get { throw null; } set { } }
        protected override void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
        public override void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex) { }
        protected override System.Web.UI.WebControls.DataPagerField CreateField() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e) { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class NumericPagerField : System.Web.UI.WebControls.DataPagerField
    {
        public NumericPagerField() { }
        public int ButtonCount { get { throw null; } set { } }
        public System.Web.UI.WebControls.ButtonType ButtonType { get { throw null; } set { } }
        public string CurrentPageLabelCssClass { get { throw null; } set { } }
        public string NextPageImageUrl { get { throw null; } set { } }
        public string NextPageText { get { throw null; } set { } }
        public string NextPreviousButtonCssClass { get { throw null; } set { } }
        public string NumericButtonCssClass { get { throw null; } set { } }
        public string PreviousPageImageUrl { get { throw null; } set { } }
        public string PreviousPageText { get { throw null; } set { } }
        public bool RenderNonBreakingSpacesBetweenControls { get { throw null; } set { } }
        protected override void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
        public override void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex) { }
        protected override System.Web.UI.WebControls.DataPagerField CreateField() { throw null; }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e) { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class PageEventArgs : System.EventArgs
    {
        public PageEventArgs(int startRowIndex, int maximumRows, int totalRowCount) { }
        public int MaximumRows { get { throw null; } }
        public int StartRowIndex { get { throw null; } }
        public int TotalRowCount { get { throw null; } }
    }
    public partial class PagePropertiesChangingEventArgs : System.EventArgs
    {
        public PagePropertiesChangingEventArgs(int startRowIndex, int maximumRows) { }
        public int MaximumRows { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
        public int StartRowIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
    }
    public abstract partial class QueryableDataSource : System.Web.UI.DataSourceControl, System.Web.UI.IDataSource, System.Web.UI.WebControls.IQueryableDataSource
    {
        protected QueryableDataSource() { }
        public event System.EventHandler<System.Web.UI.WebControls.QueryCreatedEventArgs> QueryCreated { add { } remove { } }
        protected abstract System.Web.UI.WebControls.QueryableDataSourceView CreateQueryableView();
        protected override System.Web.UI.DataSourceView GetView(string viewName) { throw null; }
        protected override System.Collections.ICollection GetViewNames() { throw null; }
        protected override void LoadViewState(object savedState) { }
        protected internal override void OnInit(System.EventArgs e) { }
        public void RaiseViewChanged() { }
        protected override object SaveViewState() { throw null; }
        protected override void TrackViewState() { }
        protected virtual void UpdateParameterVales() { }
    }
    public partial class QueryableDataSourceEditData
    {
        public QueryableDataSourceEditData() { }
        public object NewDataObject { get { throw null; } set { } }
        public object OriginalDataObject { get { throw null; } set { } }
    }
    public abstract partial class QueryableDataSourceView : System.Web.UI.DataSourceView, System.Web.UI.IStateManager
    {
        protected static readonly object EventSelected;
        protected static readonly object EventSelecting;
        protected QueryableDataSourceView(System.Web.UI.DataSourceControl owner, string viewName, System.Web.HttpContext context) : base (default(System.Web.UI.IDataSource), default(string)) { }
        public bool AutoGenerateOrderByClause { get { throw null; } set { } }
        public bool AutoGenerateWhereClause { get { throw null; } set { } }
        public virtual bool AutoPage { get { throw null; } set { } }
        public virtual bool AutoSort { get { throw null; } set { } }
        public override bool CanDelete { get { throw null; } }
        public override bool CanInsert { get { throw null; } }
        public override bool CanPage { get { throw null; } }
        public override bool CanRetrieveTotalRowCount { get { throw null; } }
        public override bool CanSort { get { throw null; } }
        public override bool CanUpdate { get { throw null; } }
        public virtual System.Web.UI.WebControls.ParameterCollection DeleteParameters { get { throw null; } }
        protected abstract System.Type EntityType { get; }
        public virtual string GroupBy { get { throw null; } set { } }
        public virtual System.Web.UI.WebControls.ParameterCollection GroupByParameters { get { throw null; } }
        public virtual System.Web.UI.WebControls.ParameterCollection InsertParameters { get { throw null; } }
        protected bool IsTrackingViewState { get { throw null; } }
        public virtual string OrderBy { get { throw null; } set { } }
        public virtual System.Web.UI.WebControls.ParameterCollection OrderByParameters { get { throw null; } }
        public virtual string OrderGroupsBy { get { throw null; } set { } }
        public virtual System.Web.UI.WebControls.ParameterCollection OrderGroupsByParameters { get { throw null; } }
        public virtual string SelectNew { get { throw null; } set { } }
        public virtual System.Web.UI.WebControls.ParameterCollection SelectNewParameters { get { throw null; } }
        bool System.Web.UI.IStateManager.IsTrackingViewState { get { throw null; } }
        public virtual System.Web.UI.WebControls.ParameterCollection UpdateParameters { get { throw null; } }
        public virtual string Where { get { throw null; } set { } }
        public virtual System.Web.UI.WebControls.ParameterCollection WhereParameters { get { throw null; } }
        public event System.EventHandler<System.Web.UI.WebControls.QueryCreatedEventArgs> QueryCreated { add { } remove { } }
        protected System.Web.UI.WebControls.QueryableDataSourceEditData BuildDeleteObject(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors) { throw null; }
        protected System.Web.UI.WebControls.QueryableDataSourceEditData BuildInsertObject(System.Collections.IDictionary values, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors) { throw null; }
        protected virtual System.Linq.IQueryable BuildQuery(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
        protected System.Web.UI.WebControls.QueryableDataSourceEditData BuildUpdateObjects(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues, System.Collections.Generic.IDictionary<string, System.Exception> validationErrors) { throw null; }
        protected void ClearOriginalValues() { }
        protected System.Web.UI.WebControls.QueryContext CreateQueryContext(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
        public int Delete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
        protected virtual int DeleteObject(object oldEntity) { throw null; }
        protected override int ExecuteDelete(System.Collections.IDictionary keys, System.Collections.IDictionary oldValues) { throw null; }
        protected override int ExecuteInsert(System.Collections.IDictionary values) { throw null; }
        protected System.Linq.IQueryable ExecutePaging(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
        protected virtual System.Linq.IQueryable ExecuteQuery(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
        protected System.Linq.IQueryable ExecuteQueryExpressions(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
        protected internal override System.Collections.IEnumerable ExecuteSelect(System.Web.UI.DataSourceSelectArguments arguments) { throw null; }
        protected System.Linq.IQueryable ExecuteSorting(System.Linq.IQueryable source, System.Web.UI.WebControls.QueryContext context) { throw null; }
        protected override int ExecuteUpdate(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
        protected virtual System.Collections.IDictionary GetOriginalValues(System.Collections.IDictionary keys) { throw null; }
        protected abstract object GetSource(System.Web.UI.WebControls.QueryContext context);
        protected abstract void HandleValidationErrors(System.Collections.Generic.IDictionary<string, System.Exception> errors, System.Web.UI.DataSourceOperation operation);
        public int Insert(System.Collections.IDictionary values) { throw null; }
        protected virtual int InsertObject(object newEntity) { throw null; }
        protected virtual void LoadViewState(object savedState) { }
        protected virtual void OnQueryCreated(System.Web.UI.WebControls.QueryCreatedEventArgs e) { }
        protected void OnQueryParametersChanged(object sender, System.EventArgs e) { }
        public void RaiseViewChanged() { }
        protected virtual object SaveViewState() { throw null; }
        protected virtual void StoreOriginalValues(System.Collections.IList results) { }
        protected void StoreOriginalValues(System.Collections.IList results, System.Func<System.ComponentModel.PropertyDescriptor, bool> include) { }
        void System.Web.UI.IStateManager.LoadViewState(object state) { }
        object System.Web.UI.IStateManager.SaveViewState() { throw null; }
        void System.Web.UI.IStateManager.TrackViewState() { }
        protected virtual void TrackViewState() { }
        public int Update(System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues) { throw null; }
        protected virtual int UpdateObject(object oldEntity, object newEntity) { throw null; }
    }
    public partial class QueryContext
    {
        public QueryContext(System.Collections.Generic.IDictionary<string, object> whereParameters, System.Collections.Generic.IDictionary<string, object> orderGroupsByParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string, object> groupByParameters, System.Collections.Generic.IDictionary<string, object> selectParameters, System.Web.UI.DataSourceSelectArguments arguments) { }
        public System.Web.UI.DataSourceSelectArguments Arguments { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> GroupByParameters { get { throw null; } }
        public System.Collections.Specialized.IOrderedDictionary OrderByParameters { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> OrderGroupsByParameters { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> SelectParameters { get { throw null; } }
        public System.Collections.Generic.IDictionary<string, object> WhereParameters { get { throw null; } }
    }
    public partial class QueryCreatedEventArgs : System.EventArgs
    {
        public QueryCreatedEventArgs(System.Linq.IQueryable query) { }
        public System.Linq.IQueryable Query { get { throw null; } set { } }
    }
    public partial class QueryExtender : System.Web.UI.Control
    {
        public QueryExtender() { }
        public virtual System.Web.UI.WebControls.IQueryableDataSource DataSource { get { throw null; } }
        public System.Web.UI.WebControls.Expressions.DataSourceExpressionCollection Expressions { get { throw null; } }
        public virtual string TargetControlID { get { throw null; } set { } }
        protected override void LoadViewState(object savedState) { }
        protected internal override void OnInit(System.EventArgs e) { }
        protected override object SaveViewState() { throw null; }
        protected override void TrackViewState() { }
    }
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    [System.Web.AspNetHostingPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Level=(System.Web.AspNetHostingPermissionLevel)(200))]
    public partial class TemplatePagerField : System.Web.UI.WebControls.DataPagerField
    {
        public TemplatePagerField() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.Web.UI.PersistenceModeAttribute((System.Web.UI.PersistenceMode)(1))]
        [System.Web.UI.TemplateContainerAttribute(typeof(System.Web.UI.WebControls.DataPagerFieldItem), (System.ComponentModel.BindingDirection)(1))]
        public virtual System.Web.UI.ITemplate PagerTemplate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
        public event System.EventHandler<System.Web.UI.WebControls.DataPagerCommandEventArgs> PagerCommand { add { } remove { } }
        protected override void CopyProperties(System.Web.UI.WebControls.DataPagerField newField) { }
        public override void CreateDataPagers(System.Web.UI.WebControls.DataPagerFieldItem container, int startRowIndex, int maximumRows, int totalRowCount, int fieldIndex) { }
        protected override System.Web.UI.WebControls.DataPagerField CreateField() { throw null; }
        public override void HandleEvent(System.Web.UI.WebControls.CommandEventArgs e) { }
        protected virtual void OnPagerCommand(System.Web.UI.WebControls.DataPagerCommandEventArgs e) { }
    }
}
namespace System.Web.UI.WebControls.Expressions
{
    public partial class CustomExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
    {
        public CustomExpression() { }
        public event System.EventHandler<System.Web.UI.WebControls.Expressions.CustomExpressionEventArgs> Querying { add { } remove { } }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
    }
    public partial class CustomExpressionEventArgs : System.EventArgs
    {
        public CustomExpressionEventArgs(System.Linq.IQueryable source, System.Collections.Generic.IDictionary<string, object> values) { }
        public System.Linq.IQueryable Query { get { throw null; } set { } }
        public System.Collections.Generic.IDictionary<string, object> Values { get { throw null; } }
    }
    public abstract partial class DataSourceExpression : System.Web.UI.IStateManager
    {
        protected DataSourceExpression() { }
        protected System.Web.HttpContext Context { get { throw null; } }
        public System.Web.UI.WebControls.IQueryableDataSource DataSource { get { throw null; } }
        protected bool IsTrackingViewState { get { throw null; } }
        protected System.Web.UI.Control Owner { get { throw null; } }
        bool System.Web.UI.IStateManager.IsTrackingViewState { get { throw null; } }
        protected System.Web.UI.StateBag ViewState { get { throw null; } }
        public abstract System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source);
        protected virtual void LoadViewState(object savedState) { }
        protected virtual object SaveViewState() { throw null; }
        public virtual void SetContext(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource) { }
        public void SetDirty() { }
        void System.Web.UI.IStateManager.LoadViewState(object state) { }
        object System.Web.UI.IStateManager.SaveViewState() { throw null; }
        void System.Web.UI.IStateManager.TrackViewState() { }
        protected virtual void TrackViewState() { }
    }
    public partial class DataSourceExpressionCollection : System.Web.UI.StateManagedCollection
    {
        public DataSourceExpressionCollection() { }
        public System.Web.HttpContext Context { get { throw null; } }
        public System.Web.UI.WebControls.Expressions.DataSourceExpression this[int index] { get { throw null; } set { } }
        public System.Web.UI.Control Owner { get { throw null; } }
        public void Add(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
        public void Contains(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
        public void CopyTo(System.Web.UI.WebControls.Expressions.DataSourceExpression[] expressionArray, int index) { }
        protected override object CreateKnownType(int index) { throw null; }
        protected override System.Type[] GetKnownTypes() { throw null; }
        public int IndexOf(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { throw null; }
        public void Insert(int index, System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
        public void Remove(System.Web.UI.WebControls.Expressions.DataSourceExpression expression) { }
        public void RemoveAt(int index) { }
        protected override void SetDirtyObject(object o) { }
    }
    public partial class MethodExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
    {
        public MethodExpression() { }
        public bool IgnoreIfNotFound { get { throw null; } set { } }
        public string MethodName { get { throw null; } set { } }
        public string TypeName { get { throw null; } set { } }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
    }
    public partial class OfTypeExpression : System.Web.UI.WebControls.Expressions.DataSourceExpression
    {
        public OfTypeExpression() { }
        public OfTypeExpression(System.Type type) { }
        public string TypeName { get { throw null; } set { } }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable query) { throw null; }
    }
    public partial class OrderByExpression : System.Web.UI.WebControls.Expressions.DataSourceExpression
    {
        public OrderByExpression() { }
        public string DataField { get { throw null; } set { } }
        public System.Web.UI.WebControls.SortDirection Direction { get { throw null; } set { } }
        public System.Collections.ObjectModel.Collection<System.Web.UI.WebControls.Expressions.ThenBy> ThenByExpressions { get { throw null; } }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
    }
    public abstract partial class ParameterDataSourceExpression : System.Web.UI.WebControls.Expressions.DataSourceExpression
    {
        protected ParameterDataSourceExpression() { }
        public System.Web.UI.WebControls.ParameterCollection Parameters { get { throw null; } }
        protected override void LoadViewState(object savedState) { }
        protected override object SaveViewState() { throw null; }
        public override void SetContext(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource) { }
        protected override void TrackViewState() { }
    }
    public partial class PropertyExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
    {
        public PropertyExpression() { }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
    }
    public partial class QueryExpression
    {
        public QueryExpression() { }
        public System.Web.UI.WebControls.Expressions.DataSourceExpressionCollection Expressions { get { throw null; } }
        public virtual System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
        public void Initialize(System.Web.UI.Control owner, System.Web.HttpContext context, System.Web.UI.WebControls.IQueryableDataSource dataSource) { }
    }
    public partial class RangeExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
    {
        public RangeExpression() { }
        public string DataField { get { throw null; } set { } }
        public System.Web.UI.WebControls.Expressions.RangeType MaxType { get { throw null; } set { } }
        public System.Web.UI.WebControls.Expressions.RangeType MinType { get { throw null; } set { } }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
    }
    public enum RangeType
    {
        Exclusive = 1,
        Inclusive = 2,
        None = 0,
    }
    public partial class SearchExpression : System.Web.UI.WebControls.Expressions.ParameterDataSourceExpression
    {
        public SearchExpression() { }
        public System.StringComparison ComparisonType { get { throw null; } set { } }
        public string DataFields { get { throw null; } set { } }
        public System.Web.UI.WebControls.Expressions.SearchType SearchType { get { throw null; } set { } }
        public override System.Linq.IQueryable GetQueryable(System.Linq.IQueryable source) { throw null; }
    }
    public enum SearchType
    {
        Contains = 0,
        EndsWith = 2,
        StartsWith = 1,
    }
    public partial class ThenBy
    {
        public ThenBy() { }
        public string DataField { get { throw null; } set { } }
        public System.Web.UI.WebControls.SortDirection Direction { get { throw null; } set { } }
    }
}