ruby_odata 0.0.10 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +9 -3
- data/.travis.yml +4 -0
- data/CHANGELOG.rdoc +18 -1
- data/README.rdoc +77 -19
- data/config/cucumber.yml +4 -3
- data/features/basic_auth.feature +5 -7
- data/features/batch_request.feature +11 -11
- data/features/complex_types.feature +11 -11
- data/features/query_builder.feature +27 -18
- data/features/service.feature +8 -8
- data/features/service_manage.feature +27 -12
- data/features/service_methods.feature +37 -0
- data/features/ssl.feature +4 -4
- data/features/step_definitions/pickle_steps.rb +100 -0
- data/features/step_definitions/service_steps.rb +99 -65
- data/features/support/constants.rb +3 -0
- data/features/support/custom_helpers.rb +54 -0
- data/features/support/env.rb +0 -10
- data/features/support/hooks.rb +1 -1
- data/features/support/pickle.rb +82 -0
- data/features/type_conversion.feature +10 -10
- data/lib/ruby_odata.rb +4 -1
- data/lib/ruby_odata/association.rb +36 -0
- data/lib/ruby_odata/class_builder.rb +96 -16
- data/lib/ruby_odata/helpers.rb +10 -0
- data/lib/ruby_odata/operation.rb +7 -5
- data/lib/ruby_odata/property_metadata.rb +11 -6
- data/lib/ruby_odata/query_builder.rb +20 -1
- data/lib/ruby_odata/service.rb +407 -94
- data/lib/ruby_odata/version.rb +1 -1
- data/ruby_odata.gemspec +2 -0
- data/spec/association_spec.rb +48 -0
- data/spec/class_builder_spec.rb +11 -2
- data/spec/fixtures/inheritance/edmx_pluralsight.xml +111 -0
- data/spec/fixtures/inheritance/result_pluralsight_courses.xml +229 -0
- data/spec/fixtures/links/result_links_query.xml +6 -0
- data/spec/fixtures/partial/partial_feed_metadata.xml +25 -0
- data/spec/fixtures/partial/partial_feed_part_1.xml +42 -0
- data/spec/fixtures/partial/partial_feed_part_2.xml +42 -0
- data/spec/fixtures/partial/partial_feed_part_3.xml +40 -0
- data/spec/fixtures/sample_service/edmx_categories_products.xml +1 -0
- data/spec/fixtures/sample_service/result_category_names.xml +5 -0
- data/spec/fixtures/sample_service/result_entity_category_web_get.xml +29 -0
- data/spec/fixtures/sample_service/result_entity_single_category_web_get.xml +23 -0
- data/spec/fixtures/sample_service/result_first_category_id.xml +2 -0
- data/spec/fixtures/sample_service/result_multiple_category_products.xml +57 -0
- data/spec/fixtures/sample_service/result_single_category.xml +18 -0
- data/spec/fixtures/sample_service/result_single_product.xml +26 -0
- data/spec/fixtures/sample_service/result_single_product_not_found.xml +4 -0
- data/spec/fixtures/sap/edmx_sap_demo_flight.xml +62 -58
- data/spec/property_metadata_spec.rb +9 -2
- data/spec/query_builder_spec.rb +11 -0
- data/spec/revised_service_spec.rb +197 -0
- data/spec/service_spec.rb +463 -4
- data/test/RubyODataService/RubyODataService.sln +20 -0
- data/test/RubyODataService/RubyODataService/App_Start/EntityFramework.SqlServerCompact.cs +12 -0
- data/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc +3 -0
- data/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc.cs +107 -0
- data/test/RubyODataService/RubyODataService/Global.asax +1 -0
- data/test/RubyODataService/RubyODataService/Global.asax.cs +49 -0
- data/test/RubyODataService/RubyODataService/Models/AuditFields.cs +16 -0
- data/test/RubyODataService/RubyODataService/Models/Category.cs +16 -0
- data/test/RubyODataService/RubyODataService/Models/Product.cs +20 -0
- data/test/RubyODataService/RubyODataService/Properties/AssemblyInfo.cs +35 -0
- data/test/RubyODataService/RubyODataService/RubyOData.svc +3 -0
- data/test/RubyODataService/RubyODataService/RubyOData.svc.cs +57 -0
- data/test/RubyODataService/RubyODataService/RubyODataContext.cs +16 -0
- data/test/RubyODataService/RubyODataService/RubyODataService.csproj +159 -0
- data/test/RubyODataService/RubyODataService/RubyODataService.csproj.user +31 -0
- data/test/RubyODataService/RubyODataService/Web.Debug.config +30 -0
- data/test/RubyODataService/RubyODataService/Web.Release.config +31 -0
- data/test/RubyODataService/RubyODataService/Web.config +27 -0
- data/test/RubyODataService/RubyODataService/bin/EntityFramework.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Edm.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.OData.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.Client.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Spatial.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/RubyODataService.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.Entity.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/System.Spatial.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/WebActivator.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlceme40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlceqp40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlcese40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlceme40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlceqp40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlcese40.dll +0 -0
- data/test/RubyODataService/RubyODataService/packages.config +7 -0
- data/test/RubyODataService/packages/EntityFramework.4.2.0.0/EntityFramework.4.2.0.0.nupkg +0 -0
- data/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.dll +0 -0
- data/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.xml +13488 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/Content/App_Start/EntityFramework.SqlServerCompact.cs.pp +12 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EULA_ENU.rtf +969 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EntityFramework.SqlServerCompact.4.1.8482.2.nupkg +0 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/lib/System.Data.SqlServerCe.Entity.dll +0 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/tools/install.ps1 +3 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Content/web.config.transform +8 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceme40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceqp40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcese40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceme40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceqp40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcese40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SQLCE_EULA_ENU.rtf +778 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SqlServerCompact.4.0.8482.1.nupkg +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/GetSqlCEPostBuildCmd.ps1 +12 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1 +11 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/uninstall.ps1 +9 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/lib/System.Data.SqlServerCe.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/DataSvcUtil.exe +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/License.rtf +708 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.xml +4150 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.xml +1969 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.xml +1442 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.xml +191 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.xml +2559 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.xml +15 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.VsDesigner.DataServices.Adapter.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/README.txt +6 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.xml +2276 -0
- data/test/RubyODataService/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg +0 -0
- data/test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.dll +0 -0
- data/test/RubyODataService/packages/repositories.config +4 -0
- data/test/applicationhost.config.template +2 -2
- data/test/blueprints.rb +5 -4
- data/test/iisExpress x64.bat b/data/test/iisExpress → x64.bat +0 -0
- data/test/iisExpress x86.bat b/data/test/iisExpress → x86.bat +0 -0
- data/test/setpath.rb +13 -3
- data/test/usage_samples/querying.rb +45 -0
- data/test/usage_samples/reflection.rb +16 -0
- data/test/usage_samples/sample_data.rb +30 -0
- metadata +327 -36
- data/test/Cassini x64.bat +0 -1
- data/test/Cassini x86.bat +0 -1
- data/test/SampleService/App_Code/AuditFields.cs +0 -13
- data/test/SampleService/App_Code/Entities.cs +0 -145
- data/test/SampleService/App_Code/Model.Designer.cs +0 -578
- data/test/SampleService/App_Code/Model.edmx +0 -157
- data/test/SampleService/App_Code/ModelContainerExtended.cs +0 -32
- data/test/SampleService/App_Data/_TestDB.mdf +0 -0
- data/test/SampleService/App_Data/_TestDB_Log.ldf +0 -0
- data/test/SampleService/BasicAuth/Entities.svc +0 -1
- data/test/SampleService/Entities.svc +0 -1
- data/test/SampleService/web.config +0 -37
Binary file
|
@@ -0,0 +1,1442 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>Microsoft.Data.Services.Client</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:System.Data.Services.Client.ChangeOperationResponse">
|
8
|
+
<summary>Results returned after a call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> when enumerating operation responses returned by the <see cref="T:System.Data.Services.Client.DataServiceResponse" /> class.</summary>
|
9
|
+
</member>
|
10
|
+
<member name="P:System.Data.Services.Client.ChangeOperationResponse.Descriptor">
|
11
|
+
<summary>Gets the <see cref="T:System.Data.Services.Client.EntityDescriptor" /> or <see cref="T:System.Data.Services.Client.LinkDescriptor" /> modified by a change operation.</summary>
|
12
|
+
<returns>An <see cref="T:System.Data.Services.Client.EntityDescriptor" /> or <see cref="T:System.Data.Services.Client.LinkDescriptor" /> modified by a change operation. </returns>
|
13
|
+
</member>
|
14
|
+
<member name="T:System.Data.Services.Client.DataServiceClientException">
|
15
|
+
<summary>Represents errors that occur during execution of WCF Data Services client applications.</summary>
|
16
|
+
</member>
|
17
|
+
<member name="M:System.Data.Services.Client.DataServiceClientException.#ctor">
|
18
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with a system-supplied message that describes the error. </summary>
|
19
|
+
</member>
|
20
|
+
<member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String)">
|
21
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with a specified message that describes the error. </summary>
|
22
|
+
<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>
|
23
|
+
</member>
|
24
|
+
<member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String,System.Exception)">
|
25
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary>
|
26
|
+
<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>
|
27
|
+
<param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
|
28
|
+
</member>
|
29
|
+
<member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String,System.Exception,System.Int32)">
|
30
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class. </summary>
|
31
|
+
<param name="message">The string value that contains the error message.</param>
|
32
|
+
<param name="innerException">The System.Exception object that contains the inner exception.</param>
|
33
|
+
<param name="statusCode">The integer value that contains status code.</param>
|
34
|
+
</member>
|
35
|
+
<member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String,System.Int32)">
|
36
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class. </summary>
|
37
|
+
<param name="message">The string value that contains the error message.</param>
|
38
|
+
<param name="statusCode">The integer value that contains status code.</param>
|
39
|
+
</member>
|
40
|
+
<member name="M:System.Data.Services.Client.DataServiceClientException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
41
|
+
<summary>[SECURITY CRITICAL] Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with serialized data.</summary>
|
42
|
+
<param name="info">The object that holds the serialized object data. </param>
|
43
|
+
<param name="context">The contextual information about the source or destination. </param>
|
44
|
+
</member>
|
45
|
+
<member name="P:System.Data.Services.Client.DataServiceClientException.StatusCode">
|
46
|
+
<summary>Gets the HTTP error status code returned after <see cref="T:System.Data.Services.Client.DataServiceClientException" />.</summary>
|
47
|
+
<returns>An integer value that represents the exception.</returns>
|
48
|
+
</member>
|
49
|
+
<member name="T:System.Data.Services.Client.DataServiceCollection`1">
|
50
|
+
<summary>Represents a dynamic entity collection that provides notifications when items get added, removed, or when the list is refreshed.</summary>
|
51
|
+
<typeparam name="T">An entity type.</typeparam>
|
52
|
+
</member>
|
53
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor">
|
54
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class.</summary>
|
55
|
+
</member>
|
56
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
|
57
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class based on query execution.</summary>
|
58
|
+
<param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
|
59
|
+
</member>
|
60
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode)">
|
61
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class based on query execution and with the specified tracking mode.</summary>
|
62
|
+
<param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
|
63
|
+
<param name="trackingMode">A <see cref="T:System.Data.Services.Client.TrackingMode" /> value that indicated whether or not changes made to items in the collection are automatically tracked.</param>
|
64
|
+
</member>
|
65
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
|
66
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class a based on query execution and with the supplied change method delegates.</summary>
|
67
|
+
<param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
|
68
|
+
<param name="trackingMode">A <see cref="T:System.Data.Services.Client.TrackingMode" /> value that indicated whether or not changes made to items in the collection are automatically tracked.</param>
|
69
|
+
<param name="entitySetName">The entity set of the objects in the collection.</param>
|
70
|
+
<param name="entityChangedCallback">A delegate that encapsulates a method that is called when an entity changes.</param>
|
71
|
+
<param name="collectionChangedCallback">A delegate that encapsulates a method that is called when the collection of entities changes.</param>
|
72
|
+
</member>
|
73
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Data.Services.Client.DataServiceContext)">
|
74
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class that uses the specified <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
75
|
+
<param name="context">The <see cref="T:System.Data.Services.Client.DataServiceContext" /> used to track changes to objects in the collection.</param>
|
76
|
+
</member>
|
77
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Data.Services.Client.DataServiceContext,System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
|
78
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class a based on query execution, with the supplied change method delegates, and that uses the supplied <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
79
|
+
<param name="context">The <see cref="T:System.Data.Services.Client.DataServiceContext" /> used to track items in the collection.</param>
|
80
|
+
<param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
|
81
|
+
<param name="trackingMode">A <see cref="T:System.Data.Services.Client.TrackingMode" /> value that indicated whether or not changes made to items in the collection are automatically tracked.</param>
|
82
|
+
<param name="entitySetName">The entity set of the objects in the collection.</param>
|
83
|
+
<param name="entityChangedCallback">A delegate that encapsulates a method that is called when an entity changes.</param>
|
84
|
+
<param name="collectionChangedCallback">A delegate that encapsulates a method that is called when the collection of entities changes.</param>
|
85
|
+
</member>
|
86
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Data.Services.Client.DataServiceContext,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
|
87
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class with the supplied change method delegates and that uses the specified <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
88
|
+
<param name="context">The <see cref="T:System.Data.Services.Client.DataServiceContext" /> used to track items in the collection.</param>
|
89
|
+
<param name="entitySetName">The entity set of the objects in the collection.</param>
|
90
|
+
<param name="entityChangedCallback">A delegate that encapsulates a method that is called when an entity changes.</param>
|
91
|
+
<param name="collectionChangedCallback">A delegate that encapsulates a method that is called when the collection of entities changes.</param>
|
92
|
+
</member>
|
93
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.Clear(System.Boolean)">
|
94
|
+
<summary>Removes all items from the collection, and optionally detaches all the items from the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
95
|
+
<param name="stopTracking">When true, detaches all items from the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</param>
|
96
|
+
</member>
|
97
|
+
<member name="P:System.Data.Services.Client.DataServiceCollection`1.Continuation">
|
98
|
+
<summary>Gets a continuation object that is used to return the next set of paged results.</summary>
|
99
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that contains the URI to return the next set of paged results.</returns>
|
100
|
+
</member>
|
101
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.Detach">
|
102
|
+
<summary>Disables <see cref="T:System.Data.Services.Client.DataServiceContext" /> tracking of all items in the collection. </summary>
|
103
|
+
</member>
|
104
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.InsertItem(System.Int32,`0)">
|
105
|
+
<summary>Adds a specified item to the collection at the specified index. </summary>
|
106
|
+
<param name="index">Index at which to add the item.</param>
|
107
|
+
<param name="item">The item to add.</param>
|
108
|
+
</member>
|
109
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.Load(System.Collections.Generic.IEnumerable{`0})">
|
110
|
+
<summary>Loads a collection of entity objects into the collection.</summary>
|
111
|
+
<param name="items">Collection of entity objects to be added to the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" />.</param>
|
112
|
+
</member>
|
113
|
+
<member name="M:System.Data.Services.Client.DataServiceCollection`1.Load(`0)">
|
114
|
+
<summary>Loads a single entity object into the collection.</summary>
|
115
|
+
<param name="item">Entity object to be added.</param>
|
116
|
+
</member>
|
117
|
+
<member name="T:System.Data.Services.Client.DataServiceContext">
|
118
|
+
<summary>The <see cref="T:System.Data.Services.Client.DataServiceContext" /> represents the runtime context of the data service. </summary>
|
119
|
+
</member>
|
120
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.#ctor">
|
121
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceContext" /> class.</summary>
|
122
|
+
</member>
|
123
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.#ctor(System.Uri)">
|
124
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceContext" /> class with the specified <paramref name="serviceRoot" />.</summary>
|
125
|
+
<param name="serviceRoot">An absolute URI that identifies the root of a data service.</param>
|
126
|
+
<exception cref="T:System.ArgumentNullException">When the <paramref name="serviceRoot" /> is null.</exception>
|
127
|
+
<exception cref="T:System.ArgumentException">If the <paramref name="serviceRoot" /> is not an absolute URI -or-If the <paramref name="serviceRoot" /> is a well formed URI without a query or query fragment.</exception>
|
128
|
+
</member>
|
129
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.#ctor(System.Uri,System.Data.Services.Common.DataServiceProtocolVersion)">
|
130
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceContext" /> class with the specified <paramref name="serviceRoot" /> and targeting the specific <paramref name="maxProtocolVersion" />.</summary>
|
131
|
+
<param name="serviceRoot">An absolute URI that identifies the root of a data service.</param>
|
132
|
+
<param name="maxProtocolVersion">A <see cref="T:System.Data.Services.Common.DataServiceProtocolVersion" /> value that is the maximum protocol version that the client understands.</param>
|
133
|
+
</member>
|
134
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.AddAndUpdateResponsePreference">
|
135
|
+
<summary>Gets or sets whether the client requests that the data service return entity data in the response message to a change request.</summary>
|
136
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceResponsePreference" /> object that determines whether to request a response form the data service. </returns>
|
137
|
+
</member>
|
138
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.AddLink(System.Object,System.String,System.Object)">
|
139
|
+
<summary>Adds the specified link to the set of objects the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking.</summary>
|
140
|
+
<param name="source">The source object for the new link.</param>
|
141
|
+
<param name="sourceProperty">The name of the navigation property on the source object that returns the related object.</param>
|
142
|
+
<param name="target">The object related to the source object by the new link. </param>
|
143
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" />, or <paramref name="target" /> are null.</exception>
|
144
|
+
<exception cref="T:System.InvalidOperationException">If a link already exists.-or-If either the <paramref name="source" /> or <paramref name="target" /> objects are in a <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Deleted" /> state.-or-If <paramref name="sourceProperty" /> is not a collection.</exception>
|
145
|
+
</member>
|
146
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.AddObject(System.String,System.Object)">
|
147
|
+
<summary>Adds the specified object to the set of objects that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking.</summary>
|
148
|
+
<param name="entitySetName">The name of the entity set to which the resource will be added.</param>
|
149
|
+
<param name="entity">The object to be tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</param>
|
150
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entitySetName" /> or <paramref name="entity" /> is null.</exception>
|
151
|
+
<exception cref="T:System.ArgumentException">When <paramref name="entitySetName" /> is empty.-or-When <paramref name="entity" /> does not have a key property defined.</exception>
|
152
|
+
<exception cref="T:System.InvalidOperationException">When the entity is already being tracked by the context.</exception>
|
153
|
+
</member>
|
154
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.AddRelatedObject(System.Object,System.String,System.Object)">
|
155
|
+
<summary>Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request.</summary>
|
156
|
+
<param name="source">The parent object that is being tracked by the context.</param>
|
157
|
+
<param name="sourceProperty">The name of the navigation property that returns the related object based on an association between the two entities.</param>
|
158
|
+
<param name="target">The related object that is being added.</param>
|
159
|
+
</member>
|
160
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.ApplyingChanges">
|
161
|
+
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is currently applying changes to tracked objects.</summary>
|
162
|
+
<returns>Returns true when changes are currently being applied; otherwise returns false.</returns>
|
163
|
+
</member>
|
164
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.AttachLink(System.Object,System.String,System.Object)">
|
165
|
+
<summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to start tracking the specified link that defines a relationship between entity objects.</summary>
|
166
|
+
<param name="source">The source object in the new link.</param>
|
167
|
+
<param name="sourceProperty">The name of the property on the source object that represents the link between the source and target object.</param>
|
168
|
+
<param name="target">The target object in the link that is bound to the source object specified in this call. The target object must be of the type identified by the source property or a subtype.</param>
|
169
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" />, or <paramref name="target" /> is null.</exception>
|
170
|
+
<exception cref="T:System.InvalidOperationException">When the link between the two entities already exists.-or-When <paramref name="source" /> or <paramref name="target" /> is in an <see cref="F:System.Data.Services.Client.EntityStates.Added" /> or <see cref="F:System.Data.Services.Client.EntityStates.Deleted" /> state.</exception>
|
171
|
+
</member>
|
172
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.AttachTo(System.String,System.Object)">
|
173
|
+
<summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to start tracking the specified resource and supplies the location of the resource within the specified resource set.</summary>
|
174
|
+
<param name="entitySetName">The name of the set that contains the resource.</param>
|
175
|
+
<param name="entity">The resource to be tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />. The resource is attached in the Unchanged state.</param>
|
176
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> or <paramref name="entitySetName" /> is null.</exception>
|
177
|
+
<exception cref="T:System.ArgumentException">When <paramref name="entitySetName" /> is an empty string.-or-When the <paramref name="entity" /> does not have a key property defined.</exception>
|
178
|
+
<exception cref="T:System.InvalidOperationException">When the <paramref name="entity" /> is already being tracked by the context.</exception>
|
179
|
+
</member>
|
180
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.AttachTo(System.String,System.Object,System.String)">
|
181
|
+
<summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to start tracking the specified resource and supplies the location of the resource in the specified resource set.</summary>
|
182
|
+
<param name="entitySetName">The string value that contains the name of the entity set to which to the entity is attached.</param>
|
183
|
+
<param name="entity">The entity to add.</param>
|
184
|
+
<param name="etag">An etag value that represents the state of the entity the last time it was retrieved from the data service. This value is treated as an opaque string; no validation is performed on it by the client library.</param>
|
185
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entitySetName" /> is null.-or-When <paramref name="entity" /> is null.</exception>
|
186
|
+
<exception cref="T:System.ArgumentException">When <paramref name="entitySetName" /> is an empty string.-or-When the supplied object does not have a key property.</exception>
|
187
|
+
<exception cref="T:System.InvalidOperationException">When the supplied object is already being tracked by the context</exception>
|
188
|
+
</member>
|
189
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.BaseUri">
|
190
|
+
<summary>Gets the absolute URI identifying the root of the target data service. </summary>
|
191
|
+
<returns>An absolute URI that identifies the root of a T data service.</returns>
|
192
|
+
</member>
|
193
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Data.Services.Client.DataServiceQueryContinuation{``0},System.AsyncCallback,System.Object)">
|
194
|
+
<summary>Asynchronously sends a request to the data service to retrieve the next page of data in a paged query result.</summary>
|
195
|
+
<returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the operation.</returns>
|
196
|
+
<param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of data to return from the data service.</param>
|
197
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
198
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
199
|
+
<typeparam name="T">The type returned by the query.</typeparam>
|
200
|
+
</member>
|
201
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Uri,System.AsyncCallback,System.Object)">
|
202
|
+
<summary>Asynchronously sends the request so that this call does not block processing while waiting for the results from the service.</summary>
|
203
|
+
<returns>An object that is used to track the status of the asynchronous operation. </returns>
|
204
|
+
<param name="requestUri">The URI to which the query request will be sent. The URI may be any valid data service URI; it can contain $ query parameters.</param>
|
205
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
206
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
207
|
+
<typeparam name="TElement">The type returned by the query.</typeparam>
|
208
|
+
</member>
|
209
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginExecuteBatch(System.AsyncCallback,System.Object,System.Data.Services.Client.DataServiceRequest[])">
|
210
|
+
<summary>Asynchronously submits a group of queries as a batch to the data service.</summary>
|
211
|
+
<returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
|
212
|
+
<param name="callback">The delegate that is called when a response to the batch request is received.</param>
|
213
|
+
<param name="state">User-defined state object that is used to pass context data to the callback method.</param>
|
214
|
+
<param name="queries">The array of query requests to include in the batch request.</param>
|
215
|
+
</member>
|
216
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginGetReadStream(System.Object,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object)">
|
217
|
+
<summary>Asynchronously gets the binary data stream that belongs to the specified entity, by using the specified message headers.</summary>
|
218
|
+
<returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
|
219
|
+
<param name="entity">The entity that has a the binary data stream to retrieve. </param>
|
220
|
+
<param name="args">Instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
|
221
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
222
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
223
|
+
<exception cref="T:System.ArgumentNullException">Any of the parameters supplied to the method is null.</exception>
|
224
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related binary data stream.</exception>
|
225
|
+
</member>
|
226
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginGetReadStream(System.Object,System.String,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object)">
|
227
|
+
<summary>Asynchronously gets a named binary data stream that belongs to the specified entity, by using the specified message headers.</summary>
|
228
|
+
<returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
|
229
|
+
<param name="entity">The entity that has the binary data stream to retrieve.</param>
|
230
|
+
<param name="name">The name of the binary stream to request.</param>
|
231
|
+
<param name="args">Instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
|
232
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
233
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
234
|
+
</member>
|
235
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.AsyncCallback,System.Object)">
|
236
|
+
<summary>Asynchronously loads the value of the specified property from the data service.</summary>
|
237
|
+
<returns>An IAsyncResult that represents the status of the asynchronous operation.</returns>
|
238
|
+
<param name="entity">The entity that contains the property to load.</param>
|
239
|
+
<param name="propertyName">The name of the property on the specified entity to load.</param>
|
240
|
+
<param name="callback">The delegate called when a response to the request is received.</param>
|
241
|
+
<param name="state">The user-defined state object that is used to pass context data to the callback method.</param>
|
242
|
+
</member>
|
243
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.Data.Services.Client.DataServiceQueryContinuation,System.AsyncCallback,System.Object)">
|
244
|
+
<summary>Asynchronously loads the next page of related entities from the data service by using the supplied query continuation object.</summary>
|
245
|
+
<returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the operation.</returns>
|
246
|
+
<param name="entity">The entity that contains the property to load.</param>
|
247
|
+
<param name="propertyName">The name of the property of the specified entity to load.</param>
|
248
|
+
<param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of related entity data to return from the data service.</param>
|
249
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
250
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
251
|
+
</member>
|
252
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.Uri,System.AsyncCallback,System.Object)">
|
253
|
+
<summary>Asynchronously loads a page of related entities from the data service by using the supplied next link URI.</summary>
|
254
|
+
<returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
|
255
|
+
<param name="entity">The entity that contains the property to load.</param>
|
256
|
+
<param name="propertyName">The name of the property of the specified entity to load.</param>
|
257
|
+
<param name="nextLinkUri">The URI used to load the next results page.</param>
|
258
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
259
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
260
|
+
</member>
|
261
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginSaveChanges(System.AsyncCallback,System.Object)">
|
262
|
+
<summary>Asynchronously submits the pending changes to the data service collected by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> since the last time changes were saved.</summary>
|
263
|
+
<returns>An IAsyncResult that represents the status of the asynchronous operation.</returns>
|
264
|
+
<param name="callback">The delegate to call when the operation is completed.</param>
|
265
|
+
<param name="state">The user-defined state object that is used to pass context data to the callback method.</param>
|
266
|
+
</member>
|
267
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.BeginSaveChanges(System.Data.Services.Client.SaveChangesOptions,System.AsyncCallback,System.Object)">
|
268
|
+
<summary>Asynchronously submits the pending changes to the data service collected by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> since the last time changes were saved.</summary>
|
269
|
+
<returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</returns>
|
270
|
+
<param name="options">The options for how the client can save the pending set of changes.</param>
|
271
|
+
<param name="callback">The delegate to call when the operation is completed.</param>
|
272
|
+
<param name="state">The user-defined state object that is used to pass context data to the callback method.</param>
|
273
|
+
</member>
|
274
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.CancelRequest(System.IAsyncResult)">
|
275
|
+
<summary>Attempts to cancel the operation that is associated with the supplied <see cref="T:System.IAsyncResult" /> object.</summary>
|
276
|
+
<param name="asyncResult">The <see cref="T:System.IAsyncResult" /> object from the operation being canceled.</param>
|
277
|
+
</member>
|
278
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.CreateQuery``1(System.String)">
|
279
|
+
<summary>Creates a data service query for data of a specified generic type.</summary>
|
280
|
+
<returns>A new <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> instance that represents a data service query.</returns>
|
281
|
+
<param name="entitySetName">A string that resolves to a URI.</param>
|
282
|
+
<typeparam name="T">The type returned by the query</typeparam>
|
283
|
+
</member>
|
284
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.Credentials">
|
285
|
+
<summary>Gets or sets the authentication information that is used by each query created by using the <see cref="T:System.Data.Services.Client.DataServiceContext" /> object.</summary>
|
286
|
+
<returns>The base authentication interface for retrieving credentials for Web client authentication.</returns>
|
287
|
+
</member>
|
288
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.DataNamespace">
|
289
|
+
<summary>Gets or sets the XML namespace for data items, not metadata items, of an Atom payload.</summary>
|
290
|
+
<returns>A string representing the XML namespace for data items of a payload in the ATOM format.</returns>
|
291
|
+
</member>
|
292
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.DeleteLink(System.Object,System.String,System.Object)">
|
293
|
+
<summary>Changes the state of the link to deleted in the list of links being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
294
|
+
<param name="source">The source object in the link to be marked for deletion.</param>
|
295
|
+
<param name="sourceProperty">The name of the navigation property on the source object that is used to access the target object.</param>
|
296
|
+
<param name="target">The target object involved in the link that is bound to the source object. The target object must be of the type identified by the source property or a subtype.</param>
|
297
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" />, or <paramref name="target" /> is null.</exception>
|
298
|
+
<exception cref="T:System.InvalidOperationException">When <paramref name="source" /> or <paramref name="target" /> is in a <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-When <paramref name="sourceProperty" /> is not a collection.</exception>
|
299
|
+
</member>
|
300
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.DeleteObject(System.Object)">
|
301
|
+
<summary>Changes the state of the specified object to be deleted in the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
302
|
+
<param name="entity">The tracked entity to be changed to the deleted state.</param>
|
303
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
|
304
|
+
<exception cref="T:System.InvalidOperationException">When the object is not being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</exception>
|
305
|
+
</member>
|
306
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.Detach(System.Object)">
|
307
|
+
<summary>Removes the entity from the list of entities that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking.</summary>
|
308
|
+
<returns>Returns true if the specified entity was detached; otherwise false.</returns>
|
309
|
+
<param name="entity">The tracked entity to be detached from the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</param>
|
310
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
|
311
|
+
</member>
|
312
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.DetachLink(System.Object,System.String,System.Object)">
|
313
|
+
<summary>Removes the specified link from the list of links being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
314
|
+
<returns>Returns true if the specified entity was detached; otherwise false.</returns>
|
315
|
+
<param name="source">The source object participating in the link to be marked for deletion.</param>
|
316
|
+
<param name="sourceProperty">The name of the property on the source object that represents the source in the link between the source and the target.</param>
|
317
|
+
<param name="target">The target object involved in the link that is bound to the source object. The target object must be of the type identified by the source property or a subtype.</param>
|
318
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="source" /> or <paramref name="sourceProperty" /> are null.</exception>
|
319
|
+
<exception cref="T:System.ArgumentException">When <paramref name="sourceProperty" /> is an empty string.</exception>
|
320
|
+
</member>
|
321
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.EndExecute``1(System.IAsyncResult)">
|
322
|
+
<summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Uri,System.AsyncCallback,System.Object)" />.</summary>
|
323
|
+
<returns>The results returned by the query operation.</returns>
|
324
|
+
<param name="asyncResult">
|
325
|
+
<see cref="T:System.IAsyncResult" /> object.</param>
|
326
|
+
<typeparam name="TElement">The type returned by the query.</typeparam>
|
327
|
+
<exception cref="T:System.ArgumentNullException">When<paramref name=" asyncResult" /> is null.</exception>
|
328
|
+
<exception cref="T:System.ArgumentException">When<paramref name=" asyncResult" /> did not originate from this <see cref="T:System.Data.Services.Client.DataServiceContext" /> instance. -or- When the <see cref="M:System.Data.Services.Client.DataServiceContext.EndExecute``1(System.IAsyncResult)" /> method was previously called.</exception>
|
329
|
+
<exception cref="T:System.InvalidOperationException">When an error is raised either during execution of the request or when it converts the contents of the response message into objects.</exception>
|
330
|
+
</member>
|
331
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.EndExecuteBatch(System.IAsyncResult)">
|
332
|
+
<summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginExecuteBatch(System.AsyncCallback,System.Object,System.Data.Services.Client.DataServiceRequest[])" />.</summary>
|
333
|
+
<returns>The DataServiceResult object that indicates the result of the batch operation.</returns>
|
334
|
+
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
|
335
|
+
</member>
|
336
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.EndGetReadStream(System.IAsyncResult)">
|
337
|
+
<summary>Called to complete the asynchronous operation of retrieving a binary data stream.</summary>
|
338
|
+
<returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> which contains the response stream along with its metadata.</returns>
|
339
|
+
<param name="asyncResult">The result from the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginGetReadStream(System.Object,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object)" /> operation that contains the binary data stream.</param>
|
340
|
+
</member>
|
341
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.EndLoadProperty(System.IAsyncResult)">
|
342
|
+
<summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.AsyncCallback,System.Object)" /> operation.</summary>
|
343
|
+
<returns>The response to the load operation.</returns>
|
344
|
+
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
|
345
|
+
</member>
|
346
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.EndSaveChanges(System.IAsyncResult)">
|
347
|
+
<summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginSaveChanges(System.AsyncCallback,System.Object)" /> operation.</summary>
|
348
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> object that indicates the result of the batch operation.</returns>
|
349
|
+
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
|
350
|
+
</member>
|
351
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.Entities">
|
352
|
+
<summary>Gets a list of all the resources currently being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
|
353
|
+
<returns>A list of <see cref="T:System.Data.Services.Client.EntityDescriptor" /> objects that represent all the resources currently being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />. </returns>
|
354
|
+
</member>
|
355
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.Execute``1(System.Data.Services.Client.DataServiceQueryContinuation{``0})">
|
356
|
+
<summary>Sends a request to the data service to retrieve the next page of data in a paged query result.</summary>
|
357
|
+
<returns>The response that contains the next page of data in the query result.</returns>
|
358
|
+
<param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of data to return from the data service.</param>
|
359
|
+
<typeparam name="T">The type returned by the query.</typeparam>
|
360
|
+
</member>
|
361
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.Execute``1(System.Uri)">
|
362
|
+
<summary>Sends a request to the data service to execute a specific URI.</summary>
|
363
|
+
<returns>The results of the query operation.</returns>
|
364
|
+
<param name="requestUri">The URI to which the query request will be sent. The URI may be any valid data service URI. Can contain $ query parameters.</param>
|
365
|
+
<typeparam name="TElement">The type that the query returns.</typeparam>
|
366
|
+
<exception cref="T:System.Net.WebException">When a response is not received from a request to the <paramref name="requestUri" />.</exception>
|
367
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="requestUri" /> is null.</exception>
|
368
|
+
<exception cref="T:System.ArgumentException">When <paramref name="requestUri" /> is not a valid URI for the data service.</exception>
|
369
|
+
<exception cref="T:System.InvalidOperationException">When an error is raised either during execution of the request or when it converts the contents of the response message into objects.</exception>
|
370
|
+
</member>
|
371
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.ExecuteBatch(System.Data.Services.Client.DataServiceRequest[])">
|
372
|
+
<summary>Submits a group of queries as a batch to the data service.</summary>
|
373
|
+
<returns>The response to the batch operation.</returns>
|
374
|
+
<param name="queries">Array of <see cref="T:System.Data.Services.Client.DataServiceRequest[]" /> objects that make up the queries.</param>
|
375
|
+
</member>
|
376
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetEntityDescriptor(System.Object)">
|
377
|
+
<summary>Gets the <see cref="T:System.Data.Services.Client.EntityDescriptor" /> for the supplied entity object.</summary>
|
378
|
+
<returns>The <see cref="T:System.Data.Services.Client.EntityDescriptor" /> instance for the <paramref name="entity" />, or null if an <see cref="T:System.Data.Services.Client.EntityDescriptor" /> does not exist for the object.</returns>
|
379
|
+
<param name="entity">The object for which to return the entity descriptor.</param>
|
380
|
+
</member>
|
381
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetLinkDescriptor(System.Object,System.String,System.Object)">
|
382
|
+
<summary>Gets the <see cref="T:System.Data.Services.Client.LinkDescriptor" /> for a specific link that defines the relationship between two entities.</summary>
|
383
|
+
<returns>The <see cref="T:System.Data.Services.Client.LinkDescriptor" /> instance for the specified relationship, or null if a <see cref="T:System.Data.Services.Client.LinkDescriptor" /> does not exist for the relationship.</returns>
|
384
|
+
<param name="source">Source object in the link</param>
|
385
|
+
<param name="sourceProperty">The name of the navigation property on the <paramref name="source" /> object that returns the related object.</param>
|
386
|
+
<param name="target">The related entity.</param>
|
387
|
+
</member>
|
388
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetMetadataUri">
|
389
|
+
<summary>Gets a URI of the location of .edmx metadata.</summary>
|
390
|
+
<returns>A URI that identifies the location of the metadata description, in .edmx format, for the data service identified by the base URI that is passed to the constructor.</returns>
|
391
|
+
</member>
|
392
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object)">
|
393
|
+
<summary>Gets the binary data stream that belongs to the specified entity.</summary>
|
394
|
+
<returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
|
395
|
+
<param name="entity">The entity that has the binary stream to retrieve. </param>
|
396
|
+
<exception cref="T:System.ArgumentNullException">The<paramref name=" entity" /> is null.</exception>
|
397
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related binary stream.</exception>
|
398
|
+
</member>
|
399
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object,System.Data.Services.Client.DataServiceRequestArgs)">
|
400
|
+
<summary>Gets binary data stream for the specified entity by using the specified message headers.</summary>
|
401
|
+
<returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
|
402
|
+
<param name="entity">The entity that has the binary stream to retrieve. </param>
|
403
|
+
<param name="args">Instance of <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
|
404
|
+
<exception cref="T:System.ArgumentNullException">
|
405
|
+
<paramref name="entity" /> is null.-or- <paramref name="args" /> is null.</exception>
|
406
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related binary stream.</exception>
|
407
|
+
</member>
|
408
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object,System.String)">
|
409
|
+
<summary>Gets the binary data stream that belongs to the specified entity, by using the specified Content-Type message header.</summary>
|
410
|
+
<returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
|
411
|
+
<param name="entity">The entity that has the binary data stream to retrieve. </param>
|
412
|
+
<param name="acceptContentType">The Content-Type of the binary data stream requested from the data service, specified in the Accept header.</param>
|
413
|
+
<exception cref="T:System.ArgumentNullException">
|
414
|
+
<paramref name="entity" /> is null.-or- <paramref name="acceptContentType" /> is null.</exception>
|
415
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related stream.</exception>
|
416
|
+
</member>
|
417
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object,System.String,System.Data.Services.Client.DataServiceRequestArgs)">
|
418
|
+
<summary>Gets a named binary data stream that belongs to the specified entity, by using the specified Content-Type message header.</summary>
|
419
|
+
<returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
|
420
|
+
<param name="entity">The entity that has the binary data stream to retrieve.</param>
|
421
|
+
<param name="name">The name of the binary stream to request.</param>
|
422
|
+
<param name="args">Instance of <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
|
423
|
+
</member>
|
424
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetReadStreamUri(System.Object)">
|
425
|
+
<summary>Gets the URI that is used to return a binary data stream.</summary>
|
426
|
+
<returns>The read URI of the binary data stream.</returns>
|
427
|
+
<param name="entity">The entity that has a related binary stream to retrieve. </param>
|
428
|
+
<exception cref="T:System.ArgumentNullException">If the entity specified is null.</exception>
|
429
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.</exception>
|
430
|
+
</member>
|
431
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.GetReadStreamUri(System.Object,System.String)">
|
432
|
+
<summary>Gets the URI that is used to return a named binary data stream.</summary>
|
433
|
+
<returns>The read URI of the binary data stream.</returns>
|
434
|
+
<param name="entity">The entity that has the named binary data stream to retrieve.</param>
|
435
|
+
<param name="name">The name of the stream to request.</param>
|
436
|
+
</member>
|
437
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.IgnoreMissingProperties">
|
438
|
+
<summary>Gets or sets whether the properties read from the type must be mapped to properties on the client-side type.</summary>
|
439
|
+
<returns>A Boolean value that indicates whether the properties read from the type must be mapped to properties on the client-side type.</returns>
|
440
|
+
</member>
|
441
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.IgnoreResourceNotFoundException">
|
442
|
+
<summary>Gets or sets whether an exception is raised when a 404 error (resource not found) is returned by the data service. </summary>
|
443
|
+
<returns>When set to true, the client library returns an empty set instead of raising a <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> when the data service returns an HTTP 404: Resource Not Found error.</returns>
|
444
|
+
</member>
|
445
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.Links">
|
446
|
+
<summary>Gets the collection of all associations or links currently being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> object.</summary>
|
447
|
+
<returns>A collection of <see cref="T:System.Data.Services.Client.LinkDescriptor" /> objects that represent all associations or links current being tracked by the current being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> object.</returns>
|
448
|
+
</member>
|
449
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty(System.Object,System.String)">
|
450
|
+
<summary>Loads deferred content for a specified property from the data service.</summary>
|
451
|
+
<returns>The response to the load operation.</returns>
|
452
|
+
<param name="entity">The entity that contains the property to load.</param>
|
453
|
+
<param name="propertyName">The name of the property of the specified entity to load.</param>
|
454
|
+
</member>
|
455
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty(System.Object,System.String,System.Data.Services.Client.DataServiceQueryContinuation)">
|
456
|
+
<summary>Loads the next page of related entities from the data service by using the supplied query continuation object.</summary>
|
457
|
+
<returns>The response that contains the next page of related entity data.</returns>
|
458
|
+
<param name="entity">The entity that contains the property to load.</param>
|
459
|
+
<param name="propertyName">The name of the property of the specified entity to load.</param>
|
460
|
+
<param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of related entities to load from the data service.</param>
|
461
|
+
<exception cref="T:System.InvalidOperationException">When <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.</exception>
|
462
|
+
</member>
|
463
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty``1(System.Object,System.String,System.Data.Services.Client.DataServiceQueryContinuation{``0})">
|
464
|
+
<summary>Loads the next page of related entities from the data service by using the supplied generic query continuation object.</summary>
|
465
|
+
<returns>The response that contains the next page of related entity data.</returns>
|
466
|
+
<param name="entity">The entity that contains the property to load.</param>
|
467
|
+
<param name="propertyName">The name of the property of the specified entity to load.</param>
|
468
|
+
<param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of related entities to load from the data service.</param>
|
469
|
+
<typeparam name="T">Element type of collection to load.</typeparam>
|
470
|
+
<exception cref="T:System.InvalidOperationException">When <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.</exception>
|
471
|
+
</member>
|
472
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty(System.Object,System.String,System.Uri)">
|
473
|
+
<summary>Loads a page of related entities by using the supplied next link URI.</summary>
|
474
|
+
<returns>An instance of <see cref="T:System.Data.Services.Client.QueryOperationResponse`1" /> that contains the results of the request.</returns>
|
475
|
+
<param name="entity">The entity that contains the property to load.</param>
|
476
|
+
<param name="propertyName">The name of the property of the specified entity to load.</param>
|
477
|
+
<param name="nextLinkUri">The URI that is used to load the next results page.</param>
|
478
|
+
<exception cref="T:System.InvalidOperationException">When <paramref name="entity" /> is in a <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.</exception>
|
479
|
+
</member>
|
480
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.MaxProtocolVersion">
|
481
|
+
<summary>Gets or sets the maximum version of the Open Data Protocol (OData) that the client is allowed to use.</summary>
|
482
|
+
<returns>The maximum version of OData that the client is allowed to use.</returns>
|
483
|
+
</member>
|
484
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.MergeOption">
|
485
|
+
<summary>Gets or sets the synchronization option for receiving entities from a data service.</summary>
|
486
|
+
<returns>One of the members of the <see cref="T:System.Data.Services.Client.MergeOption" /> enumeration.</returns>
|
487
|
+
</member>
|
488
|
+
<member name="E:System.Data.Services.Client.DataServiceContext.ReadingEntity">
|
489
|
+
<summary>Occurs after entity data has been completely read into the entity object.</summary>
|
490
|
+
</member>
|
491
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.ResolveEntitySet">
|
492
|
+
<summary>Gets or sets the delegate method that is used to resolve the entity set URI when the value cannot be determined from an edit-link or self-link URI.</summary>
|
493
|
+
<returns>A <see cref="System.Func`2" /> value that is a delegate that takes a <see cref="T:System.String" /> and returns a <see cref="T:System.Uri" /> value.</returns>
|
494
|
+
</member>
|
495
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.ResolveName">
|
496
|
+
<summary>Gets or sets a function to override the default type resolution strategy used by the client library when you send entities to a data service.</summary>
|
497
|
+
<returns>Returns a string that contains the name of the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</returns>
|
498
|
+
</member>
|
499
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.ResolveType">
|
500
|
+
<summary>Gets or sets a function that is used to override the default type resolution option that is used by the client library when receiving entities from a data service.</summary>
|
501
|
+
<returns>A function delegate that identifies an override function that is used to override the default type resolution option that is used by the client library.</returns>
|
502
|
+
</member>
|
503
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SaveChanges">
|
504
|
+
<summary>Saves the changes that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking to storage.</summary>
|
505
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> that contains status, headers, and errors that result from the call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges.Remarks" />.</returns>
|
506
|
+
</member>
|
507
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SaveChanges(System.Data.Services.Client.SaveChangesOptions)">
|
508
|
+
<summary>Saves the changes that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking to storage.</summary>
|
509
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> that contains status, headers, and errors that result from the call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</returns>
|
510
|
+
<param name="options">A member of the <see cref="T:System.Data.Services.Client.MergeOption" /> enumeration that specifies the materialization option.</param>
|
511
|
+
</member>
|
512
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.SaveChangesDefaultOptions">
|
513
|
+
<summary>Gets or sets the <see cref="T:System.Data.Services.Client.SaveChangesOptions" /> values that are used by the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method.</summary>
|
514
|
+
<returns>The current options for the save changes operation.</returns>
|
515
|
+
</member>
|
516
|
+
<member name="E:System.Data.Services.Client.DataServiceContext.SendingRequest">
|
517
|
+
<summary>Occurs when a new <see cref="T:System.Net.HttpWebRequest" /> has been created.</summary>
|
518
|
+
</member>
|
519
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SetLink(System.Object,System.String,System.Object)">
|
520
|
+
<summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> that a new link exists between the objects specified and that the link is represented by the property specified by the <paramref name="sourceProperty" /> parameter.</summary>
|
521
|
+
<param name="source">The source object for the new link.</param>
|
522
|
+
<param name="sourceProperty">The property on the source object that identifies the target object of the new link.</param>
|
523
|
+
<param name="target">The child object involved in the new link that is to be initialized by calling this method. The target object must be a subtype of the type identified by the <paramref name="sourceProperty" /> parameter. If <paramref name="target" /> is set to null, the call represents a delete link operation.</param>
|
524
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" /> or <paramref name="target" /> are null.</exception>
|
525
|
+
<exception cref="T:System.InvalidOperationException">When the specified link already exists.-or-When the objects supplied as <paramref name="source" /> or <paramref name="target" /> are in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Deleted" /> state.-or-When <paramref name="sourceProperty" /> is not a navigation property that defines a reference to a single related object.</exception>
|
526
|
+
</member>
|
527
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.IO.Stream,System.Boolean,System.Data.Services.Client.DataServiceRequestArgs)">
|
528
|
+
<summary>Sets a binary data stream for the specified entity, with the specified headers in the request message.</summary>
|
529
|
+
<param name="entity">The entity to which the binary stream belongs.</param>
|
530
|
+
<param name="stream">The <see cref="T:System.IO.Stream" /> from which to read the binary data. </param>
|
531
|
+
<param name="closeStream">A <see cref="T:System.Boolean" /> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method is completed. </param>
|
532
|
+
<param name="args">An instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
|
533
|
+
<exception cref="T:System.ArgumentNullException">Any of the parameters supplied to the method are null.</exception>
|
534
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not being tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" /> instance. -or-The <paramref name="entity" /> has the <see cref="T:System.Data.Services.Client.MediaEntryAttribute" /> applied. </exception>
|
535
|
+
</member>
|
536
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.IO.Stream,System.Boolean,System.String,System.String)">
|
537
|
+
<summary>Sets a binary data stream that belongs to the specified entity, with the specified Content-Type and Slug headers in the request message.</summary>
|
538
|
+
<param name="entity">The entity to which the data stream belongs.</param>
|
539
|
+
<param name="stream">The <see cref="T:System.IO.Stream" /> from which to read the binary data. </param>
|
540
|
+
<param name="closeStream">A <see cref="T:System.Boolean" /> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method is completed. </param>
|
541
|
+
<param name="contentType">The Content-Type header value for the request message.</param>
|
542
|
+
<param name="slug">The Slug header value for the request message.</param>
|
543
|
+
<exception cref="T:System.ArgumentNullException">Any of the parameters supplied to the method are null.</exception>
|
544
|
+
<exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not being tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" /> instance. -or-The entity has the <see cref="T:System.Data.Services.Client.MediaEntryAttribute" /> applied. </exception>
|
545
|
+
</member>
|
546
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.String,System.IO.Stream,System.Boolean,System.Data.Services.Client.DataServiceRequestArgs)">
|
547
|
+
<summary>Sets a named binary data stream that belongs to the specified entity, with the specified headers in the request message.</summary>
|
548
|
+
<param name="entity">The entity to which the binary stream belongs.</param>
|
549
|
+
<param name="name">The name of the binary stream to save.</param>
|
550
|
+
<param name="stream">The <see cref="T:System.IO.Stream" /> from which to read the binary data.</param>
|
551
|
+
<param name="closeStream">A <see cref="T:System.Boolean" /> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method is completed.</param>
|
552
|
+
<param name="args">An instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
|
553
|
+
</member>
|
554
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.String,System.IO.Stream,System.Boolean,System.String)">
|
555
|
+
<param name="entity">The entity to which the binary stream belongs.</param>
|
556
|
+
<param name="name">The name of the binary stream to save.</param>
|
557
|
+
<param name="stream">The <see cref="T:System.IO.Stream" /> from which to read the binary data.</param>
|
558
|
+
<param name="closeStream">A <see cref="T:System.Boolean" /> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method is completed.</param>
|
559
|
+
<param name="contentType">The Content-Type header value for the request message.</param>
|
560
|
+
</member>
|
561
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.Timeout">
|
562
|
+
<summary>Gets or sets the time-out option (in seconds) that is used for the underlying HTTP request to the data service.</summary>
|
563
|
+
<returns>An integer that indicates the time interval (in seconds) before time-out of a service request.</returns>
|
564
|
+
</member>
|
565
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.TryGetEntity``1(System.Uri,``0@)">
|
566
|
+
<summary>Test retrieval of an entity being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> by reference to the URI of the entity.</summary>
|
567
|
+
<returns>If an entity is found at <paramref name="resourceUri" />, the entity is returned in the out parameter <paramref name="entity" /> and true is returned. If no entity is found, false is returned.</returns>
|
568
|
+
<param name="identity">The URI of the tracked entity to be retrieved.</param>
|
569
|
+
<param name="entity">The entity to be retrieved.</param>
|
570
|
+
<typeparam name="TEntity">The type of the entity.</typeparam>
|
571
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="identity" /> is null.</exception>
|
572
|
+
</member>
|
573
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.TryGetUri(System.Object,System.Uri@)">
|
574
|
+
<summary>Retrieves the canonical URI associated with the specified entity, if available.</summary>
|
575
|
+
<returns>Returns true if the canonical URI is returned in the out parameter. If the specified entity is not tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> or is in the added state, no URI is available and false is returned.</returns>
|
576
|
+
<param name="entity">The entity identified by the <paramref name="identity" />.</param>
|
577
|
+
<param name="identity">The URI of the entity.</param>
|
578
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
|
579
|
+
</member>
|
580
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.TypeScheme">
|
581
|
+
<summary>Gets or sets the URI used to indicate what type scheme is used by the service.</summary>
|
582
|
+
<returns>A <see cref="T:System.Uri" /> object that contains the type scheme.</returns>
|
583
|
+
</member>
|
584
|
+
<member name="M:System.Data.Services.Client.DataServiceContext.UpdateObject(System.Object)">
|
585
|
+
<summary>Changes the state of the specified object in the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to <see cref="F:System.Data.Services.Client.EntityStates.Modified" />.</summary>
|
586
|
+
<param name="entity">The tracked entity to be assigned to the <see cref="F:System.Data.Services.Client.EntityStates.Modified" /> state.</param>
|
587
|
+
<exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
|
588
|
+
<exception cref="T:System.ArgumentException">When <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> state.</exception>
|
589
|
+
</member>
|
590
|
+
<member name="P:System.Data.Services.Client.DataServiceContext.UsePostTunneling">
|
591
|
+
<summary>Gets or sets a Boolean value that indicates whether to use post tunneling.</summary>
|
592
|
+
<returns>A Boolean value that indicates whether to use post tunneling.</returns>
|
593
|
+
</member>
|
594
|
+
<member name="E:System.Data.Services.Client.DataServiceContext.WritingEntity">
|
595
|
+
<summary>Occurs after an entity has been fully serialized into XML in a request message.</summary>
|
596
|
+
</member>
|
597
|
+
<member name="T:System.Data.Services.Client.DataServiceQuery">
|
598
|
+
<summary>An abstract class that represents a single query request to WCF Data Services. </summary>
|
599
|
+
</member>
|
600
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery.BeginExecute(System.AsyncCallback,System.Object)">
|
601
|
+
<summary>Asynchronously sends a request to execute the data service query.</summary>
|
602
|
+
<returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation.</returns>
|
603
|
+
<param name="callback">Delegate to invoke when results are available for client consumption.</param>
|
604
|
+
<param name="state">User-defined state object passed to the callback.</param>
|
605
|
+
</member>
|
606
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery.EndExecute(System.IAsyncResult)">
|
607
|
+
<summary>Called to complete the asynchronous operation of executing a data service query.</summary>
|
608
|
+
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the results of the query operation.</returns>
|
609
|
+
<param name="asyncResult">The result from the <see cref="M:System.Data.Services.Client.DataServiceQuery.BeginExecute(System.AsyncCallback,System.Object)" /> operation that contains the query results.</param>
|
610
|
+
</member>
|
611
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery.Execute">
|
612
|
+
<summary>Executes the query against the data service.</summary>
|
613
|
+
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the results of the query operation.</returns>
|
614
|
+
</member>
|
615
|
+
<member name="P:System.Data.Services.Client.DataServiceQuery.Expression">
|
616
|
+
<summary>Represents an expression that contains the query to the data service.</summary>
|
617
|
+
<returns>An <see cref="T:System.Linq.Expressions.Expression" /> object that represents the query.</returns>
|
618
|
+
</member>
|
619
|
+
<member name="P:System.Data.Services.Client.DataServiceQuery.Provider">
|
620
|
+
<summary>Represents the query provider instance.</summary>
|
621
|
+
<returns>An <see cref="T:System.Linq.IQueryProvider" /> representing the data source provider.</returns>
|
622
|
+
</member>
|
623
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery.System#Collections#IEnumerable#GetEnumerator">
|
624
|
+
<summary>Gets the <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection returned by the query.</summary>
|
625
|
+
<returns>An enumerator over the query results.</returns>
|
626
|
+
</member>
|
627
|
+
<member name="T:System.Data.Services.Client.DataServiceQuery`1">
|
628
|
+
<summary>Represents a single query request to a data service.</summary>
|
629
|
+
<typeparam name="TElement">Type of results returned by the query.</typeparam>
|
630
|
+
</member>
|
631
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.AddQueryOption(System.String,System.Object)">
|
632
|
+
<summary>Creates a new <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> with the query option set in the URI generated by the returned query.</summary>
|
633
|
+
<returns>A new query that includes the requested query option appended to the URI of the supplied query</returns>
|
634
|
+
<param name="name">The string value that contains the name of the query string option to add.</param>
|
635
|
+
<param name="value">The object that contains the value of the query string option.</param>
|
636
|
+
</member>
|
637
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.BeginExecute(System.AsyncCallback,System.Object)">
|
638
|
+
<summary>Starts an asynchronous network operation that executes the query represented by this object instance.</summary>
|
639
|
+
<returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</returns>
|
640
|
+
<param name="callback">The delegate to invoke when the operation completes.</param>
|
641
|
+
<param name="state">User defined object used to transfer state between the start of the operation and the callback defined by <paramref name="callback" />.</param>
|
642
|
+
</member>
|
643
|
+
<member name="P:System.Data.Services.Client.DataServiceQuery`1.ElementType">
|
644
|
+
<summary>Returns the type of the object used in the template to create the <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> instance.</summary>
|
645
|
+
<returns>Returns <see cref="T:System.Type" /> representing the type used in the template when the query is created.</returns>
|
646
|
+
</member>
|
647
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.EndExecute(System.IAsyncResult)">
|
648
|
+
<summary>Ends an asynchronous query request to a data service.</summary>
|
649
|
+
<returns>Returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the results of the query operation.</returns>
|
650
|
+
<param name="asyncResult">The pending asynchronous query request.</param>
|
651
|
+
</member>
|
652
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.Execute">
|
653
|
+
<summary>Executes the query and returns the results as a collection that implements IEnumerable.</summary>
|
654
|
+
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> in which <paramref name="T" /> represents the type of the query results.</returns>
|
655
|
+
</member>
|
656
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.Expand``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
|
657
|
+
<summary>Expands a query to include entities from a related entity set in the query response, where the related entity is of a specific type in a type hierarchy. </summary>
|
658
|
+
<returns>Returns a <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> that with the expand option included.</returns>
|
659
|
+
<param name="navigationPropertyAccessor">A lambda expression that indicates the navigation property that returns the entity set to include in the expanded query.</param>
|
660
|
+
<typeparam name="TTarget">Target type of the last property on the expand path.</typeparam>
|
661
|
+
</member>
|
662
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.Expand(System.String)">
|
663
|
+
<summary>Expands a query to include entities from a related entity set in the query response.</summary>
|
664
|
+
<returns>A new query that includes the requested $expand query option appended to the URI of the supplied query.</returns>
|
665
|
+
<param name="path">The expand path in the format Orders/Order_Details.</param>
|
666
|
+
</member>
|
667
|
+
<member name="P:System.Data.Services.Client.DataServiceQuery`1.Expression">
|
668
|
+
<summary>Represents an expression containing the query to the data service.</summary>
|
669
|
+
<returns>A <see cref="T:System.Linq.Expressions.Expression" /> object representing the query.</returns>
|
670
|
+
</member>
|
671
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.GetEnumerator">
|
672
|
+
<summary>Executes the query and returns the results as a collection.</summary>
|
673
|
+
<returns>A typed enumerator over the results in which <paramref name="TEntity" /> represents the type of the query results.</returns>
|
674
|
+
</member>
|
675
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.IncludeTotalCount">
|
676
|
+
<summary>Requests that the count of all entities in the entity set be returned inline with the query results.</summary>
|
677
|
+
<returns>A new <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> object that has the inline count option set.</returns>
|
678
|
+
</member>
|
679
|
+
<member name="P:System.Data.Services.Client.DataServiceQuery`1.Provider">
|
680
|
+
<summary>Represents the query provider instance.</summary>
|
681
|
+
<returns>A <see cref="T:System.Linq.IQueryProvider" /> representing the data source provider.</returns>
|
682
|
+
</member>
|
683
|
+
<member name="P:System.Data.Services.Client.DataServiceQuery`1.RequestUri">
|
684
|
+
<summary>Get the URI for the query.</summary>
|
685
|
+
<returns>The URI of the request.</returns>
|
686
|
+
</member>
|
687
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.System#Collections#IEnumerable#GetEnumerator">
|
688
|
+
<summary>Executes the query and returns the results as a collection.</summary>
|
689
|
+
<returns>An enumerator over the query results.</returns>
|
690
|
+
</member>
|
691
|
+
<member name="M:System.Data.Services.Client.DataServiceQuery`1.ToString">
|
692
|
+
<summary>Represents the URI of the query to the data service.</summary>
|
693
|
+
<returns>A URI as string that represents the query to the data service for this <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> instance.</returns>
|
694
|
+
</member>
|
695
|
+
<member name="T:System.Data.Services.Client.DataServiceQueryContinuation">
|
696
|
+
<summary>Encapsulates a URI that returns the next page of a paged WCF Data Services query result.</summary>
|
697
|
+
</member>
|
698
|
+
<member name="P:System.Data.Services.Client.DataServiceQueryContinuation.NextLinkUri">
|
699
|
+
<summary>Gets the URI that is used to return the next page of data from a paged query result.</summary>
|
700
|
+
<returns>A URI that returns the next page of data.</returns>
|
701
|
+
</member>
|
702
|
+
<member name="M:System.Data.Services.Client.DataServiceQueryContinuation.ToString">
|
703
|
+
<summary>Returns the next link URI as a string.</summary>
|
704
|
+
<returns>A string representation of the next link URI. </returns>
|
705
|
+
</member>
|
706
|
+
<member name="T:System.Data.Services.Client.DataServiceQueryContinuation`1">
|
707
|
+
<summary>Encapsulates a URI that returns the next page of a paged WCF Data Services query result. </summary>
|
708
|
+
<typeparam name="T">The type of continuation token.</typeparam>
|
709
|
+
</member>
|
710
|
+
<member name="T:System.Data.Services.Client.DataServiceQueryException">
|
711
|
+
<summary>Exception that indicates an error occurred loading the property value from the data service. </summary>
|
712
|
+
</member>
|
713
|
+
<member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor">
|
714
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class with a system-supplied message that describes the error. </summary>
|
715
|
+
</member>
|
716
|
+
<member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.String)">
|
717
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class with a specified message that describes the error. </summary>
|
718
|
+
<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.The string value that the contains error message.</param>
|
719
|
+
</member>
|
720
|
+
<member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.String,System.Exception)">
|
721
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary>
|
722
|
+
<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. The string value that contains the error message.</param>
|
723
|
+
<param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. The inner exception object.</param>
|
724
|
+
</member>
|
725
|
+
<member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.String,System.Exception,System.Data.Services.Client.QueryOperationResponse)">
|
726
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class. </summary>
|
727
|
+
<param name="message">The string value that contains the error message.</param>
|
728
|
+
<param name="innerException">The inner exception object.</param>
|
729
|
+
<param name="response">The <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> object.</param>
|
730
|
+
</member>
|
731
|
+
<member name="P:System.Data.Services.Client.DataServiceQueryException.Response">
|
732
|
+
<summary>Gets the <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> that indicates the exception results.</summary>
|
733
|
+
<returns>A <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> object that indicates the exception results.</returns>
|
734
|
+
</member>
|
735
|
+
<member name="T:System.Data.Services.Client.DataServiceRequest">
|
736
|
+
<summary>Represents request objects submitted as a batch to WCF Data Services.</summary>
|
737
|
+
</member>
|
738
|
+
<member name="P:System.Data.Services.Client.DataServiceRequest.ElementType">
|
739
|
+
<summary>Gets the type of object submitted as a batch to the data service.</summary>
|
740
|
+
<returns>Type object.</returns>
|
741
|
+
</member>
|
742
|
+
<member name="P:System.Data.Services.Client.DataServiceRequest.RequestUri">
|
743
|
+
<summary>Gets the URI of the request object submitted to a data service.</summary>
|
744
|
+
<returns>URI of the request object.</returns>
|
745
|
+
</member>
|
746
|
+
<member name="T:System.Data.Services.Client.DataServiceRequest`1">
|
747
|
+
<summary>Represents request objects submitted as a batch to the data service.</summary>
|
748
|
+
<typeparam name="TElement">An entity type.</typeparam>
|
749
|
+
</member>
|
750
|
+
<member name="M:System.Data.Services.Client.DataServiceRequest`1.#ctor(System.Uri)">
|
751
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequest`1" /> class. </summary>
|
752
|
+
<param name="requestUri">The URI object that contains the request string.</param>
|
753
|
+
</member>
|
754
|
+
<member name="P:System.Data.Services.Client.DataServiceRequest`1.ElementType">
|
755
|
+
<summary>Gets the type of the object used to create the <see cref="T:System.Data.Services.Client.DataServiceRequest`1" /> instance.</summary>
|
756
|
+
<returns>A <see cref="System.Type" /> value that indicates the type of data returned.</returns>
|
757
|
+
</member>
|
758
|
+
<member name="P:System.Data.Services.Client.DataServiceRequest`1.RequestUri">
|
759
|
+
<summary>Gets the URI object that contains the request string. </summary>
|
760
|
+
<returns>A <see cref="System.Uri" /> object that contains the request string.</returns>
|
761
|
+
</member>
|
762
|
+
<member name="M:System.Data.Services.Client.DataServiceRequest`1.ToString">
|
763
|
+
<summary>Represents the URI of the query to the data service. </summary>
|
764
|
+
<returns>The requested URI as a <see cref="T:System.String" /> value.</returns>
|
765
|
+
</member>
|
766
|
+
<member name="T:System.Data.Services.Client.DataServiceRequestArgs">
|
767
|
+
<summary>Represents additional metadata that is included in a request message to WCF Data Services.</summary>
|
768
|
+
</member>
|
769
|
+
<member name="M:System.Data.Services.Client.DataServiceRequestArgs.#ctor">
|
770
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class.</summary>
|
771
|
+
</member>
|
772
|
+
<member name="P:System.Data.Services.Client.DataServiceRequestArgs.AcceptContentType">
|
773
|
+
<summary>Gets or sets the Accept header of the request message.</summary>
|
774
|
+
<returns>The value of the Accept header.</returns>
|
775
|
+
</member>
|
776
|
+
<member name="P:System.Data.Services.Client.DataServiceRequestArgs.ContentType">
|
777
|
+
<summary>Gets or sets the Content-Type header of the request message.</summary>
|
778
|
+
<returns>The value of the Content-Type header.</returns>
|
779
|
+
</member>
|
780
|
+
<member name="P:System.Data.Services.Client.DataServiceRequestArgs.Headers">
|
781
|
+
<summary>Gets the headers in the request message.</summary>
|
782
|
+
<returns>The headers in the request message.</returns>
|
783
|
+
</member>
|
784
|
+
<member name="P:System.Data.Services.Client.DataServiceRequestArgs.Slug">
|
785
|
+
<summary>Gets or sets the value of the Slug header of the request message.</summary>
|
786
|
+
<returns>A value that is the Slug header of the request. </returns>
|
787
|
+
</member>
|
788
|
+
<member name="T:System.Data.Services.Client.DataServiceRequestException">
|
789
|
+
<summary>Represents the error thrown if the data service returns a response code less than 200 or greater than 299, or the top-level element in the response is <error>. This class cannot be inherited.</summary>
|
790
|
+
</member>
|
791
|
+
<member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor">
|
792
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class with a system-supplied message that describes the error. </summary>
|
793
|
+
</member>
|
794
|
+
<member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.String)">
|
795
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class with a specified message that describes the error. </summary>
|
796
|
+
<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.The error message text.</param>
|
797
|
+
</member>
|
798
|
+
<member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.String,System.Exception)">
|
799
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary>
|
800
|
+
<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>
|
801
|
+
<param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
|
802
|
+
</member>
|
803
|
+
<member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.String,System.Exception,System.Data.Services.Client.DataServiceResponse)">
|
804
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class. </summary>
|
805
|
+
<param name="message">Error message text.</param>
|
806
|
+
<param name="innerException">Exception object that contains the inner exception.</param>
|
807
|
+
<param name="response">
|
808
|
+
<see cref="T:System.Data.Services.Client.DataServiceResponse" /> object.</param>
|
809
|
+
</member>
|
810
|
+
<member name="P:System.Data.Services.Client.DataServiceRequestException.Response">
|
811
|
+
<summary>Gets the response as a <see cref="T:System.Data.Services.Client.DataServiceResponse" /> object. </summary>
|
812
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> object.</returns>
|
813
|
+
</member>
|
814
|
+
<member name="T:System.Data.Services.Client.DataServiceResponse">
|
815
|
+
<summary>Represents the response to operations sent to the data service as a result of calling <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />. </summary>
|
816
|
+
</member>
|
817
|
+
<member name="P:System.Data.Services.Client.DataServiceResponse.BatchHeaders">
|
818
|
+
<summary>The headers from an HTTP response associated with a batch request.</summary>
|
819
|
+
<returns>An <see cref="T:System.Collections.IDictionary" /> object containing the name-value pairs of an HTTP response.</returns>
|
820
|
+
</member>
|
821
|
+
<member name="P:System.Data.Services.Client.DataServiceResponse.BatchStatusCode">
|
822
|
+
<summary>The status code from an HTTP response associated with a batch request.</summary>
|
823
|
+
<returns>An integer based on status codes defined in Hypertext Transfer Protocol.</returns>
|
824
|
+
</member>
|
825
|
+
<member name="M:System.Data.Services.Client.DataServiceResponse.GetEnumerator">
|
826
|
+
<summary>Gets an enumerator that enables retrieval of responses to operations being tracked by <see cref="T:System.Data.Services.Client.OperationResponse" /> objects within the <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
|
827
|
+
<returns>An enumerator over the response received from the service.</returns>
|
828
|
+
</member>
|
829
|
+
<member name="P:System.Data.Services.Client.DataServiceResponse.IsBatchResponse">
|
830
|
+
<summary>Gets a Boolean value that indicates whether the response contains multiple results.</summary>
|
831
|
+
<returns>A Boolean value that indicates whether the response contains multiple results.</returns>
|
832
|
+
</member>
|
833
|
+
<member name="M:System.Data.Services.Client.DataServiceResponse.System#Collections#IEnumerable#GetEnumerator">
|
834
|
+
<summary>Gets an enumerator that enables retrieval of responses to operations being tracked by <see cref="T:System.Data.Services.Client.OperationResponse" /> objects within the <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
|
835
|
+
<returns>An enumerator over the response received from the service.</returns>
|
836
|
+
</member>
|
837
|
+
<member name="T:System.Data.Services.Client.DataServiceResponsePreference">
|
838
|
+
<summary>Determines whether the client requests that the data service return inserted or updated entity data as an entry in the response message.</summary>
|
839
|
+
</member>
|
840
|
+
<member name="F:System.Data.Services.Client.DataServiceResponsePreference.None">
|
841
|
+
<summary>The Prefer header is not included in the request, which is the default behavior.</summary>
|
842
|
+
</member>
|
843
|
+
<member name="F:System.Data.Services.Client.DataServiceResponsePreference.IncludeContent">
|
844
|
+
<summary>Requests that the data service returns a copy of the inserted or changed entity as an entry in the body of the response message.</summary>
|
845
|
+
</member>
|
846
|
+
<member name="F:System.Data.Services.Client.DataServiceResponsePreference.NoContent">
|
847
|
+
<summary>Request that the data service not return a copy of the inserted or changed entity as an entry in the body of the response message.</summary>
|
848
|
+
</member>
|
849
|
+
<member name="T:System.Data.Services.Client.DataServiceStreamLink">
|
850
|
+
<summary>Represents the URL of a binary resource stream.</summary>
|
851
|
+
</member>
|
852
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamLink.ContentType">
|
853
|
+
<summary>Gets or sets the MIME Content-Type of the binary resource stream. </summary>
|
854
|
+
<returns>The Content-Type value for the stream.</returns>
|
855
|
+
</member>
|
856
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamLink.EditLink">
|
857
|
+
<summary>Gets or sets the URI used to edit the binary resource stream.</summary>
|
858
|
+
<returns>The URI used to edit the stream.</returns>
|
859
|
+
</member>
|
860
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamLink.ETag">
|
861
|
+
<summary>The eTag value that is used to determine concurrency for a binary resource stream.</summary>
|
862
|
+
<returns>The value of the eTag header for the stream.</returns>
|
863
|
+
</member>
|
864
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamLink.Name">
|
865
|
+
<summary>The name of the binary resource stream.</summary>
|
866
|
+
<returns>The name of the binary resource stream.</returns>
|
867
|
+
</member>
|
868
|
+
<member name="E:System.Data.Services.Client.DataServiceStreamLink.PropertyChanged">
|
869
|
+
<summary>Occurs when a property value changes.</summary>
|
870
|
+
</member>
|
871
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamLink.SelfLink">
|
872
|
+
<summary>The URI that returns the binary resource stream.</summary>
|
873
|
+
<returns>The URI of the stream.</returns>
|
874
|
+
</member>
|
875
|
+
<member name="T:System.Data.Services.Client.DataServiceStreamResponse">
|
876
|
+
<summary>Represents a response from WCF Data Services that contains binary data as a stream.</summary>
|
877
|
+
</member>
|
878
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamResponse.ContentDisposition">
|
879
|
+
<summary>Gets the Content-Disposition header field for the response stream.</summary>
|
880
|
+
<returns>The contents of the Content-Disposition header field.</returns>
|
881
|
+
</member>
|
882
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamResponse.ContentType">
|
883
|
+
<summary>Gets the content type of the response stream.</summary>
|
884
|
+
<returns>The content type of the response stream.</returns>
|
885
|
+
</member>
|
886
|
+
<member name="M:System.Data.Services.Client.DataServiceStreamResponse.Dispose">
|
887
|
+
<summary>Releases all resources used by the current instance of the <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> class.</summary>
|
888
|
+
</member>
|
889
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamResponse.Headers">
|
890
|
+
<summary>Gets the collection of headers from the response.</summary>
|
891
|
+
<returns>The headers collection from the response message as a <see cref="T:System.Collections.Generic.Dictionary`2" /> object.</returns>
|
892
|
+
</member>
|
893
|
+
<member name="P:System.Data.Services.Client.DataServiceStreamResponse.Stream">
|
894
|
+
<summary>Gets the binary property data from the data service as a binary stream. </summary>
|
895
|
+
<returns>The stream that contains the binary property data.</returns>
|
896
|
+
<exception cref="T:System.ObjectDisposedException">When the <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> is already disposed.</exception>
|
897
|
+
</member>
|
898
|
+
<member name="T:System.Data.Services.Client.Descriptor">
|
899
|
+
<summary>Abstract class from which <see cref="T:System.Data.Services.Client.EntityDescriptor" /> is derived.</summary>
|
900
|
+
</member>
|
901
|
+
<member name="P:System.Data.Services.Client.Descriptor.State">
|
902
|
+
<summary>When overridden in a derived class, gets the state of the object at the time this instance was constructed.</summary>
|
903
|
+
<returns>An <see cref="T:System.Data.Services.Client.EntityStates" /> of the object returned at the time this instance was constructed. </returns>
|
904
|
+
</member>
|
905
|
+
<member name="T:System.Data.Services.Client.EntityChangedParams">
|
906
|
+
<summary>Encapsulates the arguments of a <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> delegate</summary>
|
907
|
+
</member>
|
908
|
+
<member name="P:System.Data.Services.Client.EntityChangedParams.Context">
|
909
|
+
<summary>The context that is associated with the entity object that has changed.</summary>
|
910
|
+
<returns>The context that is tracking the changed object.</returns>
|
911
|
+
</member>
|
912
|
+
<member name="P:System.Data.Services.Client.EntityChangedParams.Entity">
|
913
|
+
<summary>The entity object that has changed.</summary>
|
914
|
+
<returns>The changed object.</returns>
|
915
|
+
</member>
|
916
|
+
<member name="P:System.Data.Services.Client.EntityChangedParams.PropertyName">
|
917
|
+
<summary>The name of the property on the entity object that references the target object.</summary>
|
918
|
+
<returns>The name of the changed property.</returns>
|
919
|
+
</member>
|
920
|
+
<member name="P:System.Data.Services.Client.EntityChangedParams.PropertyValue">
|
921
|
+
<summary>The object that is currently referenced by the changed property on the entity object.</summary>
|
922
|
+
<returns>The current value that references a target entity. </returns>
|
923
|
+
</member>
|
924
|
+
<member name="P:System.Data.Services.Client.EntityChangedParams.SourceEntitySet">
|
925
|
+
<summary>The entity set of the source object.</summary>
|
926
|
+
<returns>An entity set name.</returns>
|
927
|
+
</member>
|
928
|
+
<member name="P:System.Data.Services.Client.EntityChangedParams.TargetEntitySet">
|
929
|
+
<summary>The entity set to which the target entity object belongs</summary>
|
930
|
+
<returns>An entity set name.</returns>
|
931
|
+
</member>
|
932
|
+
<member name="T:System.Data.Services.Client.EntityCollectionChangedParams">
|
933
|
+
<summary>Encapsulates the arguments of a <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> delegate.</summary>
|
934
|
+
</member>
|
935
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.Action">
|
936
|
+
<summary>A <see cref="T:System.Collections.Specialized.NotifyCollectionChangedAction" /> value that indicates how the collection was changed. </summary>
|
937
|
+
<returns>A value that indicates how the collection was changed.</returns>
|
938
|
+
</member>
|
939
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.Collection">
|
940
|
+
<summary>The <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> that has changed.</summary>
|
941
|
+
<returns>A reference to the collection that has changed.</returns>
|
942
|
+
</member>
|
943
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.Context">
|
944
|
+
<summary>The <see cref="T:System.Data.Services.Client.DataServiceContext" /> associated with the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> that has changed.</summary>
|
945
|
+
<returns>The context associated with the collection that has changed</returns>
|
946
|
+
</member>
|
947
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.PropertyName">
|
948
|
+
<summary>The navigation property on the source object that references the collection that has changed.</summary>
|
949
|
+
<returns>The navigation property name.</returns>
|
950
|
+
</member>
|
951
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.SourceEntity">
|
952
|
+
<summary>The source object that references the target object in the collection by using a navigation property. </summary>
|
953
|
+
<returns>The source object.</returns>
|
954
|
+
</member>
|
955
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.SourceEntitySet">
|
956
|
+
<summary>The entity set of the source object.</summary>
|
957
|
+
<returns>An entity set name.</returns>
|
958
|
+
</member>
|
959
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.TargetEntity">
|
960
|
+
<summary>The entity object in the collection that has changed.</summary>
|
961
|
+
<returns>The changed entity object in the collection.</returns>
|
962
|
+
</member>
|
963
|
+
<member name="P:System.Data.Services.Client.EntityCollectionChangedParams.TargetEntitySet">
|
964
|
+
<summary>The entity set name of the object in the collection.</summary>
|
965
|
+
<returns>An entity set name.</returns>
|
966
|
+
</member>
|
967
|
+
<member name="T:System.Data.Services.Client.EntityDescriptor">
|
968
|
+
<summary>Description of modifications done to entities by operations returned in a <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
|
969
|
+
</member>
|
970
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.EditLink">
|
971
|
+
<summary>Gets or sets the URI that modifies the entity.</summary>
|
972
|
+
<returns>The edit link URI for the entity resource.</returns>
|
973
|
+
</member>
|
974
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.EditStreamUri">
|
975
|
+
<summary>Gets or sets the URI that modifies the binary property data of the entity.</summary>
|
976
|
+
<returns>The <see cref="P:System.Data.Services.Client.EntityDescriptor.EditStreamUri" /> property contains the edit-media link URI for the Media Resource that is associated with the entity, which is a Media Link Entry.</returns>
|
977
|
+
</member>
|
978
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.Entity">
|
979
|
+
<summary>Gets the entity that contains the update data.</summary>
|
980
|
+
<returns>An object that contains update data.</returns>
|
981
|
+
</member>
|
982
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.ETag">
|
983
|
+
<summary>Gets an eTag value that indicates the state of data targeted for update since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
|
984
|
+
<returns>A string value that indicates the state of data.</returns>
|
985
|
+
</member>
|
986
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.Identity">
|
987
|
+
<summary>Gets or sets the URI that is the identity value of the entity.</summary>
|
988
|
+
<returns>The <see cref="P:System.Data.Services.Client.EntityDescriptor.Identity" /> property corresponds to the identity element of the entry that represents the entity in the Atom response.</returns>
|
989
|
+
</member>
|
990
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.LinkInfos">
|
991
|
+
<summary>Returns a collection of links that are the relationships in which the entity participates.</summary>
|
992
|
+
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Client.LinkInfo" /> objects that represents links in which the entity participates.</returns>
|
993
|
+
</member>
|
994
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.ParentForInsert">
|
995
|
+
<summary>Gets the parent entity that is related to the entity.</summary>
|
996
|
+
<returns>An object that is the parent entity in the relationship link.</returns>
|
997
|
+
</member>
|
998
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.ParentPropertyForInsert">
|
999
|
+
<summary>Gets the name of the property of the entity that is a navigation property and links to the parent entity.</summary>
|
1000
|
+
<returns>The name of the parent property.</returns>
|
1001
|
+
</member>
|
1002
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.ReadStreamUri">
|
1003
|
+
<summary>Gets or sets the URI that accesses the binary property data of the entity.</summary>
|
1004
|
+
<returns>A URI that accesses the binary property as a stream.</returns>
|
1005
|
+
</member>
|
1006
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.SelfLink">
|
1007
|
+
<summary>Gets or sets the URI that is used to return the entity resource.</summary>
|
1008
|
+
<returns>A URI that returns the entity.</returns>
|
1009
|
+
</member>
|
1010
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.ServerTypeName">
|
1011
|
+
<summary>Gets or sets the name of the type in the data source to which the entity is mapped.</summary>
|
1012
|
+
<returns>A string that is the name of the data type.</returns>
|
1013
|
+
</member>
|
1014
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.StreamDescriptors">
|
1015
|
+
<summary>Returns a collection of named binary data streams that belong to the entity.</summary>
|
1016
|
+
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Client.StreamDescriptor" /> objects that are the named binary data streams that belong to the entity.</returns>
|
1017
|
+
</member>
|
1018
|
+
<member name="P:System.Data.Services.Client.EntityDescriptor.StreamETag">
|
1019
|
+
<summary>Gets the eTag for the media resource associated with an entity that is a media link entry.</summary>
|
1020
|
+
<returns>A string value that indicates the state of data.</returns>
|
1021
|
+
</member>
|
1022
|
+
<member name="T:System.Data.Services.Client.EntityStates">
|
1023
|
+
<summary>Represents the enumeration that identifies the state of an entity being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />. </summary>
|
1024
|
+
</member>
|
1025
|
+
<member name="F:System.Data.Services.Client.EntityStates.Detached">
|
1026
|
+
<summary>The entity was detached since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
|
1027
|
+
</member>
|
1028
|
+
<member name="F:System.Data.Services.Client.EntityStates.Unchanged">
|
1029
|
+
<summary>The entity is unchanged since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
|
1030
|
+
</member>
|
1031
|
+
<member name="F:System.Data.Services.Client.EntityStates.Added">
|
1032
|
+
<summary>The entity was added since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
|
1033
|
+
</member>
|
1034
|
+
<member name="F:System.Data.Services.Client.EntityStates.Deleted">
|
1035
|
+
<summary>The entity was deleted since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
|
1036
|
+
</member>
|
1037
|
+
<member name="F:System.Data.Services.Client.EntityStates.Modified">
|
1038
|
+
<summary>The entity was modified since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
|
1039
|
+
</member>
|
1040
|
+
<member name="T:System.Data.Services.Client.LinkDescriptor">
|
1041
|
+
<summary>Provides a description of modifications done to entities by operations returned in a <see cref="T:System.Data.Services.Client.DataServiceResponse" />. </summary>
|
1042
|
+
</member>
|
1043
|
+
<member name="P:System.Data.Services.Client.LinkDescriptor.Source">
|
1044
|
+
<summary>A source entity in a link returned by a <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
|
1045
|
+
<returns>
|
1046
|
+
<see cref="T:System.Object" />.</returns>
|
1047
|
+
</member>
|
1048
|
+
<member name="P:System.Data.Services.Client.LinkDescriptor.SourceProperty">
|
1049
|
+
<summary>The identifier property of the source entity in a link returned by a <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
|
1050
|
+
<returns>The string identifier of an identity property in a source entity. </returns>
|
1051
|
+
</member>
|
1052
|
+
<member name="P:System.Data.Services.Client.LinkDescriptor.Target">
|
1053
|
+
<summary>The source entity in a link returned by a <see cref="T:System.Data.Services.Client.DataServiceResponse" />. </summary>
|
1054
|
+
<returns>
|
1055
|
+
<see cref="T:System.Object" />.</returns>
|
1056
|
+
</member>
|
1057
|
+
<member name="T:System.Data.Services.Client.LinkInfo">
|
1058
|
+
<summary>Encapsulates information about a link, or relationship, between entities.</summary>
|
1059
|
+
</member>
|
1060
|
+
<member name="P:System.Data.Services.Client.LinkInfo.Name">
|
1061
|
+
<summary>The name of the link.</summary>
|
1062
|
+
<returns>The name of the link.</returns>
|
1063
|
+
</member>
|
1064
|
+
<member name="P:System.Data.Services.Client.LinkInfo.NavigationLink">
|
1065
|
+
<summary>The URI that is the navigation property representation of the link.</summary>
|
1066
|
+
<returns>The navigation link URI.</returns>
|
1067
|
+
</member>
|
1068
|
+
<member name="P:System.Data.Services.Client.LinkInfo.RelationshipLink">
|
1069
|
+
<summary>The URI that is the relationship link.</summary>
|
1070
|
+
<returns>The URI of the relationship link.</returns>
|
1071
|
+
</member>
|
1072
|
+
<member name="T:System.Data.Services.Client.MediaEntryAttribute">
|
1073
|
+
<summary>Signifies that the specified class is to be treated as a media link entry. </summary>
|
1074
|
+
</member>
|
1075
|
+
<member name="M:System.Data.Services.Client.MediaEntryAttribute.#ctor(System.String)">
|
1076
|
+
<summary>Creates a new instance of <see cref="T:System.Data.Services.Client.MediaEntryAttribute" />.</summary>
|
1077
|
+
<param name="mediaMemberName">A string value that identifies the property that holds media data.</param>
|
1078
|
+
</member>
|
1079
|
+
<member name="P:System.Data.Services.Client.MediaEntryAttribute.MediaMemberName">
|
1080
|
+
<summary>The name of the property on the class that holds the media, usually binary data.</summary>
|
1081
|
+
<returns>A string value that identifies the property that holds media data.</returns>
|
1082
|
+
</member>
|
1083
|
+
<member name="T:System.Data.Services.Client.MergeOption">
|
1084
|
+
<summary>Determines the synchronization option for sending or receiving entities to or from WCF Data Services. </summary>
|
1085
|
+
</member>
|
1086
|
+
<member name="F:System.Data.Services.Client.MergeOption.AppendOnly">
|
1087
|
+
<summary>Append new entities only. Existing entities or their original values will not be modified. No client-side changes are lost in this merge. This is the default behavior.</summary>
|
1088
|
+
</member>
|
1089
|
+
<member name="F:System.Data.Services.Client.MergeOption.OverwriteChanges">
|
1090
|
+
<summary>All current values on the client are overwritten with current values from the data service regardless of whether they have been changed on the client. </summary>
|
1091
|
+
</member>
|
1092
|
+
<member name="F:System.Data.Services.Client.MergeOption.PreserveChanges">
|
1093
|
+
<summary>Current values that have been changed on the client are not modified, but any unchanged values are updated with current values from the data service. No client-side changes are lost in this merge.</summary>
|
1094
|
+
</member>
|
1095
|
+
<member name="F:System.Data.Services.Client.MergeOption.NoTracking">
|
1096
|
+
<summary>Objects are always loaded from persisted storage. Any property changes made to objects in the object context are overwritten by the data source values.</summary>
|
1097
|
+
</member>
|
1098
|
+
<member name="T:System.Data.Services.Client.MimeTypePropertyAttribute">
|
1099
|
+
<summary>Annotates a property on a class that has been annotated with the <see cref="T:System.Data.Services.Client.MediaEntryAttribute" />. </summary>
|
1100
|
+
</member>
|
1101
|
+
<member name="M:System.Data.Services.Client.MimeTypePropertyAttribute.#ctor(System.String,System.String)">
|
1102
|
+
<summary>Creates a new instance of the MimeTypePropertyAttribute.</summary>
|
1103
|
+
<param name="dataPropertyName">A string that contains the name of the new property attribute.</param>
|
1104
|
+
<param name="mimeTypePropertyName">A string that contains the Mime type of the new property attribute.</param>
|
1105
|
+
</member>
|
1106
|
+
<member name="P:System.Data.Services.Client.MimeTypePropertyAttribute.DataPropertyName">
|
1107
|
+
<summary>Gets the name of the MimeTypePropertyAttribute.</summary>
|
1108
|
+
<returns>A string that contains the name of the property attribute. </returns>
|
1109
|
+
</member>
|
1110
|
+
<member name="P:System.Data.Services.Client.MimeTypePropertyAttribute.MimeTypePropertyName">
|
1111
|
+
<summary>Gets the Mime type of the MimeTypePropertyAttribute</summary>
|
1112
|
+
<returns>A string that contains the Mime type of the property attribute. </returns>
|
1113
|
+
</member>
|
1114
|
+
<member name="T:System.Data.Services.Client.OperationResponse">
|
1115
|
+
<summary>Abstract class that represents the response of a single query or create, update, or delete operation. </summary>
|
1116
|
+
</member>
|
1117
|
+
<member name="P:System.Data.Services.Client.OperationResponse.Error">
|
1118
|
+
<summary>Gets error thrown by the operation.</summary>
|
1119
|
+
<returns>An <see cref="T:System.Exception" /> object that contains the error.</returns>
|
1120
|
+
</member>
|
1121
|
+
<member name="P:System.Data.Services.Client.OperationResponse.Headers">
|
1122
|
+
<summary>When overridden in a derived class, contains the HTTP response headers associated with a single operation.</summary>
|
1123
|
+
<returns>
|
1124
|
+
<see cref="T:System.Collections.IDictionary" /> object that contains name value pairs of headers and values.</returns>
|
1125
|
+
</member>
|
1126
|
+
<member name="P:System.Data.Services.Client.OperationResponse.StatusCode">
|
1127
|
+
<summary>When overridden in a derived class, gets or sets the HTTP response code associated with a single operation.</summary>
|
1128
|
+
<returns>Integer value that contains response code.</returns>
|
1129
|
+
</member>
|
1130
|
+
<member name="T:System.Data.Services.Client.QueryOperationResponse">
|
1131
|
+
<summary>Represents the responses to a <see cref="T:System.Data.Services.Client.DataServiceQuery" />. </summary>
|
1132
|
+
</member>
|
1133
|
+
<member name="M:System.Data.Services.Client.QueryOperationResponse.GetContinuation">
|
1134
|
+
<summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation" /> object containing the URI that is used to retrieve the next results page.</summary>
|
1135
|
+
<returns>An object containing the URI that is used to return the next results page.</returns>
|
1136
|
+
</member>
|
1137
|
+
<member name="M:System.Data.Services.Client.QueryOperationResponse.GetContinuation``1(System.Collections.Generic.IEnumerable{``0})">
|
1138
|
+
<summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that contains the URI that is used to retrieve the next page of related entities in the specified collection.</summary>
|
1139
|
+
<returns>A continuation object that points to the next page for the collection.</returns>
|
1140
|
+
<param name="collection">The collection of related objects being loaded.</param>
|
1141
|
+
<typeparam name="T">The type of the items in the collection.</typeparam>
|
1142
|
+
</member>
|
1143
|
+
<member name="M:System.Data.Services.Client.QueryOperationResponse.GetContinuation(System.Collections.IEnumerable)">
|
1144
|
+
<summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation" /> object containing the URI that is used to retrieve the next page of related entities in the specified collection.</summary>
|
1145
|
+
<returns>A continuation object that points to the next page for the collection.</returns>
|
1146
|
+
<param name="collection">The collection of related objects being loaded.</param>
|
1147
|
+
</member>
|
1148
|
+
<member name="M:System.Data.Services.Client.QueryOperationResponse.GetEnumerator">
|
1149
|
+
<summary>Executes the <see cref="T:System.Data.Services.Client.DataServiceQuery" /> and returns <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> items. </summary>
|
1150
|
+
<returns>The enumerator to a collection of <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> items.</returns>
|
1151
|
+
</member>
|
1152
|
+
<member name="P:System.Data.Services.Client.QueryOperationResponse.Query">
|
1153
|
+
<summary>Gets the <see cref="T:System.Data.Services.Client.DataServiceQuery" /> that generates the <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> items. </summary>
|
1154
|
+
<returns>A <see cref="T:System.Data.Services.Client.DataServiceQuery" /> object.</returns>
|
1155
|
+
</member>
|
1156
|
+
<member name="P:System.Data.Services.Client.QueryOperationResponse.TotalCount">
|
1157
|
+
<summary>The server result set count value from a query, if the query has requested the value.</summary>
|
1158
|
+
<returns>The return value can be either a zero or positive value equal to the number of entities in the set on the server.</returns>
|
1159
|
+
<exception cref="T:System.InvalidOperationException">Thrown when the count tag is not found in the response stream.</exception>
|
1160
|
+
</member>
|
1161
|
+
<member name="T:System.Data.Services.Client.QueryOperationResponse`1">
|
1162
|
+
<summary>Represents the responses to a <see cref="T:System.Data.Services.Client.DataServiceQuery`1" />. </summary>
|
1163
|
+
<typeparam name="T"></typeparam>
|
1164
|
+
</member>
|
1165
|
+
<member name="M:System.Data.Services.Client.QueryOperationResponse`1.GetContinuation">
|
1166
|
+
<summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that contains the URI that is used to retrieve the next results page.</summary>
|
1167
|
+
<returns>An object that contains the URI that is used to return the next results page.</returns>
|
1168
|
+
</member>
|
1169
|
+
<member name="M:System.Data.Services.Client.QueryOperationResponse`1.GetEnumerator">
|
1170
|
+
<summary>Executes the <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> and gets <see cref="T:System.Data.Services.Client.QueryOperationResponse`1" /> items.</summary>
|
1171
|
+
<returns>An enumerator to a collection of <see cref="T:System.Data.Services.Client.QueryOperationResponse`1" /> items.</returns>
|
1172
|
+
</member>
|
1173
|
+
<member name="P:System.Data.Services.Client.QueryOperationResponse`1.TotalCount">
|
1174
|
+
<summary>The server result set count value from a query, if the query has requested the value.</summary>
|
1175
|
+
<returns>The return value can be either zero or a positive value equal to the number of entities in the set on the server.</returns>
|
1176
|
+
</member>
|
1177
|
+
<member name="T:System.Data.Services.Client.ReadingWritingEntityEventArgs">
|
1178
|
+
<summary>Gives access to the entity and an object that represents an Atom entry. <see cref="T:System.Data.Services.Client.ReadingWritingEntityEventArgs" /> is used with the <see cref="E:System.Data.Services.Client.DataServiceContext.ReadingEntity" /> and <see cref="E:System.Data.Services.Client.DataServiceContext.WritingEntity" /> events. </summary>
|
1179
|
+
</member>
|
1180
|
+
<member name="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.BaseUri">
|
1181
|
+
<summary>Gets the base URI base of the entry or feed.</summary>
|
1182
|
+
<returns>Returns <see cref="T:System.Uri" />.</returns>
|
1183
|
+
</member>
|
1184
|
+
<member name="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Data">
|
1185
|
+
<summary>Gets an entry or feed data represented as an <see cref="T:System.Xml.Linq.XElement" />.</summary>
|
1186
|
+
<returns>
|
1187
|
+
<see cref="T:System.Xml.Linq.XElement" />
|
1188
|
+
</returns>
|
1189
|
+
</member>
|
1190
|
+
<member name="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Entity">
|
1191
|
+
<summary>Gets the object representation of data returned from the <see cref="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Data" /> property. </summary>
|
1192
|
+
<returns>
|
1193
|
+
<see cref="T:System.Object" /> representation of the <see cref="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Data" /> property.</returns>
|
1194
|
+
</member>
|
1195
|
+
<member name="T:System.Data.Services.Client.SaveChangesOptions">
|
1196
|
+
<summary>Indicates change options when <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> is called. </summary>
|
1197
|
+
</member>
|
1198
|
+
<member name="F:System.Data.Services.Client.SaveChangesOptions.None">
|
1199
|
+
<summary>Pending changes are saved by using multiple requests to the server, but the operation stops on the first failure (default).</summary>
|
1200
|
+
</member>
|
1201
|
+
<member name="F:System.Data.Services.Client.SaveChangesOptions.Batch">
|
1202
|
+
<summary>All pending changes are saved in a single batch request.</summary>
|
1203
|
+
</member>
|
1204
|
+
<member name="F:System.Data.Services.Client.SaveChangesOptions.ContinueOnError">
|
1205
|
+
<summary>Pending changes are saved by using multiple requests to the server, and the operation continues after an error occurs.</summary>
|
1206
|
+
</member>
|
1207
|
+
<member name="F:System.Data.Services.Client.SaveChangesOptions.ReplaceOnUpdate">
|
1208
|
+
<summary>Pending updates are made by replacing all values of the entity in the data source with values from the updated entity. </summary>
|
1209
|
+
</member>
|
1210
|
+
<member name="F:System.Data.Services.Client.SaveChangesOptions.PatchOnUpdate">
|
1211
|
+
<summary />
|
1212
|
+
</member>
|
1213
|
+
<member name="T:System.Data.Services.Client.SendingRequestEventArgs">
|
1214
|
+
<summary>Used with the <see cref="E:System.Data.Services.Client.DataServiceContext.SendingRequest" /> event to provide access to the <see cref="T:System.Net.HttpWebRequest" /> instance that the client is about to send to the target data service. </summary>
|
1215
|
+
</member>
|
1216
|
+
<member name="P:System.Data.Services.Client.SendingRequestEventArgs.Request">
|
1217
|
+
<summary>Gets or sets the <see cref="T:System.Net.HttpWebRequest" /> instance about to be sent by the client library to the data service.</summary>
|
1218
|
+
<returns>
|
1219
|
+
<see cref="T:System.Net.HttpWebRequest" />.</returns>
|
1220
|
+
</member>
|
1221
|
+
<member name="P:System.Data.Services.Client.SendingRequestEventArgs.RequestHeaders">
|
1222
|
+
<summary>Gets the collection protocol headers that are associated with the request to the data service.</summary>
|
1223
|
+
<returns>A collection of protocol headers that are associated with the request.</returns>
|
1224
|
+
</member>
|
1225
|
+
<member name="T:System.Data.Services.Client.StreamDescriptor">
|
1226
|
+
<summary>Contains information about a named binary resource stream.</summary>
|
1227
|
+
</member>
|
1228
|
+
<member name="P:System.Data.Services.Client.StreamDescriptor.EntityDescriptor">
|
1229
|
+
<summary>The <see cref="T:System.Data.Services.Client.EntityDescriptor" /> that represents the entity to which the named resource stream belongs.</summary>
|
1230
|
+
<returns>The <see cref="T:System.Data.Services.Client.EntityDescriptor" /> of the entity.</returns>
|
1231
|
+
</member>
|
1232
|
+
<member name="P:System.Data.Services.Client.StreamDescriptor.StreamLink">
|
1233
|
+
<summary>The <see cref="T:System.Data.Services.Client.DataServiceStreamLink" /> that represents the binary resource stream.</summary>
|
1234
|
+
<returns>Returns <see cref="T:System.Data.Services.Client.DataServiceStreamLink" />.</returns>
|
1235
|
+
</member>
|
1236
|
+
<member name="T:System.Data.Services.Client.TrackingMode">
|
1237
|
+
<summary>Determines whether changes that are made to a <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> are tracked.</summary>
|
1238
|
+
</member>
|
1239
|
+
<member name="F:System.Data.Services.Client.TrackingMode.None">
|
1240
|
+
<summary>Changes made to items in the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> are not tracked automatically by the client. </summary>
|
1241
|
+
</member>
|
1242
|
+
<member name="F:System.Data.Services.Client.TrackingMode.AutoChangeTracking">
|
1243
|
+
<summary>Changes to items in the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> are automatically tracked by the client.</summary>
|
1244
|
+
</member>
|
1245
|
+
<member name="T:System.Data.Services.Common.DataServiceEntityAttribute">
|
1246
|
+
<summary>Marks a class as an entity type in WCF Data Services.</summary>
|
1247
|
+
</member>
|
1248
|
+
<member name="M:System.Data.Services.Common.DataServiceEntityAttribute.#ctor">
|
1249
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.DataServiceEntityAttribute" /> class.</summary>
|
1250
|
+
</member>
|
1251
|
+
<member name="T:System.Data.Services.Common.DataServiceKeyAttribute">
|
1252
|
+
<summary>Denotes the key property or properties of an entity. </summary>
|
1253
|
+
</member>
|
1254
|
+
<member name="M:System.Data.Services.Common.DataServiceKeyAttribute.#ctor(System.String)">
|
1255
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Common.DataServiceKeyAttribute" /> class. </summary>
|
1256
|
+
<param name="keyName">The string that contains name of the key attribute.</param>
|
1257
|
+
</member>
|
1258
|
+
<member name="M:System.Data.Services.Common.DataServiceKeyAttribute.#ctor(System.String[])">
|
1259
|
+
<summary>Initializes a new instance of the <see cref="T:System.Data.Services.Common.DataServiceKeyAttribute" /> class. </summary>
|
1260
|
+
<param name="keyNames">An array of string values that contain key attribute names.</param>
|
1261
|
+
</member>
|
1262
|
+
<member name="P:System.Data.Services.Common.DataServiceKeyAttribute.KeyNames">
|
1263
|
+
<summary>Gets the names of key attributes.</summary>
|
1264
|
+
<returns>String value that contains names of key attributes. </returns>
|
1265
|
+
</member>
|
1266
|
+
<member name="T:System.Data.Services.Common.DataServiceProtocolVersion">
|
1267
|
+
<summary>Represents the versions of the Open Data Protocol (OData) that the data service may support. </summary>
|
1268
|
+
</member>
|
1269
|
+
<member name="F:System.Data.Services.Common.DataServiceProtocolVersion.V1">
|
1270
|
+
<summary>Version 1 of the OData protocol.</summary>
|
1271
|
+
</member>
|
1272
|
+
<member name="F:System.Data.Services.Common.DataServiceProtocolVersion.V2">
|
1273
|
+
<summary>Version 2 of the OData protocol.</summary>
|
1274
|
+
</member>
|
1275
|
+
<member name="F:System.Data.Services.Common.DataServiceProtocolVersion.V3">
|
1276
|
+
<summary>Version 3 of the OData protocol.</summary>
|
1277
|
+
</member>
|
1278
|
+
<member name="T:System.Data.Services.Common.EntityPropertyMappingAttribute">
|
1279
|
+
<summary>Attribute that specifies a custom mapping between properties of an entity type and elements of an entry in a feed returned by WCF Data Services. </summary>
|
1280
|
+
</member>
|
1281
|
+
<member name="M:System.Data.Services.Common.EntityPropertyMappingAttribute.#ctor(System.String,System.Data.Services.Common.SyndicationItemProperty,System.Boolean,System.String)">
|
1282
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> that defines a conditional mapping.</summary>
|
1283
|
+
<param name="sourcePath">The name of the property, as string, of the entity type that is mapped to the specified property of the feed item.</param>
|
1284
|
+
<param name="targetSyndicationItem">A <see cref="T:System.Data.Services.Common.SyndicationItemProperty" /> value that represents the element in the feed to which to map the property. This value must be set to None if the <see cref="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetPath" /> is not null.</param>
|
1285
|
+
<param name="keepInContent">Boolean value that is true when the property being mapped must appear both in its mapped-to location and in the content section of the feed.</param>
|
1286
|
+
<param name="criteriaValue">The criteria value that is used to define a conditional mapping.</param>
|
1287
|
+
</member>
|
1288
|
+
<member name="M:System.Data.Services.Common.EntityPropertyMappingAttribute.#ctor(System.String,System.Data.Services.Common.SyndicationItemProperty,System.Data.Services.Common.SyndicationTextContentKind,System.Boolean)">
|
1289
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" />.</summary>
|
1290
|
+
<param name="sourcePath">The name of the property, as string, of the entity type that is mapped to the specified property of the feed item.</param>
|
1291
|
+
<param name="targetSyndicationItem">A <see cref="T:System.Data.Services.Common.SyndicationItemProperty" /> value that represents the element in the feed to which to map the property. This value must be set to None if the <see cref="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetPath" /> is not null.</param>
|
1292
|
+
<param name="targetTextContentKind">A <see cref="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetTextContentKind" /> value that identifies the format of the content to display in the feed.</param>
|
1293
|
+
<param name="keepInContent">Boolean value that is true when the property being mapped must appear both in its mapped-to location and in the content section of the feed. </param>
|
1294
|
+
</member>
|
1295
|
+
<member name="M:System.Data.Services.Common.EntityPropertyMappingAttribute.#ctor(System.String,System.String,System.String,System.String,System.Boolean)">
|
1296
|
+
<summary>Creates an instance of the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> to map a property to a custom feed element.</summary>
|
1297
|
+
<param name="sourcePath">The name of the property of the entity type, as string, that is mapped to the specified property in the feed.</param>
|
1298
|
+
<param name="targetPath">The name of the target, as string, in the resulting feed to which the property is mapped.</param>
|
1299
|
+
<param name="targetNamespacePrefix">This parameter, together with <paramref name="targetNamespaceUri" />, specifies the namespace in which the <paramref name="targetPath " />element exists.</param>
|
1300
|
+
<param name="targetNamespaceUri">Specifies the namespace URI of the element, as string, specified by the <paramref name="targetName" /> property. </param>
|
1301
|
+
<param name="keepInContent">Boolean value that is true when the property being mapped must appear both in its mapped-to location and in the content section of the feed. </param>
|
1302
|
+
</member>
|
1303
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.CriteriaValue">
|
1304
|
+
<summary>Gets or sets the criteria value that is used to define a conditional mapping.</summary>
|
1305
|
+
<returns>The value that is used to define the mapping condition.</returns>
|
1306
|
+
</member>
|
1307
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.KeepInContent">
|
1308
|
+
<summary>Gets a Boolean value that indicates whether a property value should be repeated both in the content section of the feed and in the mapped location.</summary>
|
1309
|
+
<returns>A <see cref="T:System.Boolean" /> value that is true when the property is mapped into both locations in the feed; otherwise, false.</returns>
|
1310
|
+
</member>
|
1311
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.SourcePath">
|
1312
|
+
<summary>Gets the name of the property of the syndication item that will be mapped to the specified element of the feed.</summary>
|
1313
|
+
<returns>String value that contains property name.</returns>
|
1314
|
+
</member>
|
1315
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetNamespacePrefix">
|
1316
|
+
<summary>Gets a string value that, together with <see cref="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetNamespaceUri" />, specifies the namespace in which the <see cref="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetPath" />element exists.</summary>
|
1317
|
+
<returns>String value that contains the target namespace prefix.</returns>
|
1318
|
+
</member>
|
1319
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetNamespaceUri">
|
1320
|
+
<summary>Gets a string value that specifies the namespace URI of the element specified by the <see cref="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetPath" /> property.</summary>
|
1321
|
+
<returns>String that contains the namespace URI.</returns>
|
1322
|
+
</member>
|
1323
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetPath">
|
1324
|
+
<summary>Gets the name of the custom target in the feed to which the property is mapped.</summary>
|
1325
|
+
<returns>String value with target XML element or attribute.</returns>
|
1326
|
+
</member>
|
1327
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetSyndicationItem">
|
1328
|
+
<summary>Gets the syndication item in the entry targeted by the mapping.</summary>
|
1329
|
+
<returns>A <see cref="T:System.Data.Services.Common.SyndicationItemProperty" /> value that is the target of the mapping.</returns>
|
1330
|
+
</member>
|
1331
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetTextContentKind">
|
1332
|
+
<summary>Gets the type of content of the property mapped by <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" />.</summary>
|
1333
|
+
<returns>A string that identifies the type of content in the feed element.</returns>
|
1334
|
+
</member>
|
1335
|
+
<member name="T:System.Data.Services.Common.EntitySetAttribute">
|
1336
|
+
<summary>Indicates the entity set to which a client data service class belongs.</summary>
|
1337
|
+
</member>
|
1338
|
+
<member name="M:System.Data.Services.Common.EntitySetAttribute.#ctor(System.String)">
|
1339
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.EntitySetAttribute" />.</summary>
|
1340
|
+
<param name="entitySet">The entity set to which the class belongs.</param>
|
1341
|
+
</member>
|
1342
|
+
<member name="P:System.Data.Services.Common.EntitySetAttribute.EntitySet">
|
1343
|
+
<summary>Gets the entity set to which the class belongs.</summary>
|
1344
|
+
<returns>The entity set as string value. </returns>
|
1345
|
+
</member>
|
1346
|
+
<member name="T:System.Data.Services.Common.HasStreamAttribute">
|
1347
|
+
<summary>Indicates that a class that is an entity type has a default binary data stream. </summary>
|
1348
|
+
</member>
|
1349
|
+
<member name="M:System.Data.Services.Common.HasStreamAttribute.#ctor">
|
1350
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.HasStreamAttribute" /> class.</summary>
|
1351
|
+
</member>
|
1352
|
+
<member name="T:System.Data.Services.Common.NamedStreamAttribute">
|
1353
|
+
<summary>Indicates that a class that is an entity type has a related named binary stream.</summary>
|
1354
|
+
</member>
|
1355
|
+
<member name="M:System.Data.Services.Common.NamedStreamAttribute.#ctor(System.String)">
|
1356
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.NamedStreamAttribute" /> class.</summary>
|
1357
|
+
<param name="name">The name of a binary stream that belongs to the attributed entity.</param>
|
1358
|
+
</member>
|
1359
|
+
<member name="P:System.Data.Services.Common.NamedStreamAttribute.Name">
|
1360
|
+
<summary>The name of a binary stream that belongs to the attributed entity.</summary>
|
1361
|
+
<returns>The name of the binary stream.</returns>
|
1362
|
+
</member>
|
1363
|
+
<member name="T:System.Data.Services.Common.SyndicationItemProperty">
|
1364
|
+
<summary>Enumeration type that is used to identify the syndication item element or attribute in the Open Data Protocol (OData) feed to which an entity property is mapped.</summary>
|
1365
|
+
</member>
|
1366
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CustomProperty">
|
1367
|
+
<summary>A custom property element.</summary>
|
1368
|
+
</member>
|
1369
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.AuthorEmail">
|
1370
|
+
<summary>The atom:email child element of the atom:author element.</summary>
|
1371
|
+
</member>
|
1372
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.AuthorName">
|
1373
|
+
<summary>The atom:name child element of the atom:author element.</summary>
|
1374
|
+
</member>
|
1375
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.AuthorUri">
|
1376
|
+
<summary>The atom:uri child element of the atom:author element.</summary>
|
1377
|
+
</member>
|
1378
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.ContributorEmail">
|
1379
|
+
<summary>The atom:email child element of the atom:contributor element.</summary>
|
1380
|
+
</member>
|
1381
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.ContributorName">
|
1382
|
+
<summary>The atom:name child element of the atom:contributor element.</summary>
|
1383
|
+
</member>
|
1384
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.ContributorUri">
|
1385
|
+
<summary>The atom:uri child element of the atom:contributor element.</summary>
|
1386
|
+
</member>
|
1387
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Updated">
|
1388
|
+
<summary>The atom:updated element.</summary>
|
1389
|
+
</member>
|
1390
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Published">
|
1391
|
+
<summary>The atom:published element.</summary>
|
1392
|
+
</member>
|
1393
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Rights">
|
1394
|
+
<summary>The atom:rights element.</summary>
|
1395
|
+
</member>
|
1396
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Summary">
|
1397
|
+
<summary>The atom:summary element.</summary>
|
1398
|
+
</member>
|
1399
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Title">
|
1400
|
+
<summary>The atom:title element.</summary>
|
1401
|
+
</member>
|
1402
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CategoryLabel">
|
1403
|
+
<summary>The label attribute of the atom:category element.</summary>
|
1404
|
+
</member>
|
1405
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CategoryScheme">
|
1406
|
+
<summary>The scheme attribute of the atom:category element.</summary>
|
1407
|
+
</member>
|
1408
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CategoryTerm">
|
1409
|
+
<summary>The term attribute of the atom:category element.</summary>
|
1410
|
+
</member>
|
1411
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkHref">
|
1412
|
+
<summary>The href attribute of the atom:link element. </summary>
|
1413
|
+
</member>
|
1414
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkHrefLang">
|
1415
|
+
<summary>The hreflang attribute of the atom:link element.</summary>
|
1416
|
+
</member>
|
1417
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkLength">
|
1418
|
+
<summary>The length attribute of the atom:link element.</summary>
|
1419
|
+
</member>
|
1420
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkRel">
|
1421
|
+
<summary>The rel attribute of the atom:link element.</summary>
|
1422
|
+
</member>
|
1423
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkTitle">
|
1424
|
+
<summary>The title attribute of the atom:link element.</summary>
|
1425
|
+
</member>
|
1426
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkType">
|
1427
|
+
<summary>The type attribute of the atom:link element.</summary>
|
1428
|
+
</member>
|
1429
|
+
<member name="T:System.Data.Services.Common.SyndicationTextContentKind">
|
1430
|
+
<summary>Enumeration used to identify text content of syndication item. </summary>
|
1431
|
+
</member>
|
1432
|
+
<member name="F:System.Data.Services.Common.SyndicationTextContentKind.Plaintext">
|
1433
|
+
<summary>Plain text content.</summary>
|
1434
|
+
</member>
|
1435
|
+
<member name="F:System.Data.Services.Common.SyndicationTextContentKind.Html">
|
1436
|
+
<summary>HTML content.</summary>
|
1437
|
+
</member>
|
1438
|
+
<member name="F:System.Data.Services.Common.SyndicationTextContentKind.Xhtml">
|
1439
|
+
<summary>XHTML content.</summary>
|
1440
|
+
</member>
|
1441
|
+
</members>
|
1442
|
+
</doc>
|