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
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Data.Services</name>
</assembly>
<members>
<member name="E:System.Data.Services.DataServiceProcessingPipeline.ProcessedChangeset">
<summary>Occurs after the change set has been processed.</summary>
</member>
<member name="E:System.Data.Services.DataServiceProcessingPipeline.ProcessedRequest">
<summary>Occurs after the request has been processed.</summary>
</member>
<member name="E:System.Data.Services.DataServiceProcessingPipeline.ProcessingChangeset">
<summary>Occurs before the change set is processed.</summary>
</member>
<member name="E:System.Data.Services.DataServiceProcessingPipeline.ProcessingRequest">
<summary>Occurs before the request is processed. </summary>
</member>
<member name="M:System.Data.Services.ChangeInterceptorAttribute.#ctor(System.String)">
<summary>Creates a new change interceptor for an entity set specified by the parameter <paramref name="entitySetName" />.</summary>
<param name="entitySetName">The name of the entity set that contains the entity to which the interceptor applies.</param>
</member>
<member name="M:System.Data.Services.Configuration.DataServicesFeaturesSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Configuration.DataServicesFeaturesSection" /> class.</summary>
</member>
<member name="M:System.Data.Services.Configuration.DataServicesReplaceFunctionFeature.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Configuration.DataServicesReplaceFunctionFeature" /> class.</summary>
</member>
<member name="M:System.Data.Services.Configuration.DataServicesSectionGroup.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Configuration.DataServicesSectionGroup" /> class.</summary>
</member>
<member name="M:System.Data.Services.DataService`1.#ctor">
<summary>Creates a new data service that deploys data of the type indicated by the template class.</summary>
</member>
<member name="M:System.Data.Services.DataService`1.AttachHost(System.Data.Services.IDataServiceHost)">
<summary>Attaches the data service host to the data service identified by the parameter <paramref name="host" />.</summary>
<param name="host">An instance of <see cref="T:System.Data.Services.IDataServiceHost" />.</param>
</member>
<member name="M:System.Data.Services.DataService`1.CreateDataSource">
<summary>Creates a data source of the template class that will be used by the data service.</summary>
<returns>An instance of the data source.</returns>
</member>
<member name="M:System.Data.Services.DataService`1.HandleException(System.Data.Services.HandleExceptionArgs)">
<summary>Called when an exception is raised while processing a request.</summary>
<param name="args">Exception arguments.</param>
</member>
<member name="M:System.Data.Services.DataService`1.OnStartProcessingRequest(System.Data.Services.ProcessRequestArgs)">
<summary>Called before processing each request. For batch requests, it is called one time for the top batch request and one time for each operation in the batch.</summary>
<param name="args">
<see cref="T:System.Data.Services.ProcessRequestArgs" /> that contains information about the request.</param>
</member>
<member name="M:System.Data.Services.DataService`1.ProcessRequest">
<summary>Processes an HTTP request.</summary>
</member>
<member name="M:System.Data.Services.DataService`1.ProcessRequestForMessage(System.IO.Stream)">
<summary>Processes an HTTP request.</summary>
<param name="messageBody">The body of the HTTP request.</param>
<returns>Response message.</returns>
</member>
<member name="M:System.Data.Services.DataServiceConfiguration.EnableTypeAccess(System.String)">
<summary>Registers a data type with the data service runtime so that it can be used by a custom data service provider.</summary>
<param name="typeName">The namespace-qualified name of the type that is enabled for use with the custom data service provider.</param>
</member>
<member name="M:System.Data.Services.DataServiceConfiguration.RegisterKnownType(System.Type)">
<summary>Adds a type to the list of types that are recognized by the data service. </summary>
<param name="type">Type to add to the collection of known types.</param>
</member>
<member name="M:System.Data.Services.DataServiceConfiguration.SetEntitySetAccessRule(System.String,System.Data.Services.EntitySetRights)">
<summary>Sets the permissions for the specified entity set resource.</summary>
<param name="name">Name of the entity set for which to set permissions.</param>
<param name="rights">Access rights to be granted to this resource, passed as an <see cref="T:System.Data.Services.EntitySetRights" /> value.</param>
</member>
<member name="M:System.Data.Services.DataServiceConfiguration.SetEntitySetPageSize(System.String,System.Int32)">
<summary>Sets the maximum page size for an entity set resource.</summary>
<param name="name">Name of entity set resource for which to set the page size.</param>
<param name="size">Page size for the entity set resource that is specified in <paramref name="name" />.</param>
</member>
<member name="M:System.Data.Services.DataServiceConfiguration.SetServiceOperationAccessRule(System.String,System.Data.Services.ServiceOperationRights)">
<summary>Sets the permissions for the specified service operation.</summary>
<param name="name">Name of the service operation for which to set permissions.</param>
<param name="rights">Access rights to be granted to this resource, passed as a <see cref="T:System.Data.Services.ServiceOperationRights" /> value.</param>
</member>
<member name="M:System.Data.Services.DataServiceException.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.DataServiceException" /> class with a system-supplied message that describes the error.</summary>
</member>
<member name="M:System.Data.Services.DataServiceException.#ctor(System.Int32,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.DataServiceException" /> class. </summary>
<param name="statusCode">The HTTP status code returned by the exception.</param>
<param name="message">The error message for the exception.</param>
</member>
<member name="M:System.Data.Services.DataServiceException.#ctor(System.Int32,System.String,System.String,System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.DataServiceException" /> class. </summary>
<param name="statusCode">The HTTP status code of the exception.</param>
<param name="errorCode">The string value that contains the error code.</param>
<param name="message">The string value that contains the error message.</param>
<param name="messageXmlLang">The string value that indicates the language of the error message.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="M:System.Data.Services.DataServiceException.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.DataServiceException" /> class with a specified message that describes the error.</summary>
<param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
</member>
<member name="M:System.Data.Services.DataServiceException.#ctor(System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.DataServiceException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
<param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param>
<param name="innerException">The exception that is the cause of the current exception. </param>
</member>
<member name="M:System.Data.Services.DataServiceException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Gets data on the object that caused the exception.</summary>
<param name="info">
<see cref="T:System.Runtime.Serialization.SerializationInfo" />.</param>
<param name="context">
<see cref="T:System.Runtime.Serialization.StreamingContext" />.</param>
</member>
<member name="M:System.Data.Services.DataServiceHost.#ctor(System.Type,System.Uri[])">
<summary>Instantiates <see cref="T:System.Data.Services.DataServiceHost" /> for WCF Data Services.</summary>
<param name="serviceType">Identifies the WCF Data Services to the host.</param>
<param name="baseAddresses">The URI of the host.</param>
</member>
<member name="M:System.Data.Services.DataServiceHostFactory.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.DataServiceHostFactory" /> class.</summary>
</member>
<member name="M:System.Data.Services.DataServiceHostFactory.CreateServiceHost(System.Type,System.Uri[])">
<summary>Creates a new <see cref="T:System.Data.Services.DataServiceHost" /> from the URI.</summary>
<param name="serviceType">Specifies the type of WCF service to host.</param>
<param name="baseAddresses">An array of base addresses for the service.</param>
<returns>The created <see cref="T:System.Data.Services.DataServiceHost" /> object.</returns>
</member>
<member name="M:System.Data.Services.DataServiceProcessingPipeline.#ctor">
<summary>Creates a new <see cref="T:System.Data.Services.DataServiceProcessingPipeline" /> instance. </summary>
</member>
<member name="M:System.Data.Services.ETagAttribute.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.ETagAttribute" /> class. </summary>
<param name="propertyName">The string value containing properties used in eTag value.</param>
</member>
<member name="M:System.Data.Services.ETagAttribute.#ctor(System.String[])">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.ETagAttribute" /> class.</summary>
<param name="propertyNames">String value containing properties used in eTag value.</param>
</member>
<member name="M:System.Data.Services.ExpandSegment.#ctor(System.String,System.Linq.Expressions.Expression)">
<summary>Initializes an <see cref="T:System.Data.Services.ExpandSegment" /> object with the specified property name and a filtering expression, possibly null.</summary>
<param name="name">The name of the property to be expanded.</param>
<param name="filter">The filter option in the query to which the expand segment applies.</param>
</member>
<member name="M:System.Data.Services.ExpandSegment.PathHasFilter(System.Collections.Generic.IEnumerable{System.Data.Services.ExpandSegment})">
<summary>A Boolean value that indicates whether the path includes a filter option on target data.</summary>
<param name="path">The enumeration of segments to check for filters.</param>
<returns>True if any of the segments in the path has a filter; false otherwise.</returns>
</member>
<member name="M:System.Data.Services.ExpandSegmentCollection.#ctor">
<summary>Creates a collection of expand segments for a query.</summary>
</member>
<member name="M:System.Data.Services.ExpandSegmentCollection.#ctor(System.Int32)">
<summary>Initializes a new collection of expand segments that is empty and has the specified initial capacity.</summary>
<param name="capacity">The number of expand segments that the new collection can initially store.</param>
</member>
<member name="M:System.Data.Services.IDataServiceConfiguration.RegisterKnownType(System.Type)">
<summary>Registers a resource type for use by the data service.</summary>
<param name="type">The resource type to register.</param>
</member>
<member name="M:System.Data.Services.IDataServiceConfiguration.SetEntitySetAccessRule(System.String,System.Data.Services.EntitySetRights)">
<summary>Sets the access rules for the specified entity set.</summary>
<param name="name">The name of the entity set for configured access.</param>
<param name="rights">The rights allowed for the entity set.</param>
</member>
<member name="M:System.Data.Services.IDataServiceConfiguration.SetServiceOperationAccessRule(System.String,System.Data.Services.ServiceOperationRights)">
<summary>Sets the access rules for the specified service operation.</summary>
<param name="name">The name of the service operation on which to set access rights.</param>
<param name="rights">The rights allowed according to <see cref="T:System.Data.Services.ServiceOperationRights" /> enumeration. </param>
</member>
<member name="M:System.Data.Services.IDataServiceHost.GetQueryStringItem(System.String)">
<summary>Gets a data item identified by the identity key contained by the parameter of the method.</summary>
<param name="item">String value containing identity key of item requested.</param>
<returns>The data item requested by the query serialized as a string.</returns>
</member>
<member name="M:System.Data.Services.IDataServiceHost.ProcessException(System.Data.Services.HandleExceptionArgs)">
<summary>Handles a data service exception using information in the <paramref name="args" /> parameter.</summary>
<param name="args">
<see cref="T:System.Data.Services.HandleExceptionArgs" /> that contains information on the exception object.</param>
</member>
<member name="M:System.Data.Services.IExpandedResult.GetExpandedPropertyValue(System.String)">
<summary>Gets the value for a named property of the result.</summary>
<param name="name">The name of the property for which to get enumerable results.</param>
<returns>The value of the property.</returns>
</member>
<member name="M:System.Data.Services.IExpandProvider.ApplyExpansions(System.Linq.IQueryable,System.Collections.Generic.ICollection{System.Data.Services.ExpandSegmentCollection})">
<summary>Applies expansions to the specified <paramref name="queryable" /> parameter.</summary>
<param name="queryable">The <see cref="T:System.Linq.IQueryable`1" /> object to expand.</param>
<param name="expandPaths">A collection of <see cref="T:System.Data.Services.ExpandSegmentCollection" /> paths to expand. </param>
<returns>An <see cref="T:System.Collections.IEnumerable" /> object of the same type as the supplied <paramref name="queryable" /> object that includes the specified <paramref name="expandPaths" />.</returns>
</member>
<member name="M:System.Data.Services.IgnorePropertiesAttribute.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.IgnorePropertiesAttribute" /> class. </summary>
<param name="propertyName">A string value that contains the property or properties to be attributed.</param>
</member>
<member name="M:System.Data.Services.IgnorePropertiesAttribute.#ctor(System.String[])">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.IgnorePropertiesAttribute" /> class. </summary>
<param name="propertyNames">A string value that contains the property or properties to be attributed.</param>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`1.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`1" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`1.GetExpandedPropertyValue(System.String)">
<summary>Returns the value of the expanded property.</summary>
<param name="name">The name of the property. </param>
<returns>The value of the property.</returns>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`1.InternalGetExpandedPropertyValue(System.Int32)">
<summary>Returns a property object of the expanded property.</summary>
<param name="nameIndex">The index of the property. </param>
<returns>The property value.</returns>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`10.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`10" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`11.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`11" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`12.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`12" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`13.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`13" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`2.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`2" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`3.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`3" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`4.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`4" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`5.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`4" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`6.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`6" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`7.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`7" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`8.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`8" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ExpandedWrapper`9.#ctor">
<summary>Creates an instance of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`9" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper.GetProjectedPropertyValue(System.String)">
<summary>Gets the value of the named property for the result.</summary>
<param name="propertyName">Name of property for which to get the value.</param>
<returns>The value for the named property of the result.</returns>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper.InternalGetProjectedPropertyValue(System.Int32)">
<summary>Gets the value for the specified property by its index.</summary>
<param name="propertyIndex">Index of the property for which to get the value.</param>
<returns>The value for the property.</returns>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper0.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper0" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper1.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper1" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper2.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper2" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper3.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper3" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper4.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper4" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper5.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper5" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper6.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper6" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper7.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper7" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapper8.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapper8" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapperMany.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapperMany" /> class.</summary>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapperMany.InternalGetProjectedPropertyValue(System.Int32)">
<summary>Gets the value for the specified property by its index.</summary>
<param name="propertyIndex">Index of the property for which to get the value.</param>
<returns>The value for the property.</returns>
</member>
<member name="M:System.Data.Services.Internal.ProjectedWrapperManyEnd.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Internal.ProjectedWrapperManyEnd" /> class.</summary>
</member>
<member name="M:System.Data.Services.IRequestHandler.ProcessRequestForMessage(System.IO.Stream)">
<summary>Provides an entry point for the request. </summary>
<param name="messageBody">The <see cref="T:System.IO.Stream" /> object that contains the request.</param>
<returns>The resulting message for the supplied request.</returns>
</member>
<member name="M:System.Data.Services.IUpdatable.AddReferenceToCollection(System.Object,System.String,System.Object)">
<summary>Adds the specified value to the collection.</summary>
<param name="targetResource">Target object that defines the property.</param>
<param name="propertyName">The name of the collection property to which the resource should be added..</param>
<param name="resourceToBeAdded">The opaque object representing the resource to be added.</param>
</member>
<member name="M:System.Data.Services.IUpdatable.ClearChanges">
<summary>Cancels a change to the data.</summary>
</member>
<member name="M:System.Data.Services.IUpdatable.CreateResource(System.String,System.String)">
<summary>Creates the resource of the specified type and that belongs to the specified container.</summary>
<param name="containerName">The name of the entity set to which the resource belongs.</param>
<param name="fullTypeName">The full namespace-qualified type name of the resource.</param>
<returns>The object representing a resource of specified type and belonging to the specified container.</returns>
</member>
<member name="M:System.Data.Services.IUpdatable.DeleteResource(System.Object)">
<summary>Deletes the specified resource.</summary>
<param name="targetResource">The resource to be deleted.</param>
</member>
<member name="M:System.Data.Services.IUpdatable.GetResource(System.Linq.IQueryable,System.String)">
<summary>Gets the resource of the specified type identified by a query and type name. </summary>
<param name="query">Language integrated query (LINQ) pointing to a particular resource.</param>
<param name="fullTypeName">The fully qualified type name of resource.</param>
<returns>An opaque object representing a resource of the specified type, referenced by the specified query.</returns>
</member>
<member name="M:System.Data.Services.IUpdatable.GetValue(System.Object,System.String)">
<summary>Gets the value of the specified property on the target object.</summary>
<param name="targetResource">An opaque object that represents a resource.</param>
<param name="propertyName">The name of the property whose value needs to be retrieved.</param>
<returns>The value of the object.</returns>
</member>
<member name="M:System.Data.Services.IUpdatable.RemoveReferenceFromCollection(System.Object,System.String,System.Object)">
<summary>Removes the specified value from the collection.</summary>
<param name="targetResource">The target object that defines the property.</param>
<param name="propertyName">The name of the property whose value needs to be updated.</param>
<param name="resourceToBeRemoved">The property value that needs to be removed.</param>
</member>
<member name="M:System.Data.Services.IUpdatable.ResetResource(System.Object)">
<summary>Resets the resource identified by the parameter <paramref name="resource " />to its default value.</summary>
<param name="resource">The resource to be updated.</param>
<returns>The resource with its value reset to the default value.</returns>
</member>
<member name="M:System.Data.Services.IUpdatable.ResolveResource(System.Object)">
<summary>Returns the instance of the resource represented by the specified resource object.</summary>
<param name="resource">The object representing the resource whose instance needs to be retrieved.</param>
<returns>Returns the instance of the resource represented by the specified resource object.</returns>
</member>
<member name="M:System.Data.Services.IUpdatable.SaveChanges">
<summary>Saves all the changes that have been made by using the <see cref="T:System.Data.Services.IUpdatable" /> APIs.</summary>
</member>
<member name="M:System.Data.Services.IUpdatable.SetReference(System.Object,System.String,System.Object)">
<summary>Sets the value of the specified reference property on the target object.</summary>
<param name="targetResource">The target object that defines the property.</param>
<param name="propertyName">The name of the property whose value needs to be updated.</param>
<param name="propertyValue">The property value to be updated.</param>
</member>
<member name="M:System.Data.Services.IUpdatable.SetValue(System.Object,System.String,System.Object)">
<summary>Sets the value of the property with the specified name on the target resource to the specified property value.</summary>
<param name="targetResource">The target object that defines the property.</param>
<param name="propertyName">The name of the property whose value needs to be updated.</param>
<param name="propertyValue">The property value for update.</param>
</member>
<member name="M:System.Data.Services.MimeTypeAttribute.#ctor(System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.MimeTypeAttribute" /> class. </summary>
<param name="memberName">The name of the attribute.</param>
<param name="mimeType">The MIME type of the attribute.</param>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.Compare(System.Boolean,System.Boolean)">
<summary>Returns comparison information for Boolean parameters in an operation expression.</summary>
<param name="left">The first parameter value.</param>
<param name="right">The second parameter value.</param>
<returns>Value Condition -1
<paramref name="left" /> is less than <paramref name="right" />. 0 x equals y. 1
<paramref name="left" /> is greater than <paramref name="right" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.Compare(System.Guid,System.Guid)">
<summary>Returns comparison information for GUID parameters in an operation expression.</summary>
<param name="left">The first parameter value.</param>
<param name="right">The second parameter value.</param>
<returns>Value Condition -1
<paramref name="left" /> is less than <paramref name="right" />. 0 x equals y. 1
<paramref name="left" /> is greater than <paramref name="right" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.Compare(System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
<summary>Returns comparison information for nullable Boolean parameters in an operation expression.</summary>
<param name="left">The first parameter value.</param>
<param name="right">The second parameter value.</param>
<returns>Value Condition -1
<paramref name="left" /> is less than <paramref name="right" />. 0 x equals y. 1
<paramref name="left" /> is greater than <paramref name="right" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.Compare(System.Nullable{System.Guid},System.Nullable{System.Guid})">
<summary>Returns comparison information for nullable GUID parameters in an operation expression.</summary>
<param name="left">The first parameter value.</param>
<param name="right">The second parameter value.</param>
<returns>Value Condition -1
<paramref name="left" /> is less than <paramref name="right" />. 0 x equals y. 1
<paramref name="left" /> is greater than <paramref name="right" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.Compare(System.String,System.String)">
<summary>Returns comparison information for string parameters in an operation expression.</summary>
<param name="left">The first parameter value.</param>
<param name="right">The second parameter value.</param>
<returns>Value Condition -1
<paramref name="left" /> is less than <paramref name="right" />. 0 x equals y. 1
<paramref name="left" /> is greater than <paramref name="right" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.Convert(System.Object,System.Data.Services.Providers.ResourceType)">
<summary>Casts a value to a specified type.</summary>
<param name="value">The value to cast to the requested <see langword="type" />.</param>
<param name="type">Resource type for which to check.</param>
<returns>The <paramref name="value" /> cast to the requested <paramref name="type" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.GetSequenceValue``1(System.Object,System.Data.Services.Providers.ResourceProperty)">
<summary>Gets a named value from the specified object as a sequence.</summary>
<param name="value">Object that contains the value.</param>
<param name="property">
<see cref="T:System.Data.Services.Providers.ResourceProperty" /> that is the property the value of which must be returned.</param>
<typeparam name="T">Type of the resulting sequence.</typeparam>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> instance that contains the requested value as a sequence.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.GetValue(System.Object,System.Data.Services.Providers.ResourceProperty)">
<summary>Gets a named value from the specified object.</summary>
<param name="value">Object that contains the value.</param>
<param name="property">
<see cref="T:System.Data.Services.Providers.ResourceProperty" /> that is the property the value of which must be returned.</param>
<returns>An object that is the requested value.</returns>
</member>
<member name="M:System.Data.Services.Providers.DataServiceProviderMethods.TypeIs(System.Object,System.Data.Services.Providers.ResourceType)">
<summary>Determines if the value is of a specified type.</summary>
<param name="value">The value to check.</param>
<param name="type">
<see cref="T:System.Data.Services.Providers.ResourceType" /> to compare with.</param>
<returns>A <see cref="T:System.Boolean" /> value that is <see langword="true" /> if the value is of the specified type; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceMetadataProvider.GetDerivedTypes(System.Data.Services.Providers.ResourceType)">
<summary>Attempts to return all types that derive from the specified resource type.</summary>
<param name="resourceType">The base <see cref="T:System.Data.Services.Providers.ResourceType" />.</param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of derived <see cref="T:System.Data.Services.Providers.ResourceType" /> objects.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceMetadataProvider.GetResourceAssociationSet(System.Data.Services.Providers.ResourceSet,System.Data.Services.Providers.ResourceType,System.Data.Services.Providers.ResourceProperty)">
<summary>Gets the <see cref="T:System.Data.Services.Providers.ResourceAssociationSet" /> instance when given the source association end.</summary>
<param name="resourceSet">Resource set of the source association end.</param>
<param name="resourceType">Resource type of the source association end.</param>
<param name="resourceProperty">Resource property of the source association end.</param>
<returns>A <see cref="T:System.Data.Services.Providers.ResourceAssociationSet" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceMetadataProvider.HasDerivedTypes(System.Data.Services.Providers.ResourceType)">
<summary>Determines whether a resource type has derived types.</summary>
<param name="resourceType">A <see cref="T:System.Data.Services.Providers.ResourceType" /> object to evaluate.</param>
<returns>
<see langword="true" /> when <paramref name="resourceType" /> represents an entity that has derived types; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceMetadataProvider.TryResolveResourceSet(System.String,System.Data.Services.Providers.ResourceSet@)">
<summary>Tries to get a resource set based on the specified name.</summary>
<param name="name">Name of the <see cref="T:System.Data.Services.Providers.ResourceSet" /> to resolve.</param>
<param name="resourceSet">Returns the resource set or a <see langword="null" /> value if a resource set with the given <paramref name="name" /> is not found.</param>
<returns>
<see langword="true" /> when resource set with the given <paramref name="name" /> is found; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceMetadataProvider.TryResolveResourceType(System.String,System.Data.Services.Providers.ResourceType@)">
<summary>Tries to get a resource type based on the specified name.</summary>
<param name="name">Name of the type to resolve.</param>
<param name="resourceType">Returns the resource type or a <see langword="null" /> value if a resource type with the given <paramref name="name" /> is not found.</param>
<returns>
<see langword="true" /> when resource type with the given <paramref name="name" /> is found; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceMetadataProvider.TryResolveServiceOperation(System.String,System.Data.Services.Providers.ServiceOperation@)">
<summary>Tries to get a service operation based on the specified name.</summary>
<param name="name">Name of the service operation to resolve.</param>
<param name="serviceOperation">Returns the service operation or a <see langword="null" /> value if a service operation with the given <paramref name="name" /> is not found.</param>
<returns>
<see langword="true" /> when service operation with the given <paramref name="name" /> is found; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServicePagingProvider.GetContinuationToken(System.Collections.IEnumerator)">
<summary>Returns the next-page token to put in the <see langword="$skiptoken" /> query option.</summary>
<param name="enumerator">Enumerator for which the continuation token is being requested.</param>
<returns>The next-page token as a collection of primitive types.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServicePagingProvider.SetContinuationToken(System.Linq.IQueryable,System.Data.Services.Providers.ResourceType,System.Object[])">
<summary>Gets the next-page token from the <see langword="$skiptoken" /> query option in the request URI.</summary>
<param name="query">Query for which the continuation token is being provided.</param>
<param name="resourceType">Resource type of the result on which the <see langword="$skip" /> token is to be applied.</param>
<param name="continuationToken">Continuation token parsed into primitive type values.</param>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceQueryProvider.GetOpenPropertyValue(System.Object,System.String)">
<summary>Gets the value of the open property.</summary>
<param name="target">Instance of the type that declares the open property.</param>
<param name="propertyName">Name of the open property.</param>
<returns>The value of the open property.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceQueryProvider.GetOpenPropertyValues(System.Object)">
<summary>Gets the name and values of all the properties that are defined in the given instance of an open type.</summary>
<param name="target">Instance of the type that declares the open property.</param>
<returns>A collection of name and values of all the open properties.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceQueryProvider.GetPropertyValue(System.Object,System.Data.Services.Providers.ResourceProperty)">
<summary>Gets the value of the open property.</summary>
<param name="target">Instance of the type that declares the open property.</param>
<param name="resourceProperty">Value for the open property.</param>
<returns>Value for the property.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceQueryProvider.GetQueryRootForResourceSet(System.Data.Services.Providers.ResourceSet)">
<summary>Gets the <see cref="T:System.Linq.IQueryable`1" /> that represents the container. </summary>
<param name="resourceSet">The resource set.</param>
<returns>An <see cref="T:System.Linq.IQueryable`1" /> that represents the resource set, or a <see langword="null" /> value if there is no resource set for the specified <paramref name="resourceSet" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceQueryProvider.GetResourceType(System.Object)">
<summary>Gets the resource type for the instance that is specified by the parameter.</summary>
<param name="target">Instance to extract a resource type from.</param>
<returns>The <see cref="T:System.Data.Services.Providers.ResourceType" /> of the supplied object. </returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceQueryProvider.InvokeServiceOperation(System.Data.Services.Providers.ServiceOperation,System.Object[])">
<summary>Invokes the given service operation and returns the results.</summary>
<param name="serviceOperation">Service operation to invoke.</param>
<param name="parameters">Values of parameters to pass to the service operation.</param>
<returns>The result of the service operation, or a <see langword="null" /> value for a service operation that returns <see langword="void" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.DeleteStream(System.Object,System.Data.Services.DataServiceOperationContext)">
<summary>Deletes the associated media resource when a media link entry is deleted. </summary>
<param name="entity">The media link entry that is deleted.</param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance that processes the request.</param>
<exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> or <paramref name="operationContext" /> are <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">When <paramref name="entity" /> is not an entity that has a binary property to stream.</exception>
<exception cref="T:System.Data.Services.DataServiceException">When the stream associated with the <paramref name="entity" /> cannot be deleted.</exception>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.GetReadStream(System.Object,System.String,System.Nullable{System.Boolean},System.Data.Services.DataServiceOperationContext)">
<summary>Returns a stream that contains the media resource data for the specified entity, which is a media link entry.</summary>
<param name="entity">The entity that is a media link entry with a related media resource.</param>
<param name="etag">The eTag value sent as part of the HTTP request that is sent to the data service.</param>
<param name="checkETagForEquality">A nullable <see cref="T:System.Boolean" /> value that determines whether the data service must the type of eTag that is used. </param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance used by the data service to process the request.</param>
<returns>The data <see cref="T:System.IO.Stream" /> that contains the binary property data of the <paramref name="entity" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.GetReadStreamUri(System.Object,System.Data.Services.DataServiceOperationContext)">
<summary>Returns the URI that is used to request the media resource that belongs to the specified entity.</summary>
<param name="entity">The entity that is a media link entry with a related media resource.</param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance used by the data service to process the request.</param>
<returns>A <see cref="T:System.Uri" /> value that is used to request the binary data stream.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.GetStreamContentType(System.Object,System.Data.Services.DataServiceOperationContext)">
<summary>Returns the content type of the media resource that belongs to the specified entity.</summary>
<param name="entity">The entity that is a media link entry with a related media resource.</param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance used by the data service to process the request.</param>
<returns>A valid Content-Type of the binary data.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.GetStreamETag(System.Object,System.Data.Services.DataServiceOperationContext)">
<summary>Returns the eTag of the media resource that belongs to the specified media link entry.</summary>
<param name="entity">The entity that is a media link entry with a related media resource.</param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance used by the data service to process the request.</param>
<returns>eTag of the media resource associated with the <paramref name="entity" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.GetWriteStream(System.Object,System.String,System.Nullable{System.Boolean},System.Data.Services.DataServiceOperationContext)">
<summary>Returns the stream that the data service uses to write the binary data for the media resource received from the client that belongs to the specified entity.</summary>
<param name="entity">The entity that is a media link entry with a related media resource.</param>
<param name="etag">The eTag value that is sent as part of the HTTP request that is sent to the data service.</param>
<param name="checkETagForEquality">A nullable <see cref="T:System.Boolean" /> value that indicates the type of concurrency check requested by the client. </param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance that is used by the data service to process the request.</param>
<returns>A valid <see cref="T:System.Stream" /> the data service uses to write the contents of a binary data received from the client.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceStreamProvider.ResolveType(System.String,System.Data.Services.DataServiceOperationContext)">
<summary>Returns a namespace-qualified type name that represents the type that the data service runtime must create for the media link entry that is associated with the data stream for the media resource that is being inserted.</summary>
<param name="entitySetName">Fully-qualified entity set name.</param>
<param name="operationContext">The <see cref="T:System.Data.Services.DataServiceOperationContext" /> instance that is used by the data service to process the request.</param>
<returns>A namespace-qualified type name.</returns>
</member>
<member name="M:System.Data.Services.Providers.IDataServiceUpdateProvider.SetConcurrencyValues(System.Object,System.Nullable{System.Boolean},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
<summary>Supplies the eTag value for the given entity resource.</summary>
<param name="resourceCookie">Cookie that represents the resource.</param>
<param name="checkForEquality">A <see cref="T:System.Boolean" /> that is <see langword="true" /> when property values must be compared for equality; <see langword="false" /> when property values must be compared for inequality.</param>
<param name="concurrencyValues">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> list of the eTag property names and corresponding values.</param>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Add(System.Object,System.Object)">
<summary>Adds two values.</summary>
<param name="left">First value to add.</param>
<param name="right">Second value to add.</param>
<returns>The result of the arithmetic operation.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.AndAlso(System.Object,System.Object)">
<summary>Performs a logical <see langword="and" /> operation between two expressions.</summary>
<param name="left">Left value.</param>
<param name="right">Right value.</param>
<returns>The result of the logical <see langword="and" /> operation.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Ceiling(System.Object)">
<summary>Returns the ceiling of the given value.</summary>
<param name="value">A <see cref="T:System.Decimal" /> or <see cref="T:System.Double" /> object.</param>
<returns>The ceiling value for the given value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Concat(System.Object,System.Object)">
<summary>Concatenates two string values.</summary>
<param name="first">The first string.</param>
<param name="second">The second string.</param>
<returns>A new instance that is the concatenated string.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Convert(System.Object,System.Data.Services.Providers.ResourceType)">
<summary>Converts a value to the specified type.</summary>
<param name="value">Value to convert.</param>
<param name="type">Resource type for the conversion.</param>
<returns>The converted value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Day(System.Object)">
<summary>Returns the day value of the given <see cref="T:System.DateTime" /> instance.</summary>
<param name="dateTime">A <see cref="T:System.DateTime" /> object.</param>
<returns>The day value of the given <see cref="T:System.DateTime" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Divide(System.Object,System.Object)">
<summary>Divides two values.</summary>
<param name="left">The first value (dividend).</param>
<param name="right">The second value (divisor).</param>
<returns>The divided value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.EndsWith(System.Object,System.Object)">
<summary>Determines whether the end of one string matches another string.</summary>
<param name="targetString">The string being compared.</param>
<param name="substring">The string to compare to.</param>
<returns>Returns <see langword="true" /> when <paramref name="targetString" /> ends with <paramref name="substring" />; otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Equal(System.Object,System.Object)">
<summary>Determines whether the specified objects are considered equal.</summary>
<param name="left">The first object to compare.</param>
<param name="right">The second object to compare.</param>
<returns>A <see cref="T:System.Boolean" /> value of <see langword="true" /> when both objects are equal; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Floor(System.Object)">
<summary>Returns the floor of the given value.</summary>
<param name="value">The <see cref="T:System.Decimal" /> or <see cref="T:System.Double" /> object to evaluate.</param>
<returns>Returns the floor value for the given object.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.GetValue(System.Object,System.String)">
<summary>Gets a value from the specified property of a specified object.</summary>
<param name="value">Object from which to get the property value.</param>
<param name="propertyName">Name of property from which to get the value.</param>
<returns>The requested value; <see langword="null" /> if the value cannot be determined.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.GreaterThan(System.Object,System.Object)">
<summary>Determines whether the value of one object is greater than another object.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>Returns <see langword="true" /> when the value of the first object is greater than that of the second object; otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.GreaterThanOrEqual(System.Object,System.Object)">
<summary>Determines whether the value of one object is greater than or equal to another object.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>Returns <see langword="true" /> when the value of the first object is greater than or equal to that of the second object; otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Hour(System.Object)">
<summary>Returns the hour value of the given <see cref="T:System.DateTime" /> instance.</summary>
<param name="dateTime">A <see cref="T:System.DateTime" /> object.</param>
<returns>The hour value of the given <see cref="T:System.DateTime" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.IndexOf(System.Object,System.Object)">
<summary>Returns the index of a substring in the target string.</summary>
<param name="targetString">The target string.</param>
<param name="substring">The substring to find.</param>
<returns>Returns the index of the location of <paramref name="substring" /> in the <paramref name="targetString" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Length(System.Object)">
<summary>Gets the number of characters in the supplied string object. </summary>
<param name="value">The string to be checked.</param>
<returns>The length of the string value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.LessThan(System.Object,System.Object)">
<summary>Determines whether the value of one object is less than another object.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>Returns <see langword="true" /> when the value of the first object is less than that of the second object; otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.LessThanOrEqual(System.Object,System.Object)">
<summary>Determines whether the value of one object is less than or equal to another object.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>Returns <see langword="true" /> when the value of the first object is less than or equal to that of the second object; otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Minute(System.Object)">
<summary>Returns the minute value of the given <see cref="T:System.DateTime" /> instance.</summary>
<param name="dateTime">A <see cref="T:System.DateTime" /> object.</param>
<returns>The minute value of the given <see cref="T:System.DateTime" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Modulo(System.Object,System.Object)">
<summary>Calculates the arithmetic remainder of dividing one value by a second value. </summary>
<param name="left">The first value (dividend).</param>
<param name="right">The second value (divisor).</param>
<returns>The remainder value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Month(System.Object)">
<summary>Returns the month value of the given <see cref="T:System.DateTime" /> instance.</summary>
<param name="dateTime">A <see cref="T:System.DateTime" /> object.</param>
<returns>The month value of the given <see cref="T:System.DateTime" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Multiply(System.Object,System.Object)">
<summary>Multiplies two values.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>The product of the two values.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Negate(System.Object)">
<summary>Returns the result of multiplying the specified value by negative one.</summary>
<param name="value">The value to negate.</param>
<returns>The product of <paramref name="value" /> multiplied by negative one.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Not(System.Object)">
<summary>Performs a bitwise (logical) complement operation on the supplied value.</summary>
<param name="value">Value to logically complement.</param>
<returns>A bitwise complement of the supplied value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.NotEqual(System.Object,System.Object)">
<summary>Performs a logical comparison of the two values to determine if they are not equal.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>A <see cref="T:System.Boolean" /> value of <see langword="true" /> when both objects are not equal; otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.OrElse(System.Object,System.Object)">
<summary>Performs a logical <see langword="OR" /> operation on two values.</summary>
<param name="left">The first value.</param>
<param name="right">The second value.</param>
<returns>The result of the logical <see langword="OR" /> operation.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Replace(System.Object,System.Object,System.Object)">
<summary>Replaces one substring with a second substring in a target string.</summary>
<param name="targetString">The string with the substring to replace.</param>
<param name="substring">The substring to be replaced.</param>
<param name="newString">The new substring.</param>
<returns>A new string with the substring replaced with the new substring.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Round(System.Object)">
<summary>Rounds the supplied value.</summary>
<param name="value">A <see cref="T:System.Decimal" /> or <see cref="T:System.Double" /> to round.</param>
<returns>The rounded value.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Second(System.Object)">
<summary>Returns the second value of the given <see cref="T:System.DateTime" /> instance.</summary>
<param name="dateTime">A <see cref="T:System.DateTime" /> object.</param>
<returns>The second value of the given <see cref="T:System.DateTime" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.StartsWith(System.Object,System.Object)">
<summary>Checks whether the target string starts with the substring.</summary>
<param name="targetString">The string being compared.</param>
<param name="substring">The substring that the <paramref name="targetString" /> might start with.</param>
<returns>Returns <see langword="true" /> if the target string starts with the given substring, otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Substring(System.Object,System.Object)">
<summary>Returns the substring after the specified starting index location.</summary>
<param name="targetString">The string from which to return the substring.</param>
<param name="startIndex">The starting index for the substring.</param>
<returns>The substring.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Substring(System.Object,System.Object,System.Object)">
<summary>Returns the substring of a specific length after the specified starting index location.</summary>
<param name="targetString">The string from which to return the substring.</param>
<param name="startIndex">The starting index for the substring.</param>
<param name="length">The length of the substring.</param>
<returns>The substring.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.SubstringOf(System.Object,System.Object)">
<summary>Determines whether a substring occurs in another string.</summary>
<param name="substring">The substring to locate.</param>
<param name="targetString">The string to search.</param>
<returns>
<see langword="true" /> when <paramref name="substring" /> occurs in <paramref name="targetString" />, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Subtract(System.Object,System.Object)">
<summary>Subtracts two values.</summary>
<param name="left">First value in the subtraction.</param>
<param name="right">Second value in the subtraction.</param>
<returns>The result of the arithmetic operation.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.ToLower(System.Object)">
<summary>Returns a copy of a string converted to lowercase.</summary>
<param name="targetString">The string to convert.</param>
<returns>A new string value with only lowercase.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.ToUpper(System.Object)">
<summary>Returns a copy of a string converted to uppercase.</summary>
<param name="targetString">The string to convert.</param>
<returns>A new string value with only uppercase characters.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Trim(System.Object)">
<summary>Removes all leading and trailing white-space characters from a string.</summary>
<param name="targetString">The string to trim.</param>
<returns>The trimmed string.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.TypeIs(System.Object,System.Data.Services.Providers.ResourceType)">
<summary>Checks the type of a specified value.</summary>
<param name="value">The value to check.</param>
<param name="type">Resource type for which to check.</param>
<returns>A <see cref="T:System.Boolean" /> value that is <see langword="true" /> when the value is of the specified resource type; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Data.Services.Providers.OpenTypeMethods.Year(System.Object)">
<summary>Returns the year value of the given <see cref="T:System.DateTime" /> instance.</summary>
<param name="dateTime">A <see cref="T:System.DateTime" /> object.</param>
<returns>The year value of the given <see cref="T:System.DateTime" /> instance.</returns>
</member>
<member name="M:System.Data.Services.Providers.ResourceAssociationSet.#ctor(System.String,System.Data.Services.Providers.ResourceAssociationSetEnd,System.Data.Services.Providers.ResourceAssociationSetEnd)">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Providers.ResourceAssociationSet" /> class.</summary>
<param name="name">Name of the association set.</param>
<param name="end1">
<see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> that is at the source end of the association set.</param>
<param name="end2">
<see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> that is at the target end of the association set.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceAssociationSetEnd.#ctor(System.Data.Services.Providers.ResourceSet,System.Data.Services.Providers.ResourceType,System.Data.Services.Providers.ResourceProperty)">
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> class.</summary>
<param name="resourceSet">Resource set to which the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> end belongs.</param>
<param name="resourceType">Resource type to which the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> end belongs.</param>
<param name="resourceProperty">Resource property that returns the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> end.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceProperty.#ctor(System.String,System.Data.Services.Providers.ResourcePropertyKind,System.Data.Services.Providers.ResourceType)">
<summary>Initializes a new <see cref="T:System.Data.Services.Providers.ResourceProperty" /> for an open property.</summary>
<param name="name">Property name for the property as string.</param>
<param name="kind">
<see cref="T:System.Data.Services.Providers.ResourcePropertyKind" />.</param>
<param name="propertyResourceType">The <see cref="T:System.Data.Services.Providers.ResourceType" /> of the resource to which the property refers.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceProperty.SetReadOnly">
<summary>Sets the resource property to read-only.</summary>
</member>
<member name="M:System.Data.Services.Providers.ResourceSet.#ctor(System.String,System.Data.Services.Providers.ResourceType)">
<summary>Creates a new collection of entity type values.</summary>
<param name="name">The name of the set of items as string.</param>
<param name="elementType">The <see cref="T:System.Data.Services.Providers.ResourceType" /> of the items in the set.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceSet.SetReadOnly">
<summary>Sets the read-only status of the collection.</summary>
</member>
<member name="M:System.Data.Services.Providers.ResourceType.#ctor(System.Type,System.Data.Services.Providers.ResourceTypeKind,System.Data.Services.Providers.ResourceType,System.String,System.String,System.Boolean)">
<summary>Creates an instance of a data service <see cref="T:System.Data.Services.Providers.ResourceType" />.</summary>
<param name="instanceType">CLR type that represents the format inside the WCF Data Services runtime.</param>
<param name="resourceTypeKind">
<see cref="T:System.Data.Services.Providers.ResourceTypeKind" /> of the resource type.</param>
<param name="baseType">Base type of the resource type as string.</param>
<param name="namespaceName">Namespace name of the resource type as string.</param>
<param name="name">Name of the given resource type as string.</param>
<param name="isAbstract">Boolean value that indicates whether the resource type is an abstract type.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceType.AddEntityPropertyMappingAttribute(System.Data.Services.Common.EntityPropertyMappingAttribute)">
<summary>Adds an <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> for the resource type.</summary>
<param name="attribute">The <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> to add.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceType.AddProperty(System.Data.Services.Providers.ResourceProperty)">
<summary>Adds the property supplied by the <paramref name="resourceProperty" /> parameter to the type.</summary>
<param name="property">
<see cref="T:System.Data.Services.Providers.ResourceProperty" /> property to be added.</param>
</member>
<member name="M:System.Data.Services.Providers.ResourceType.GetPrimitiveResourceType(System.Type)">
<summary>Gets a resource type that represent a primitive type when given a <see cref="T:System.Type" /> object.</summary>
<param name="type">
<see cref="T:System.Type" /> type from which to get the primitive type.</param>
<returns>The resource type.</returns>
</member>
<member name="M:System.Data.Services.Providers.ResourceType.LoadPropertiesDeclaredOnThisType">
<summary>Returns a list of properties declared by this resource type. </summary>
<returns>The list of properties declared on this type.</returns>
</member>
<member name="M:System.Data.Services.Providers.ResourceType.SetReadOnly">
<summary>Sets the resource type to read-only.</summary>
</member>
<member name="M:System.Data.Services.Providers.ServiceOperation.#ctor(System.String,System.Data.Services.Providers.ServiceOperationResultKind,System.Data.Services.Providers.ResourceType,System.Data.Services.Providers.ResourceSet,System.String,System.Collections.Generic.IEnumerable{System.Data.Services.Providers.ServiceOperationParameter})">
<summary>Creates a new instance of the service operation.</summary>
<param name="name">Name of the service operation.</param>
<param name="resultKind">
<see cref="T:System.Data.Services.Providers.ServiceOperationResultKind" /> that is the kind of result expected from this operation.</param>
<param name="resultType">
<see cref="T:System.Data.Services.Providers.ResourceType" /> that is the result of the operation.</param>
<param name="resultSet">
<see cref="T:System.Data.Services.Providers.ResourceSet" /> that is the result of the operation.</param>
<param name="method">Protocol method to which the service operation responds.</param>
<param name="parameters">Ordered collection of <see cref="T:System.Data.Services.Providers.ServiceOperationParameter" /> objects that are parameters for the operation.</param>
</member>
<member name="M:System.Data.Services.Providers.ServiceOperation.SetReadOnly">
<summary>Sets whether the service operation is read-only.</summary>
</member>
<member name="M:System.Data.Services.Providers.ServiceOperationParameter.#ctor(System.String,System.Data.Services.Providers.ResourceType)">
<summary>Creates a new instance of <see cref="T:System.Data.Services.Providers.ServiceOperationParameter" />.</summary>
<param name="name">Name of parameter.</param>
<param name="parameterType">Data type of parameter.</param>
</member>
<member name="M:System.Data.Services.Providers.ServiceOperationParameter.SetReadOnly">
<summary>Sets the service operation parameter to read-only.</summary>
</member>
<member name="M:System.Data.Services.QueryInterceptorAttribute.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.QueryInterceptorAttribute" /> class for the entity set specified by the <paramref name="entitySetName" /> parameter.</summary>
<param name="entitySetName">The name of the entity set that contains the entity to which the interceptor applies.</param>
</member>
<member name="M:System.Data.Services.SingleResultAttribute.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.SingleResultAttribute" /> class. </summary>
</member>
<member name="P:System.Data.Services.ChangeInterceptorAttribute.EntitySetName">
<summary>Gets the name of the entity set to which the interceptor applies.</summary>
<returns>The string value that represents entity set name.</returns>
</member>
<member name="P:System.Data.Services.Configuration.DataServicesFeaturesSection.ReplaceFunction">
<summary>Gets or sets a DataServiceReplaceFunctionFeature instance.</summary>
<returns>A DataServiceReplaceFunctionFeature instance.</returns>
</member>
<member name="P:System.Data.Services.Configuration.DataServicesReplaceFunctionFeature.Enable">
<summary>Gets or sets a boolean value that specifies if the Replace functionality is enabled.</summary>
<returns>True if the replace functionality is enabled, otherwise false.</returns>
</member>
<member name="P:System.Data.Services.Configuration.DataServicesSectionGroup.Features">
<summary>Gets the DataServicesFeaturesSection instance associated with the DataServicesSectionGroup.</summary>
<returns>A DataServicesFeaturesSection instance.</returns>
</member>
<member name="P:System.Data.Services.DataService`1.CurrentDataSource">
<summary>Gets the data source instance currently being used to process the request.</summary>
<returns>The data source instance for the service.</returns>
</member>
<member name="P:System.Data.Services.DataService`1.ProcessingPipeline">
<summary>Gets an object that defines the events for the data service processing pipeline.</summary>
<returns>A <see cref="T:System.Data.Services.DataServiceProcessingPipeline" /> object that is used to define events for the data service processing pipeline.</returns>
</member>
<member name="P:System.Data.Services.DataServiceBehavior.AcceptCountRequests">
<summary>Gets or sets whether requests with the <see langword="$count" /> path segment or the <see langword="$inlinecount" /> query options are accepted.</summary>
<returns>
<see langword="true" /> if count requests are supported; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.DataServiceBehavior.AcceptProjectionRequests">
<summary>Gets or sets whether projection requests should be accepted.</summary>
<returns>
<see langword="true" /> if projection requests are supported; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.DataServiceBehavior.AcceptReplaceFunctionInQuery">
<summary>Allow replace functions in the request url.</summary>
<returns>Returns <see cref="T:System.Boolean" />.</returns>
</member>
<member name="P:System.Data.Services.DataServiceBehavior.InvokeInterceptorsOnLinkDelete">
<summary>Gets or sets whether to invoke change interceptors when a link is deleted.</summary>
<returns>A <see cref="T:System.Boolean" /> value that is <see langword="true" /> when interceptors should be invoked; otherwise <see langword="false" />. </returns>
</member>
<member name="P:System.Data.Services.DataServiceBehavior.MaxProtocolVersion">
<summary>Gets or sets the maximum protocol version that is supported by the response sent by the data service.</summary>
<returns>A <see cref="T:System.Data.Services.Common.DataServiceProtocolVersion" /> that is the maximum version allowed in the response.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.DataServiceBehavior">
<summary>Gets a <see cref="T:System.Data.Services.DataServiceBehavior" /> object that defines additional behaviors of the data service.</summary>
<returns>A <see cref="T:System.Data.Services.DataServiceBehavior" /> object.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.EnableTypeConversion">
<summary>Gets or sets whether the data service runtime should convert the type that is contained in the payload to the actual property type that is specified in the request.</summary>
<returns>A Boolean value that indicates whether to perform the conversion.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.MaxBatchCount">
<summary>Gets or sets the maximum number of change sets and query operations that are allowed in a single batch.</summary>
<returns>A value that is the maximum number of change sets.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.MaxChangesetCount">
<summary>Gets or set the maximum number of changes that can be included in a single change set.</summary>
<returns>The maximum number of changes allowed.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.MaxExpandCount">
<summary>Gets or sets the maximum number of related entities that can be included in a single request by using the <see langword="$expand" /> operator.</summary>
<returns>The maximum number of related entities.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.MaxExpandDepth">
<summary>Get or sets the maximum number of related entities that can be included in an <see langword="$expand" /> path in a single request.</summary>
<returns>The maximum depth of an <see langword="$expand" /> path.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.MaxObjectCountOnInsert">
<summary>Get or sets the maximum number of objects to insert that can be contained in a single POST request.</summary>
<returns>The maximum number of objects.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.MaxResultsPerCollection">
<summary>Get or sets the maximum number of items in each returned collection.</summary>
<returns>The maximum number of items.</returns>
</member>
<member name="P:System.Data.Services.DataServiceConfiguration.UseVerboseErrors">
<summary>Gets or sets whether verbose errors should be returned by the data service.</summary>
<returns>Whether verbose errors are returned.</returns>
</member>
<member name="P:System.Data.Services.DataServiceException.ErrorCode">
<summary>Gets the error code.</summary>
<returns>The integer value that represents the error code.</returns>
</member>
<member name="P:System.Data.Services.DataServiceException.MessageLanguage">
<summary>Gets the error message language.</summary>
<returns>The string value that represents the message language.</returns>
</member>
<member name="P:System.Data.Services.DataServiceException.StatusCode">
<summary>Gets the HTTP status code returned by the exception.</summary>
<returns>HTTP status code for the exception.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.AbsoluteRequestUri">
<summary>Get the request URI for the current operation.</summary>
<returns>The <see cref="T:System.Uri" /> of the operation.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.AbsoluteServiceUri">
<summary>Gets the base service URI for the request.</summary>
<returns>The base <see cref="T:System.Uri" /> of the operation.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.IsBatchRequest">
<summary>Gets a value that indicates whether the current operation is part of a batch request.</summary>
<returns>
<see langword="true" /> when the operation is part of a batch request; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.RequestHeaders">
<summary>Gets the request headers for the current operation.</summary>
<returns>A <see cref="T:System.Net.WebHeaderCollection" /> object that contains the request headers.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.RequestMethod">
<summary>Gets the HTTP request method for the operation</summary>
<returns>The HTTP request method.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.ResponseHeaders">
<summary>Gets the response headers for the current operation.</summary>
<returns>A <see cref="T:System.Net.WebHeaderCollection" /> object that contains the response headers.</returns>
</member>
<member name="P:System.Data.Services.DataServiceOperationContext.ResponseStatusCode">
<summary>Gets or sets the status code of the response.</summary>
<returns>The status code of the operation response. </returns>
</member>
<member name="P:System.Data.Services.DataServiceProcessingPipelineEventArgs.OperationContext">
<summary>Gets the context of the operation that raised the event.</summary>
<returns>A <see cref="T:System.Data.Services.DataServiceOperationContext" /> that is the operation context. </returns>
</member>
<member name="P:System.Data.Services.ETagAttribute.PropertyNames">
<summary>Gets the names of properties used in the <see cref="T:System.Data.Services.ETagAttribute" />.</summary>
<returns>String value containing property names.</returns>
</member>
<member name="P:System.Data.Services.ExpandSegment.ExpandedProperty">
<summary>Gets the property to be expanded.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.ExpandSegment.Filter">
<summary>The filter option in the query to which the expand segment applies.</summary>
<returns>An expression that specifies the filter on target data.</returns>
</member>
<member name="P:System.Data.Services.ExpandSegment.HasFilter">
<summary>A Boolean value that indicates whether the expand statement is used with a filter expression.</summary>
<returns>True or false.</returns>
</member>
<member name="P:System.Data.Services.ExpandSegment.MaxResultsExpected">
<summary>Gets the maximum number of results expected.</summary>
<returns>The integer value that indicates maximum number of results.</returns>
</member>
<member name="P:System.Data.Services.ExpandSegment.Name">
<summary>The name of the property to be expanded.</summary>
<returns>A string value containing the name of the property.</returns>
</member>
<member name="P:System.Data.Services.ExpandSegmentCollection.HasFilter">
<summary>Boolean value that indicates whether segments to be expanded include a filter clause.</summary>
<returns>Boolean value that indicates whether segments to be expanded include a filter clause. </returns>
</member>
<member name="P:System.Data.Services.HandleExceptionArgs.Exception">
<summary>Gets or sets the exception that will be processed and returned in the response.</summary>
<returns>The exception that will be processed and returned in the response.</returns>
</member>
<member name="P:System.Data.Services.HandleExceptionArgs.ResponseContentType">
<summary>Gets the response content type.</summary>
<returns>The string value that indicates the response format.</returns>
</member>
<member name="P:System.Data.Services.HandleExceptionArgs.ResponseStatusCode">
<summary>Gets the status code that will be sent back in the HTTP header section of the response when an error occurs on the data service.</summary>
<returns>An integer value of the HTTP response status code. </returns>
</member>
<member name="P:System.Data.Services.HandleExceptionArgs.ResponseWritten">
<summary>Gets a value indicating whether the response has been written. </summary>
<returns>Boolean value that indicates whether response has been written.</returns>
</member>
<member name="P:System.Data.Services.HandleExceptionArgs.UseVerboseErrors">
<summary>Gets or sets a Boolean value that indicates whether verbose errors will be returned.</summary>
<returns>The Boolean value that indicates whether verbose errors will be returned.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.MaxBatchCount">
<summary>Gets the maximum number of requests that can be handled in a batch.</summary>
<returns>Integer value that indicates the maximum number of requests that can be handled in a batch.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.MaxChangesetCount">
<summary>Gets the maximum number of change sets that can be handled in a batch.</summary>
<returns>Integer value that indicates the maximum number of change sets that can be handled in a batch.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.MaxExpandCount">
<summary>Gets or sets the maximum number of segments that can be expanded by the $expand query option for all requests to the data service. </summary>
<returns>The maximum number of segments to expand.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.MaxExpandDepth">
<summary>Gets or sets a maximum number of segments supported in a single $expand path for all requests to the data service.</summary>
<returns>Integer representing the maximum number of supported segments in $expand path.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.MaxObjectCountOnInsert">
<summary>Gets or sets the maximum number of objects that can be inserted in a single request. </summary>
<returns>The integer value that contains the maximum number of objects that can be inserted in a single request.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.MaxResultsPerCollection">
<summary>Gets the maximum number of results per collection.</summary>
<returns>The integer value that indicates the maximum number of results per collection.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceConfiguration.UseVerboseErrors">
<summary>Gets or sets whether verbose errors are used by default for all responses from the data service. </summary>
<returns>A Boolean value that indicates whether verbose errors are returned.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.AbsoluteRequestUri">
<summary>Gets an absolute URI that is the URI as sent by the client.</summary>
<returns>A string that is the absolute URI of the request.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.AbsoluteServiceUri">
<summary>Gets an absolute URI that is the root URI of the data service.</summary>
<returns>A string that is the absolute root URI of the data service.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestAccept">
<summary>The transport protocol specified by the request accept header.</summary>
<returns>String that indicates the transport protocol required by the request.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestAcceptCharSet">
<summary>Gets a string representing the value of the Accept-Charset HTTP header.</summary>
<returns>String representing the value of the Accept-Charset HTTP header.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestContentType">
<summary>Gets the transport protocol specified by the content type header.</summary>
<returns>String value that indicates content type.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestHttpMethod">
<summary>Gets the request method of GET, PUT, POST, or DELETE.</summary>
<returns>String value that indicates request method.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestIfMatch">
<summary>Gets the value for the If-Match header on the current request.</summary>
<returns>String value for the If-Match header on the current request.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestIfNoneMatch">
<summary>Gets the value for the If-None-Match header on the current request.</summary>
<returns>String value for the If-None-Match header on the current request.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestMaxVersion">
<summary>Gets the value that identifies the highest version that the request client is able to process.</summary>
<returns>A string that contains the highest version that the request client is able to process, possibly null.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestStream">
<summary>Gets the stream that contains the HTTP request body.</summary>
<returns>
<see cref="T:System.IO.Stream" /> object that contains the request body.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.RequestVersion">
<summary>Gets the value that identifies the version of the request that the client submitted, possibly null.</summary>
<returns>A string that identifies the version of the request that the client submitted, possibly null.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseCacheControl">
<summary>Gets a string value that represents cache control information.</summary>
<returns>A string value that represents cache control information.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseContentType">
<summary>Gets the transport protocol of the response.</summary>
<returns>String value containing the content type.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseETag">
<summary>Gets an eTag value that represents the state of data in response.</summary>
<returns>A string value that represents the eTag state value.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseLocation">
<summary>Gets or sets the service location.</summary>
<returns>String that contains the service location.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseStatusCode">
<summary>Gets or sets the response code that indicates results of query.</summary>
<returns>Integer value that contains the response code.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseStream">
<summary>Gets the response stream to which the HTTP response body will be written.</summary>
<returns>
<see cref="T:System.IO.Stream" /> object to which the response body will be written.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost.ResponseVersion">
<summary>Gets the version used by the host in the response.</summary>
<returns>A string value that contains the host version.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost2.RequestHeaders">
<summary>Request header for an HTTP request.</summary>
<returns>String value of header.</returns>
</member>
<member name="P:System.Data.Services.IDataServiceHost2.ResponseHeaders">
<summary>Response header for an HTTP response. </summary>
<returns>String value of header.</returns>
</member>
<member name="P:System.Data.Services.IExpandedResult.ExpandedElement">
<summary>Gets the element with expanded properties.</summary>
<returns>The object in a property expanded by <see cref="T:System.Data.Services.IExpandedResult" />.</returns>
</member>
<member name="P:System.Data.Services.IgnorePropertiesAttribute.PropertyNames">
<summary>Gets or sets the property name or names to controlled by the <see cref="T:System.Data.Services.IgnorePropertiesAttribute" /> attribute.</summary>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`1.Description">
<summary>Gets or sets the description for the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`1" />.</summary>
<returns>The description of the <see cref="T:System.Data.Services.Internal.ExpandedWrapper`1" />.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`1.ExpandedElement">
<summary>Gets or sets the element with expanded properties.</summary>
<returns>The object in a property expanded by <see cref="T:System.Data.Services.IExpandedResult" />.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`1.System#Data#Services#IExpandedResult#ExpandedElement">
<summary>Gets or sets the element with expanded properties.</summary>
<returns>The object in a property expanded by <see cref="T:System.Data.Services.IExpandedResult" />.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty6">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty7">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`10.ProjectedProperty8">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty6">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty7">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty8">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`11.ProjectedProperty9">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty10">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty6">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty7">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty8">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`12.ProjectedProperty9">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty10">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty11">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty6">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty7">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty8">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`13.ProjectedProperty9">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`2.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`3.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`3.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`4.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`4.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`4.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`5.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`5.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`5.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`5.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`6.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`6.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`6.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`6.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`6.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`7.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`7.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`7.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`7.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`7.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`7.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`8.ProjectedProperty6">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty0">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty1">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty2">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty3">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty4">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty5">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty6">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ExpandedWrapper`9.ProjectedProperty7">
<summary>Get or sets the property to expand.</summary>
<returns>The property to expand.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper.PropertyNameList">
<summary>Gets a list of property names as text in a comma-separated format.</summary>
<returns>List of comma-separated names.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper.ResourceTypeName">
<summary>Gets the full name of the <see cref="T:System.Data.Services.Providers.ResourceType" /> that represents the type of this result.</summary>
<returns>The full name of the type.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper1.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper2.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper2.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper3.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper3.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper3.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper4.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper4.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper4.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper4.ProjectedProperty3">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper5.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper5.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper5.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper5.ProjectedProperty3">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper5.ProjectedProperty4">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper6.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper6.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper6.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper6.ProjectedProperty3">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper6.ProjectedProperty4">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper6.ProjectedProperty5">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty3">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty4">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty5">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper7.ProjectedProperty6">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty3">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty4">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty5">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty6">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapper8.ProjectedProperty7">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.Next">
<summary>Gets or sets another instance of <see cref="T:System.Data.Services.Internal.ProjectedWrapperMany" /> which contains the set of the next eight projected properties, and possibly another link.</summary>
<returns>The next set of properties.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty0">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty1">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty2">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty3">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty4">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty5">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty6">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.Internal.ProjectedWrapperMany.ProjectedProperty7">
<summary>Gets or sets the property to project.</summary>
<returns>The property to project.</returns>
</member>
<member name="P:System.Data.Services.MimeTypeAttribute.MemberName">
<summary>Gets the name of the attribute.</summary>
<returns>A string value that contains the name of the attribute. </returns>
</member>
<member name="P:System.Data.Services.MimeTypeAttribute.MimeType">
<summary>Gets the MIME type of a request.</summary>
<returns>A string that contains the MIME type.</returns>
</member>
<member name="P:System.Data.Services.ProcessRequestArgs.IsBatchOperation">
<summary>Gets a Boolean value that indicates whether the HTTP request to the data service is a batch operation.</summary>
<returns>The Boolean value that indicates whether the HTTP request to the data service is a batch operation. </returns>
</member>
<member name="P:System.Data.Services.ProcessRequestArgs.OperationContext">
<summary>Gets the context that contains information about the current operation being processed.</summary>
<returns>An <see cref="T:System.Data.Services.DataServiceOperationContext" /> object that contains information about the current operation. </returns>
</member>
<member name="P:System.Data.Services.ProcessRequestArgs.RequestUri">
<summary>Gets the URI of an HTTP request to be process.</summary>
<returns>A <see cref="T:System.Uri" /> that contains the URI of the request to be processed.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceMetadataProvider.ContainerName">
<summary>Container name for the data source.</summary>
<returns>String that contains the name of the container.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceMetadataProvider.ContainerNamespace">
<summary>Namespace name for the data source.</summary>
<returns>String that contains the namespace name.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceMetadataProvider.ResourceSets">
<summary>Gets all available containers.</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of <see cref="T:System.Data.Services.Providers.ResourceSet" /> objects.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceMetadataProvider.ServiceOperations">
<summary>Returns all the service operations in this data source.</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of <see cref="T:System.Data.Services.Providers.ServiceOperation" /> objects.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceMetadataProvider.Types">
<summary>Returns all the types in this data source.</summary>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of <see cref="T:System.Data.Services.Providers.ResourceType" /> objects.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceQueryProvider.CurrentDataSource">
<summary>The data source object from which data is provided.</summary>
<returns>The data source.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceQueryProvider.IsNullPropagationRequired">
<summary>Gets a value that indicates whether null propagation is required in expression trees.</summary>
<returns>A <see cref="T:System.Boolean" /> value that indicates whether null propagation is required.</returns>
</member>
<member name="P:System.Data.Services.Providers.IDataServiceStreamProvider.StreamBufferSize">
<summary>Gets the size of the stream buffer.</summary>
<returns>Integer that represents the size of buffer.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceAssociationSet.End1">
<summary>Gets the source end of the association set.</summary>
<returns>
<see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> that is at the source end of the association set.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceAssociationSet.End2">
<summary>Gets the target end of the association set.</summary>
<returns>
<see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" /> that is at the target end of the association set.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceAssociationSet.Name">
<summary>Gets the name of the association set.</summary>
<returns>The name of the association set.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceAssociationSetEnd.ResourceProperty">
<summary>Gets the resource property that returns the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" />.</summary>
<returns>The resource property.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceAssociationSetEnd.ResourceSet">
<summary>Gets the resource set for the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" />.</summary>
<returns>The resource set.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceAssociationSetEnd.ResourceType">
<summary>Gets the resource type for the <see cref="T:System.Data.Services.Providers.ResourceAssociationSetEnd" />.</summary>
<returns>The resource type.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.CanReflectOnInstanceTypeProperty">
<summary>Gets a value that indicates whether this property can be accessed through reflection on the declaring resource instance type.</summary>
<returns>
<see langword="true" /> when the property can be accessed through reflection; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.CustomState">
<summary>Gets or sets custom state information about a resource property that is defined by the developer.</summary>
<returns>State information.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.IsReadOnly">
<summary>Gets a Boolean value that indicates whether the property is read-only.</summary>
<returns>
<see langword="True" /> if the property is read-only.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.Kind">
<summary>Gets the kind of the resource property with regard to the resource.</summary>
<returns>A <see cref="T:System.Data.Services.Providers.ResourcePropertyKind" /> value.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.MimeType">
<summary>Gets or sets MIME type for the property.</summary>
<returns>String value that indicates MIME type.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.Name">
<summary>Gets the name of the resource property.</summary>
<returns>The name of the resource property as string.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceProperty.ResourceType">
<summary>Gets the type of the resource property.</summary>
<returns>The <see cref="T:System.Data.Services.Providers.ResourceType" /> of the resource property.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceSet.CustomState">
<summary>Gets or sets the custom state information that is defined by the developer.</summary>
<returns>The custom state information defined by the developer.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceSet.IsReadOnly">
<summary>Gets a Boolean value that indicates whether the set is read-only.</summary>
<returns>
<see langword="true" /> if the set is read-only; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceSet.Name">
<summary>Gets the name of the collection.</summary>
<returns>String value that contains the name of the resource set.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceSet.ResourceType">
<summary>Gets the type of the collection.</summary>
<returns>The type of the collection.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.BaseType">
<summary>Gets a reference to base resource type, if any.</summary>
<returns>
<see cref="T:System.Data.Services.Providers.ResourceType" /> of the base type.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.CanReflectOnInstanceType">
<summary>Get whether the corresponding instance type represents the CLR type of this entity.</summary>
<returns>
<see langword="true" /> if the instance type represents a CLR type; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.CustomState">
<summary>Gets or sets a placeholder to hold custom state information about a resource type that is defined by the developer.</summary>
<returns>Custom state information defined by the developer.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.ETagProperties">
<summary>Gets the list of properties for this type.</summary>
<returns>
<see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Providers.ResourceType" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.FullName">
<summary>Gets the full name of the resource.</summary>
<returns>The full name of the resource type as string.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.InstanceType">
<summary>Reference to the CLR type that this resource represents.</summary>
<returns>The instance type as a <see cref="T:System.Data.Services.Providers.ResourceType" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.IsAbstract">
<summary>Gets a Boolean value that indicates whether this is an abstract type.</summary>
<returns>True if <see cref="T:System.Data.Services.Providers.ResourceType" /> is abstract.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.IsMediaLinkEntry">
<summary>Gets or sets a Boolean value that is true if the resource type includes a default stream.</summary>
<returns>A Boolean value that is true if the resource type includes a default stream.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.IsOpenType">
<summary>Gets whether the resource type has open properties.</summary>
<returns>
<see langword="true" /> if the resource type has open properties defined; otherwise <see langword="false" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.IsReadOnly">
<summary>Gets a Boolean value that is true if this resource type has been set to read-only.</summary>
<returns>True if this resource type has been set to read-only; otherwise false.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.KeyProperties">
<summary>Gets a list of key properties for this type</summary>
<returns>
<see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Providers.ResourceProperty" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.Name">
<summary>Gets the name of the resource type.</summary>
<returns>Name of the resource type as string.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.Namespace">
<summary>Gets the namespace of the resource type.</summary>
<returns>Namespace of the resource type as string.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.Properties">
<summary>Gets a list of properties declared of this type that includes only properties defined on the type, not in the base type.</summary>
<returns>
<see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Providers.ResourceProperty" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.PropertiesDeclaredOnThisType">
<summary>List of properties declared on this type.</summary>
<returns>
<see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Providers.ResourceProperty" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ResourceType.ResourceTypeKind">
<summary>Gets the <see cref="T:System.Data.Services.Providers.ResourceTypeKind" /> for the type.</summary>
<returns>
<see cref="T:System.Data.Services.Providers.ResourceTypeKind" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.CustomState">
<summary>Gets or sets custom state information about service operation.</summary>
<returns>State information.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.IsReadOnly">
<summary>Indicates whether the service operation is read-only.</summary>
<returns>Boolean value that indicates whether the service operation is read-only.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.Method">
<summary>Gets the method of the HTTP protocol to which the service operation responds.</summary>
<returns>The HTTP method name.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.MimeType">
<summary>MIME-type specified on primitive results, possibly null.</summary>
<returns>MIME-type value.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.Name">
<summary>Name of service operation.</summary>
<returns>String name.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.Parameters">
<summary>Collection of in-order parameters for the service operation.</summary>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Providers.ServiceOperationParameter" /> objects.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.ResourceSet">
<summary>Gets the entity set from which entities are read.</summary>
<returns>The entity set as a <see cref="T:System.Data.Services.Providers.ResourceSet" /> object.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.ResultKind">
<summary>The kind of result that is expected by this service operation.</summary>
<returns>
<see cref="T:System.Data.Services.Providers.ServiceOperationResultKind" /> that is the kind of result expected from this operation.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperation.ResultType">
<summary>Type of results returned by this service operation.</summary>
<returns>Type of the results as a <see cref="T:System.Data.Services.Providers.ResourceType" />.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperationParameter.CustomState">
<summary>Custom state information defined by the developer about a service operation parameter.</summary>
<returns>Custom state information defined by the developer.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperationParameter.IsReadOnly">
<summary>Gets a Boolean value that defines whether the parameter is read-only.</summary>
<returns>Boolean value that defines whether the parameter is read-only.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperationParameter.Name">
<summary>Gets the name of the service operation parameter.</summary>
<returns>A string that specifies the name of the service operation parameter.</returns>
</member>
<member name="P:System.Data.Services.Providers.ServiceOperationParameter.ParameterType">
<summary>Gets the data type of the service operation parameter.</summary>
<returns>The data type of the service operation parameter as <see cref="T:System.Data.Services.Providers.ResourceType" />.</returns>
</member>
<member name="P:System.Data.Services.QueryInterceptorAttribute.EntitySetName">
<summary>Gets the name of the entity set that contains the entity to which the interceptor applies.</summary>
<returns>A string that indicates the name of the entity set that contains the entity to which the interceptor applies.</returns>
</member>
<member name="T:System.Data.Services.ChangeInterceptorAttribute">
<summary>The <see cref="T:System.Data.Services.ChangeInterceptorAttribute" /> on a method is used to process updates on the specified entity set name.</summary>
</member>
<member name="T:System.Data.Services.Configuration.DataServicesFeaturesSection">
<summary>A configuration section that allows you to configure WCF data services features.</summary>
</member>
<member name="T:System.Data.Services.Configuration.DataServicesReplaceFunctionFeature">
<summary>A configuration element that allows you to enable or disable the data service replace functionality.</summary>
</member>
<member name="T:System.Data.Services.Configuration.DataServicesSectionGroup">
<summary>Represents the DataServicesSectionGroup configuration section group.</summary>
</member>
<member name="T:System.Data.Services.DataService`1">
<summary>The main entry point for developing an ADO.NET Data Service. </summary>
<typeparam name="T">Type that defines the data service.</typeparam>
</member>
<member name="T:System.Data.Services.DataServiceBehavior">
<summary>Adds settings that define behavior to a custom data service.</summary>
</member>
<member name="T:System.Data.Services.DataServiceConfiguration">
<summary>Manages the configuration of WCF Data Services.</summary>
</member>
<member name="T:System.Data.Services.DataServiceException">
<summary>Represents an instance of the <see cref="T:System.Data.Services.DataServiceException" /> class with a specified message that describes the error. </summary>
</member>
<member name="T:System.Data.Services.DataServiceHost">
<summary>The WCF Data Services class derived from <see cref="T:System.ServiceModel.Web.WebServiceHost" /> used to instantiate data services.</summary>
</member>
<member name="T:System.Data.Services.DataServiceHostFactory">
<summary>Represents the class used by the infrastructure of WCF Data Services to connect to Windows Communication Foundation (WCF). </summary>
</member>
<member name="T:System.Data.Services.DataServiceOperationContext">
<summary>Represents the current operation being processed.</summary>
</member>
<member name="T:System.Data.Services.DataServiceProcessingPipeline">
<summary>Defines the events for the data service processing pipeline.</summary>
</member>
<member name="T:System.Data.Services.DataServiceProcessingPipelineEventArgs">
<summary>Event argument class for <see cref="T:System.Data.Services.DataServiceProcessingPipeline" /> events.</summary>
</member>
<member name="T:System.Data.Services.EntitySetRights">
<summary>An enumeration used to define access rights to data that is deployed by WCF Data Services.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.None">
<summary>Denies all rights to access data.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.ReadSingle">
<summary>Authorization to read single data items.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.ReadMultiple">
<summary>Authorization to read sets of data.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.WriteAppend">
<summary>Authorization to create new data items in data sets.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.WriteReplace">
<summary>Authorization to replace data.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.WriteDelete">
<summary>Authorization to delete data items from data sets.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.WriteMerge">
<summary>Authorization to merge data.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.AllRead">
<summary>Authorization to read data.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.AllWrite">
<summary>Authorization to write data.</summary>
</member>
<member name="F:System.Data.Services.EntitySetRights.All">
<summary>Authorization to create, read, update, and delete data.</summary>
</member>
<member name="T:System.Data.Services.ETagAttribute">
<summary>This attribute on an entity type is used to specify the properties that determine changes in content.</summary>
</member>
<member name="T:System.Data.Services.ExpandSegment">
<summary>The segment of a query that indicates whether data should be returned inline instead of as deferred content.</summary>
</member>
<member name="T:System.Data.Services.ExpandSegmentCollection">
<summary>The segments of a query that can be expanded by the $expand clause that follows a query.</summary>
</member>
<member name="T:System.Data.Services.HandleExceptionArgs">
<summary>Specifies details of an exception that has occurred and the details of the associated HTTP response.</summary>
</member>
<member name="T:System.Data.Services.IDataServiceConfiguration">
<summary>The <see cref="T:System.Data.Services.IDataServiceConfiguration" /> is used by WCF Data Services to set up the behavior of the service, including rights on entity sets and service operations, limits on the allowed requests, registering types not discoverable by default, and the default verbosity on error handling.</summary>
</member>
<member name="T:System.Data.Services.IDataServiceHost">
<summary>Interface that specifies interactions between WCF Data Services and its hosting environment.</summary>
</member>
<member name="T:System.Data.Services.IDataServiceHost2">
<summary>Defines extensions to <see cref="T:System.Data.Services.IDataServiceHost" /> needed for request and response headers in HTTP.</summary>
</member>
<member name="T:System.Data.Services.IExpandedResult">
<summary>Declares the members required to support enumerators for results and associated segments on an WCF Data Services $expand query option. </summary>
</member>
<member name="T:System.Data.Services.IExpandProvider">
<summary>This interface declares the methods required to support the $expand query option for an WCF Data Services.</summary>
</member>
<member name="T:System.Data.Services.IgnorePropertiesAttribute">
<summary>Controls the visibility of a property or properties by WCF Data Services.</summary>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`1">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">Type of the expanded element.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`10">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
<typeparam name="TProperty6">The type of the property to expand.</typeparam>
<typeparam name="TProperty7">The type of the property to expand.</typeparam>
<typeparam name="TProperty8">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`11">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
<typeparam name="TProperty6">The type of the property to expand.</typeparam>
<typeparam name="TProperty7">The type of the property to expand.</typeparam>
<typeparam name="TProperty8">The type of the property to expand.</typeparam>
<typeparam name="TProperty9">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`12">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
<typeparam name="TProperty6">The type of the property to expand.</typeparam>
<typeparam name="TProperty7">The type of the property to expand.</typeparam>
<typeparam name="TProperty8">The type of the property to expand.</typeparam>
<typeparam name="TProperty9">The type of the property to expand.</typeparam>
<typeparam name="TProperty10">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`13">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
<typeparam name="TProperty6">The type of the property to expand.</typeparam>
<typeparam name="TProperty7">The type of the property to expand.</typeparam>
<typeparam name="TProperty8">The type of the property to expand.</typeparam>
<typeparam name="TProperty9">The type of the property to expand.</typeparam>
<typeparam name="TProperty10">The type of the property to expand.</typeparam>
<typeparam name="TProperty11">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`2">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`3">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`4">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`5">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`6">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`7">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`8">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
<typeparam name="TProperty6">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ExpandedWrapper`9">
<summary>This class is used internally by the system to implement support for queries with eager loading of related entities.</summary>
<typeparam name="TExpandedElement">The type of the expanded element.</typeparam>
<typeparam name="TProperty0">The type of the property to expand.</typeparam>
<typeparam name="TProperty1">The type of the property to expand.</typeparam>
<typeparam name="TProperty2">The type of the property to expand.</typeparam>
<typeparam name="TProperty3">The type of the property to expand.</typeparam>
<typeparam name="TProperty4">The type of the property to expand.</typeparam>
<typeparam name="TProperty5">The type of the property to expand.</typeparam>
<typeparam name="TProperty6">The type of the property to expand.</typeparam>
<typeparam name="TProperty7">The type of the property to expand.</typeparam>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper">
<summary>Provides a wrapper over the result element with the ability to project a subset of properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper0">
<summary>Provides a wrapper over the result element with the ability to project a subset of properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper1">
<summary>Provides a wrapper over the result element with the ability to project a subset of properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper2">
<summary>Provides a wrapper over the result element with the ability to project a subset of properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper3">
<summary>Provides a wrapper over the result element and provides the ability to project a subset of properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper4">
<summary>Provides a wrapper over the result element with the ability to project a subset of properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper5">
<summary>Provides a wrapper over the result elements and provides the ability to project a subset of the properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper6">
<summary>Provides a wrapper over the result elements with the ability to project a subset of the properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper7">
<summary>Provides a wrapper over the result elements with the ability to project a subset of the properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapper8">
<summary>Provides a wrapper over the result elements with the ability to project a subset of the properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapperMany">
<summary>Provides a wrapper over the result elements with the ability to project a subset of the properties.</summary>
</member>
<member name="T:System.Data.Services.Internal.ProjectedWrapperManyEnd">
<summary>an instance of this class is assigned to the last <see cref="P:System.Data.Services.Internal.ProjectedWrapperMany.Next" /> in the list.</summary>
</member>
<member name="T:System.Data.Services.IRequestHandler">
<summary>Provides access to members that control handing of request messages. </summary>
</member>
<member name="T:System.Data.Services.IUpdatable">
<summary>An interface used to insert or update a resource by the HTTP POST method.</summary>
</member>
<member name="T:System.Data.Services.MimeTypeAttribute">
<summary>Indicates the MIME type of HTTP request.</summary>
</member>
<member name="T:System.Data.Services.ProcessRequestArgs">
<summary>Represents arguments used by an HTTP request to the data service. </summary>
</member>
<member name="T:System.Data.Services.Providers.DataServiceProviderMethods">
<summary>Performs late-bound operations on resource sets with a custom data service provider.</summary>
</member>
<member name="T:System.Data.Services.Providers.IDataServiceMetadataProvider">
<summary>Maintains metadata about a custom data service provider. </summary>
</member>
<member name="T:System.Data.Services.Providers.IDataServicePagingProvider">
<summary>Provides paging support for the clients of a custom data service provider.</summary>
</member>
<member name="T:System.Data.Services.Providers.IDataServiceQueryProvider">
<summary>Defines a metadata and query source implementation for a custom data service provider.</summary>
</member>
<member name="T:System.Data.Services.Providers.IDataServiceStreamProvider">
<summary>Enables binary data to be accessed and changed as a media resource that belongs to an entity that is a media link entry.</summary>
</member>
<member name="T:System.Data.Services.Providers.IDataServiceUpdateProvider">
<summary>Defines the methods that must be implemented to supply eTag values to a custom data service provider.</summary>
</member>
<member name="T:System.Data.Services.Providers.OpenTypeMethods">
<summary>Used to perform late-bound operations on open properties.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourceAssociationSet">
<summary>Describes an association between two resource sets.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourceAssociationSetEnd">
<summary>Describes an end point of a resource association set.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourceProperty">
<summary>Provides a type to describe a property on a resource.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourcePropertyKind">
<summary>Enumeration for the kinds of properties that a resource can have.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourcePropertyKind.Primitive">
<summary>A primitive type property.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourcePropertyKind.Key">
<summary>A property that is part of the key.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourcePropertyKind.ComplexType">
<summary>Complex or compound property.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourcePropertyKind.ResourceReference">
<summary>A reference to another resource.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourcePropertyKind.ResourceSetReference">
<summary>A reference to a resource set.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourcePropertyKind.ETag">
<summary>An ETag property.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourceSet">
<summary>Represents a collection of entity type values.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourceType">
<summary>Represents a data service primitive, complex, or entity type.</summary>
</member>
<member name="T:System.Data.Services.Providers.ResourceTypeKind">
<summary>Enumeration for the kind of resource key.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourceTypeKind.EntityType">
<summary>Entity type resource.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourceTypeKind.ComplexType">
<summary>Complex type resource.</summary>
</member>
<member name="F:System.Data.Services.Providers.ResourceTypeKind.Primitive">
<summary>Primitive type resource.</summary>
</member>
<member name="T:System.Data.Services.Providers.ServiceOperation">
<summary>Represents a custom service operation.</summary>
</member>
<member name="T:System.Data.Services.Providers.ServiceOperationParameter">
<summary>Represents parameter information for service operations.</summary>
</member>
<member name="T:System.Data.Services.Providers.ServiceOperationResultKind">
<summary>An enumeration that describes the kind of results that a service operation provides.</summary>
</member>
<member name="F:System.Data.Services.Providers.ServiceOperationResultKind.DirectValue">
<summary>A single value that cannot be further composed.</summary>
</member>
<member name="F:System.Data.Services.Providers.ServiceOperationResultKind.Enumeration">
<summary>An enumeration of values that cannot be further composed.</summary>
</member>
<member name="F:System.Data.Services.Providers.ServiceOperationResultKind.QueryWithMultipleResults">
<summary>A queryable object that returns multiple elements.</summary>
</member>
<member name="F:System.Data.Services.Providers.ServiceOperationResultKind.QueryWithSingleResult">
<summary>A query that returns a single item.</summary>
</member>
<member name="F:System.Data.Services.Providers.ServiceOperationResultKind.Void">
<summary>No results.</summary>
</member>
<member name="T:System.Data.Services.QueryInterceptorAttribute">
<summary>The <see cref="T:System.Data.Services.QueryInterceptorAttribute" /> on a method annotates it as a query interceptor on the specified entity set.</summary>
</member>
<member name="T:System.Data.Services.ServiceOperationRights">
<summary>An enumeration used to define access rights to service operations deployed by WCF Data Services.</summary>
</member>
<member name="F:System.Data.Services.ServiceOperationRights.None">
<summary>No authorization to access the service operation.</summary>
</member>
<member name="F:System.Data.Services.ServiceOperationRights.ReadSingle">
<summary>Authorization to read a single data item by using the service operation.</summary>
</member>
<member name="F:System.Data.Services.ServiceOperationRights.ReadMultiple">
<summary>Authorization to read multiple data items by using the service operation.</summary>
</member>
<member name="F:System.Data.Services.ServiceOperationRights.AllRead">
<summary>Authorization to read single or multiple data items deployed by the service operation.</summary>
</member>
<member name="F:System.Data.Services.ServiceOperationRights.All">
<summary>All rights assigned to the service operation..</summary>
</member>
<member name="F:System.Data.Services.ServiceOperationRights.OverrideEntitySetRights">
<summary>Overrides entity set rights that are explicitly defined in the data service with the service operation rights.</summary>
</member>
<member name="T:System.Data.Services.SingleResultAttribute">
<summary>Attribute used on service operations to specify that they return a single instance of their return element. </summary>
</member>
<member name="T:System.Data.Services.UpdateOperations">
<summary>An enumeration used to specify the update operations that were performed on an entity. </summary>
</member>
<member name="F:System.Data.Services.UpdateOperations.None">
<summary>No operations were performed on the resource.</summary>
</member>
<member name="F:System.Data.Services.UpdateOperations.Add">
<summary>The entity was added.</summary>
</member>
<member name="F:System.Data.Services.UpdateOperations.Change">
<summary>The entity was modified.</summary>
</member>
<member name="F:System.Data.Services.UpdateOperations.Delete">
<summary>The entity was deleted.</summary>
</member>
</members>
</doc>
|