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
data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.dll
ADDED
Binary file
|
data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.xml
ADDED
@@ -0,0 +1,1969 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>Microsoft.Data.OData</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:Microsoft.Data.OData.HttpMethod">
|
8
|
+
<summary>Enumeration representing the Http methods supported in batches. This is a subset of all HTTP methods specified in HTTP RFC 2616 Section 5.1.1.</summary>
|
9
|
+
</member>
|
10
|
+
<member name="F:Microsoft.Data.OData.HttpMethod.Get">
|
11
|
+
<summary>Http 'Get' method.</summary>
|
12
|
+
</member>
|
13
|
+
<member name="F:Microsoft.Data.OData.HttpMethod.Post">
|
14
|
+
<summary>Http 'Post' method.</summary>
|
15
|
+
</member>
|
16
|
+
<member name="F:Microsoft.Data.OData.HttpMethod.Put">
|
17
|
+
<summary>Http 'Put' method.</summary>
|
18
|
+
</member>
|
19
|
+
<member name="F:Microsoft.Data.OData.HttpMethod.Delete">
|
20
|
+
<summary>Http 'Delete' method.</summary>
|
21
|
+
</member>
|
22
|
+
<member name="F:Microsoft.Data.OData.HttpMethod.Patch">
|
23
|
+
<summary>Http 'Patch' method.</summary>
|
24
|
+
</member>
|
25
|
+
<member name="F:Microsoft.Data.OData.HttpMethod.Merge">
|
26
|
+
<summary>Custom Http 'Merge' method.</summary>
|
27
|
+
</member>
|
28
|
+
<member name="T:Microsoft.Data.OData.IODataRequestMessage">
|
29
|
+
<summary>Represents an interface for synchronous OData request messages.</summary>
|
30
|
+
</member>
|
31
|
+
<member name="M:Microsoft.Data.OData.IODataRequestMessage.GetHeader(System.String)">
|
32
|
+
<summary>Returns a value of an HTTP header.</summary>
|
33
|
+
<returns>The value of the HTTP header, or null if no such header was present on the message.</returns>
|
34
|
+
<param name="headerName">The name of the header to get.</param>
|
35
|
+
</member>
|
36
|
+
<member name="M:Microsoft.Data.OData.IODataRequestMessage.GetStream">
|
37
|
+
<summary>Gets the stream backing for this message.</summary>
|
38
|
+
<returns>The stream backing for this message.</returns>
|
39
|
+
</member>
|
40
|
+
<member name="P:Microsoft.Data.OData.IODataRequestMessage.Headers">
|
41
|
+
<summary>Gets an enumerable over all the headers for this message.</summary>
|
42
|
+
<returns>An enumerable over all the headers for this message.</returns>
|
43
|
+
</member>
|
44
|
+
<member name="P:Microsoft.Data.OData.IODataRequestMessage.Method">
|
45
|
+
<summary>Gets or sets the HTTP method used for this request message.</summary>
|
46
|
+
<returns>The HTTP method used for this request message.</returns>
|
47
|
+
</member>
|
48
|
+
<member name="M:Microsoft.Data.OData.IODataRequestMessage.SetHeader(System.String,System.String)">
|
49
|
+
<summary>Sets the value of an HTTP header.</summary>
|
50
|
+
<param name="headerName">The name of the header to set.</param>
|
51
|
+
<param name="headerValue">The value of the HTTP header or 'null' if the header should be removed.</param>
|
52
|
+
</member>
|
53
|
+
<member name="P:Microsoft.Data.OData.IODataRequestMessage.Url">
|
54
|
+
<summary>Gets or sets the request URL for this request message.</summary>
|
55
|
+
<returns>The request URL for this request message.</returns>
|
56
|
+
</member>
|
57
|
+
<member name="T:Microsoft.Data.OData.IODataRequestMessageAsync">
|
58
|
+
<summary>Represents an interface for asynchronous OData request messages.</summary>
|
59
|
+
</member>
|
60
|
+
<member name="M:Microsoft.Data.OData.IODataRequestMessageAsync.GetStreamAsync">
|
61
|
+
<summary>Asynchronously get the stream backing for this message.</summary>
|
62
|
+
<returns>The stream for this message.</returns>
|
63
|
+
</member>
|
64
|
+
<member name="T:Microsoft.Data.OData.IODataResponseMessage">
|
65
|
+
<summary>Represents an interface for synchronous OData response messages.</summary>
|
66
|
+
</member>
|
67
|
+
<member name="M:Microsoft.Data.OData.IODataResponseMessage.GetHeader(System.String)">
|
68
|
+
<summary>Returns a value of an HTTP header.</summary>
|
69
|
+
<returns>The value of the HTTP header, or null if no such header was present on the message.</returns>
|
70
|
+
<param name="headerName">The name of the header to get.</param>
|
71
|
+
</member>
|
72
|
+
<member name="M:Microsoft.Data.OData.IODataResponseMessage.GetStream">
|
73
|
+
<summary>Gets the stream backing for this message.</summary>
|
74
|
+
<returns>The stream backing for this message.</returns>
|
75
|
+
</member>
|
76
|
+
<member name="P:Microsoft.Data.OData.IODataResponseMessage.Headers">
|
77
|
+
<summary>Gets an enumerable over all the headers for this message.</summary>
|
78
|
+
<returns>An enumerable over all the headers for this message.</returns>
|
79
|
+
</member>
|
80
|
+
<member name="M:Microsoft.Data.OData.IODataResponseMessage.SetHeader(System.String,System.String)">
|
81
|
+
<summary>Sets the value of an HTTP header.</summary>
|
82
|
+
<param name="headerName">The name of the header to set.</param>
|
83
|
+
<param name="headerValue">The value of the HTTP header or 'null' if the header should be removed.</param>
|
84
|
+
</member>
|
85
|
+
<member name="P:Microsoft.Data.OData.IODataResponseMessage.StatusCode">
|
86
|
+
<summary>Gets or sets the result status code of the response message.</summary>
|
87
|
+
<returns>The result status code of the response message.</returns>
|
88
|
+
</member>
|
89
|
+
<member name="T:Microsoft.Data.OData.IODataResponseMessageAsync">
|
90
|
+
<summary>Represents an interface for asynchronous OData response messages.</summary>
|
91
|
+
</member>
|
92
|
+
<member name="M:Microsoft.Data.OData.IODataResponseMessageAsync.GetStreamAsync">
|
93
|
+
<summary>Asynchronously get the stream backing for this message.</summary>
|
94
|
+
<returns>The stream backing for this message.</returns>
|
95
|
+
</member>
|
96
|
+
<member name="T:Microsoft.Data.OData.IODataUrlResolver">
|
97
|
+
<summary> Interface that supports custom resolution of URLs found in the payload. </summary>
|
98
|
+
</member>
|
99
|
+
<member name="M:Microsoft.Data.OData.IODataUrlResolver.ResolveUrl(System.Uri,System.Uri)">
|
100
|
+
<summary> Method to implement a custom URL resolution scheme. This method returns null if no custom resolution is desired. If the method returns a non-null URL that value will be used without further validation. </summary>
|
101
|
+
<returns> A <see cref="T:System.Uri" /> instance that reflects the custom resolution of the method arguments into a URL or null if no custom resolution is desired; in that case the default resolution is used. </returns>
|
102
|
+
<param name="baseUri">The (optional) base URI to use for the resolution.</param>
|
103
|
+
<param name="payloadUri">The URI read from the payload.</param>
|
104
|
+
</member>
|
105
|
+
<member name="T:Microsoft.Data.OData.ODataAction">
|
106
|
+
<summary> Represents an action. </summary>
|
107
|
+
</member>
|
108
|
+
<member name="M:Microsoft.Data.OData.ODataAction.#ctor">
|
109
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataAction" /> class.</summary>
|
110
|
+
</member>
|
111
|
+
<member name="T:Microsoft.Data.OData.ODataAnnotatable">
|
112
|
+
<summary>Represents the base class for all annotatable types in OData library.</summary>
|
113
|
+
</member>
|
114
|
+
<member name="M:Microsoft.Data.OData.ODataAnnotatable.#ctor">
|
115
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataAnnotatable" /> class.</summary>
|
116
|
+
</member>
|
117
|
+
<member name="M:Microsoft.Data.OData.ODataAnnotatable.GetAnnotation``1">
|
118
|
+
<summary>Gets or sets the annotation by type.</summary>
|
119
|
+
<returns>The annotation of type T or null if not present.</returns>
|
120
|
+
<typeparam name="T">The type of the annotation.</typeparam>
|
121
|
+
</member>
|
122
|
+
<member name="M:Microsoft.Data.OData.ODataAnnotatable.SetAnnotation``1(``0)">
|
123
|
+
<summary>Sets an annotation of type T.</summary>
|
124
|
+
<param name="annotation">The annotation to set.</param>
|
125
|
+
<typeparam name="T">The type of the annotation.</typeparam>
|
126
|
+
</member>
|
127
|
+
<member name="T:Microsoft.Data.OData.ODataAssociationLink">
|
128
|
+
<summary>Represents an association link.</summary>
|
129
|
+
</member>
|
130
|
+
<member name="M:Microsoft.Data.OData.ODataAssociationLink.#ctor">
|
131
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataAssociationLink" /> class.</summary>
|
132
|
+
</member>
|
133
|
+
<member name="P:Microsoft.Data.OData.ODataAssociationLink.Name">
|
134
|
+
<summary>Gets or sets the name of the association link.</summary>
|
135
|
+
<returns>The name of the associate link.</returns>
|
136
|
+
</member>
|
137
|
+
<member name="P:Microsoft.Data.OData.ODataAssociationLink.Url">
|
138
|
+
<summary>Gets or sets the URI representing the Unified Resource Locator (URL) of the link.</summary>
|
139
|
+
<returns>The URI representing the Unified Resource Locator (URL) of the link.</returns>
|
140
|
+
</member>
|
141
|
+
<member name="T:Microsoft.Data.OData.ODataBatchOperationRequestMessage">
|
142
|
+
<summary>Displays a message representing an operation in a batch request.</summary>
|
143
|
+
</member>
|
144
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationRequestMessage.GetHeader(System.String)">
|
145
|
+
<summary>Returns a value of an HTTP header of this operation.</summary>
|
146
|
+
<returns>The value of the HTTP header, or null if no such header was present on the message.</returns>
|
147
|
+
<param name="headerName">The name of the header to get.</param>
|
148
|
+
</member>
|
149
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationRequestMessage.GetStream">
|
150
|
+
<summary>Gets the stream backing for this message.</summary>
|
151
|
+
<returns>The stream backing for this message.</returns>
|
152
|
+
</member>
|
153
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationRequestMessage.GetStreamAsync">
|
154
|
+
<summary>Asynchronously get the stream backing for this message.</summary>
|
155
|
+
<returns>The stream backing for this message.</returns>
|
156
|
+
</member>
|
157
|
+
<member name="P:Microsoft.Data.OData.ODataBatchOperationRequestMessage.Headers">
|
158
|
+
<summary>Gets an enumerable over all the headers for this message.</summary>
|
159
|
+
<returns>An enumerable over all the headers for this message.</returns>
|
160
|
+
</member>
|
161
|
+
<member name="P:Microsoft.Data.OData.ODataBatchOperationRequestMessage.Method">
|
162
|
+
<summary>Gets the HTTP method used for this request message.</summary>
|
163
|
+
<returns>The HTTP method used for this request message.</returns>
|
164
|
+
</member>
|
165
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationRequestMessage.Microsoft#Data#OData#IODataUrlResolver#ResolveUrl(System.Uri,System.Uri)"></member>
|
166
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationRequestMessage.SetHeader(System.String,System.String)">
|
167
|
+
<summary>Sets the value of an HTTP header of this operation.</summary>
|
168
|
+
<param name="headerName">The name of the header to set.</param>
|
169
|
+
<param name="headerValue">The value of the HTTP header or 'null' if the header should be removed.</param>
|
170
|
+
</member>
|
171
|
+
<member name="P:Microsoft.Data.OData.ODataBatchOperationRequestMessage.Url">
|
172
|
+
<summary>Gets or sets the request URL for this request message.</summary>
|
173
|
+
<returns>The request URL for this request message.</returns>
|
174
|
+
</member>
|
175
|
+
<member name="T:Microsoft.Data.OData.ODataBatchOperationResponseMessage">
|
176
|
+
<summary>Displays a message representing an operation in a batch response.</summary>
|
177
|
+
</member>
|
178
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationResponseMessage.GetHeader(System.String)">
|
179
|
+
<summary>Returns a value of an HTTP header of this operation.</summary>
|
180
|
+
<returns>The value of the HTTP header, or null if no such header was present on the message.</returns>
|
181
|
+
<param name="headerName">The name of the header to get.</param>
|
182
|
+
</member>
|
183
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationResponseMessage.GetStream">
|
184
|
+
<summary>Gets the stream backing for this message.</summary>
|
185
|
+
<returns>The stream backing for this message.</returns>
|
186
|
+
</member>
|
187
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationResponseMessage.GetStreamAsync">
|
188
|
+
<summary>Asynchronously get the stream backing for this message.</summary>
|
189
|
+
<returns>The stream backing for this message.</returns>
|
190
|
+
</member>
|
191
|
+
<member name="P:Microsoft.Data.OData.ODataBatchOperationResponseMessage.Headers">
|
192
|
+
<summary>Gets an enumerable over all the headers for this message.</summary>
|
193
|
+
<returns>An enumerable over all the headers for this message.</returns>
|
194
|
+
</member>
|
195
|
+
<member name="M:Microsoft.Data.OData.ODataBatchOperationResponseMessage.SetHeader(System.String,System.String)">
|
196
|
+
<summary>Sets the value of an HTTP header of this operation.</summary>
|
197
|
+
<param name="headerName">The name of the header to set.</param>
|
198
|
+
<param name="headerValue">The value of the HTTP header or 'null' if the header should be removed.</param>
|
199
|
+
</member>
|
200
|
+
<member name="P:Microsoft.Data.OData.ODataBatchOperationResponseMessage.StatusCode">
|
201
|
+
<summary>Gets or sets the result status code of the response message.</summary>
|
202
|
+
<returns>The result status code of the response message.</returns>
|
203
|
+
</member>
|
204
|
+
<member name="T:Microsoft.Data.OData.ODataBatchReader">
|
205
|
+
<summary>Represents a class for reading OData batch messages; also verifies the proper sequence of read calls on the reader.</summary>
|
206
|
+
</member>
|
207
|
+
<member name="T:Microsoft.Data.OData.ODataBatchWriter">
|
208
|
+
<summary>Writes OData batch messages; also verifies the proper sequence of write calls on the writer.</summary>
|
209
|
+
</member>
|
210
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.CreateOperationRequestMessage(Microsoft.Data.OData.HttpMethod,System.Uri)">
|
211
|
+
<summary>Creates a message for writing an operation of a batch request.</summary>
|
212
|
+
<returns>The message that can be used to write the request operation.</returns>
|
213
|
+
<param name="method">The Http method to be used for this request operation.</param>
|
214
|
+
<param name="uri">The URI to be used for this request operation.</param>
|
215
|
+
</member>
|
216
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.CreateOperationRequestMessageAsync(System.Void,Microsoft.Data.OData.ODataBatchOperationRequestMessage)"></member>
|
217
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.CreateOperationResponseMessage">
|
218
|
+
<summary>Creates a message for writing an operation of a batch response.</summary>
|
219
|
+
<returns>The message that can be used to write the response operation.</returns>
|
220
|
+
</member>
|
221
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.CreateOperationResponseMessageAsync">
|
222
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataBatchOperationResponseMessage" /> for writing an operation of a batch response. </summary>
|
223
|
+
<returns>A task that when completed returns the newly created operation response message.</returns>
|
224
|
+
</member>
|
225
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.Flush">
|
226
|
+
<summary>Flushes the write buffer to the underlying stream.</summary>
|
227
|
+
</member>
|
228
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.FlushAsync">
|
229
|
+
<summary>Flushes the write buffer to the underlying stream asynchronously.</summary>
|
230
|
+
<returns>A task instance that represents the asynchronous operation.</returns>
|
231
|
+
</member>
|
232
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteEndBatch">
|
233
|
+
<summary>Ends a batch; can only be called after WriteStartBatch has been called and if no other active changeset or operation exist.</summary>
|
234
|
+
</member>
|
235
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteEndBatchAsync">
|
236
|
+
<summary> Asynchronously ends a batch; can only be called after WriteStartBatch has been called and if no other active changeset or operation exist. </summary>
|
237
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
238
|
+
</member>
|
239
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteEndChangeset">
|
240
|
+
<summary>Ends an active changeset; this can only be called after WriteStartChangeset and only once for each changeset.</summary>
|
241
|
+
</member>
|
242
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteEndChangesetAsync">
|
243
|
+
<summary> Asynchronously ends an active changeset; this can only be called after WriteStartChangeset and only once for each changeset. </summary>
|
244
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
245
|
+
</member>
|
246
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteStartBatch">
|
247
|
+
<summary>Starts a new batch; can be only called once and as first call.</summary>
|
248
|
+
</member>
|
249
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteStartBatchAsync">
|
250
|
+
<summary> Asynchronously starts a new batch; can be only called once and as first call. </summary>
|
251
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
252
|
+
</member>
|
253
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteStartChangeset">
|
254
|
+
<summary>Starts a new changeset; can only be called after WriteStartBatch and if no other active operation or changeset exists.</summary>
|
255
|
+
</member>
|
256
|
+
<member name="M:Microsoft.Data.OData.ODataBatchWriter.WriteStartChangesetAsync">
|
257
|
+
<summary> Asynchronously starts a new changeset; can only be called after WriteStartBatch and if no other active operation or changeset exists. </summary>
|
258
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
259
|
+
</member>
|
260
|
+
<member name="T:Microsoft.Data.OData.ODataCollectionReader">
|
261
|
+
<summary>Represents the base class for OData collection readers.</summary>
|
262
|
+
</member>
|
263
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionReader.#ctor">
|
264
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataCollectionReader" /> class.</summary>
|
265
|
+
</member>
|
266
|
+
<member name="P:Microsoft.Data.OData.ODataCollectionReader.Item">
|
267
|
+
<summary>Gets the most recent item that has been read.</summary>
|
268
|
+
<returns>The most recent item that has been read.</returns>
|
269
|
+
</member>
|
270
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionReader.Read">
|
271
|
+
<summary>Reads the next item from the message payload. </summary>
|
272
|
+
<returns>True if more items were read; otherwise false.</returns>
|
273
|
+
</member>
|
274
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionReader.ReadAsync">
|
275
|
+
<summary>Asynchronously reads the next item from the message payload.</summary>
|
276
|
+
<returns>A task that when completed indicates whether more items were read.</returns>
|
277
|
+
</member>
|
278
|
+
<member name="P:Microsoft.Data.OData.ODataCollectionReader.State">
|
279
|
+
<summary>Gets or sets the current state of the reader.</summary>
|
280
|
+
<returns>The current state of the reader.</returns>
|
281
|
+
</member>
|
282
|
+
<member name="T:Microsoft.Data.OData.ODataCollectionReaderState">
|
283
|
+
<summary>Enumerates all the possible states of <see cref="T:Microsoft.Data.OData.ODataCollectionReader" />.</summary>
|
284
|
+
</member>
|
285
|
+
<member name="F:Microsoft.Data.OData.ODataCollectionReaderState.Start">
|
286
|
+
<summary>The reader is at the start; nothing has been read yet.</summary>
|
287
|
+
</member>
|
288
|
+
<member name="F:Microsoft.Data.OData.ODataCollectionReaderState.CollectionStart">
|
289
|
+
<summary>The reader has started reading and is reading the start element of the collection wrapper.</summary>
|
290
|
+
</member>
|
291
|
+
<member name="F:Microsoft.Data.OData.ODataCollectionReaderState.Value">
|
292
|
+
<summary>The reader read an item from the collection.</summary>
|
293
|
+
</member>
|
294
|
+
<member name="F:Microsoft.Data.OData.ODataCollectionReaderState.CollectionEnd">
|
295
|
+
<summary>The reader has finished reading and is reading the end element of the collection wrapper.</summary>
|
296
|
+
</member>
|
297
|
+
<member name="F:Microsoft.Data.OData.ODataCollectionReaderState.Exception">
|
298
|
+
<summary>The reader has thrown an exception; nothing can be read from the reader anymore.</summary>
|
299
|
+
</member>
|
300
|
+
<member name="F:Microsoft.Data.OData.ODataCollectionReaderState.Completed">
|
301
|
+
<summary>The reader has completed; nothing can be read anymore.</summary>
|
302
|
+
</member>
|
303
|
+
<member name="T:Microsoft.Data.OData.ODataCollectionResult">
|
304
|
+
<summary>Represents the Open Data collection result.</summary>
|
305
|
+
</member>
|
306
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionResult.#ctor">
|
307
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataCollectionResult" /> class.</summary>
|
308
|
+
</member>
|
309
|
+
<member name="P:Microsoft.Data.OData.ODataCollectionResult.Name">
|
310
|
+
<summary>Gets or sets the name of the collection (Atom only).</summary>
|
311
|
+
<returns>The name of the collection.</returns>
|
312
|
+
</member>
|
313
|
+
<member name="T:Microsoft.Data.OData.ODataCollectionWriter">
|
314
|
+
<summary>Represents the base class for OData collection writers.</summary>
|
315
|
+
</member>
|
316
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.#ctor">
|
317
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataCollectionWriter" /> class.</summary>
|
318
|
+
</member>
|
319
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.DisposeWriterImplementation">
|
320
|
+
<summary>Implements the disposal of unmanaged resources.</summary>
|
321
|
+
</member>
|
322
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.Flush">
|
323
|
+
<summary>Flushes the write buffer to the underlying stream.</summary>
|
324
|
+
</member>
|
325
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.FlushAsync">
|
326
|
+
<summary>Flushes the write buffer to the underlying stream asynchronously.</summary>
|
327
|
+
<returns>A task instance that represents the asynchronous operation.</returns>
|
328
|
+
</member>
|
329
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteEnd">
|
330
|
+
<summary>Finishes writing a collection.</summary>
|
331
|
+
</member>
|
332
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteEndAsync">
|
333
|
+
<summary> Asynchronously finish writing a collection. </summary>
|
334
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
335
|
+
</member>
|
336
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteErrorImplementation(Microsoft.Data.OData.ODataError,System.Boolean)">
|
337
|
+
<summary>Writes an OData error.</summary>
|
338
|
+
<param name="errorInstance">The error information to write.</param>
|
339
|
+
<param name="includeDebugInformation">If in debug mode error details will be included (if present).</param>
|
340
|
+
</member>
|
341
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteItem(System.Object)">
|
342
|
+
<summary>Starts writing an entry.</summary>
|
343
|
+
<param name="item">The collection item to write.</param>
|
344
|
+
</member>
|
345
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteItemAsync(System.Object)">
|
346
|
+
<summary> Asynchronously start writing a collection item. </summary>
|
347
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
348
|
+
<param name="item">The collection item to write.</param>
|
349
|
+
</member>
|
350
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteStart(Microsoft.Data.OData.ODataCollectionResult)">
|
351
|
+
<summary>Start writing a collection.</summary>
|
352
|
+
<param name="collection">The <see cref="T:Microsoft.Data.OData.ODataCollectionResult" /> representing the collection.</param>
|
353
|
+
</member>
|
354
|
+
<member name="M:Microsoft.Data.OData.ODataCollectionWriter.WriteStartAsync(Microsoft.Data.OData.ODataCollectionResult)">
|
355
|
+
<summary> Asynchronously start writing a collection. </summary>
|
356
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
357
|
+
<param name="collection">The <see cref="T:Microsoft.Data.OData.ODataCollectionResult" /> representing the collection.</param>
|
358
|
+
</member>
|
359
|
+
<member name="T:Microsoft.Data.OData.ODataComplexValue">
|
360
|
+
<summary>Represents the OData complex value.</summary>
|
361
|
+
</member>
|
362
|
+
<member name="M:Microsoft.Data.OData.ODataComplexValue.#ctor">
|
363
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataComplexValue" /> class.</summary>
|
364
|
+
</member>
|
365
|
+
<member name="P:Microsoft.Data.OData.ODataComplexValue.Properties">
|
366
|
+
<summary>Gets or sets the properties and values of the complex value.</summary>
|
367
|
+
<returns>The properties and values of the complex value.</returns>
|
368
|
+
</member>
|
369
|
+
<member name="P:Microsoft.Data.OData.ODataComplexValue.TypeName">
|
370
|
+
<summary>Gets or sets the type of the complex value.</summary>
|
371
|
+
<returns>The type of the complex value.</returns>
|
372
|
+
</member>
|
373
|
+
<member name="T:Microsoft.Data.OData.ODataContentTypeException">
|
374
|
+
<summary> Exception type representing exception when Content-Type of a message is not supported.. </summary>
|
375
|
+
</member>
|
376
|
+
<member name="M:Microsoft.Data.OData.ODataContentTypeException.#ctor">
|
377
|
+
<summary> Initializes a new instance of the ODataContentTypeException class. </summary>
|
378
|
+
</member>
|
379
|
+
<member name="M:Microsoft.Data.OData.ODataContentTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
380
|
+
<summary> Initializes a new instance of the ODataContentTypeException class from the specified SerializationInfo and StreamingContext instances. </summary>
|
381
|
+
<param name="info"> A SerializationInfo containing the information required to serialize the new ODataException. </param>
|
382
|
+
<param name="context"> A StreamingContext containing the source of the serialized stream associated with the new ODataException. </param>
|
383
|
+
</member>
|
384
|
+
<member name="M:Microsoft.Data.OData.ODataContentTypeException.#ctor(System.String)">
|
385
|
+
<summary> Initializes a new instance of the ODataContentTypeException class. </summary>
|
386
|
+
<param name="message">Plain text error message for this exception.</param>
|
387
|
+
</member>
|
388
|
+
<member name="M:Microsoft.Data.OData.ODataContentTypeException.#ctor(System.String,System.Exception)">
|
389
|
+
<summary> Initializes a new instance of the ODataContentTypeException class. </summary>
|
390
|
+
<param name="message">Plain text error message for this exception.</param>
|
391
|
+
<param name="innerException">Exception that caused this exception to be thrown.</param>
|
392
|
+
</member>
|
393
|
+
<member name="T:Microsoft.Data.OData.ODataEntityReferenceLink">
|
394
|
+
<summary>Represents an OData entity reference link.</summary>
|
395
|
+
</member>
|
396
|
+
<member name="M:Microsoft.Data.OData.ODataEntityReferenceLink.#ctor">
|
397
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataEntityReferenceLink" /> class.</summary>
|
398
|
+
</member>
|
399
|
+
<member name="P:Microsoft.Data.OData.ODataEntityReferenceLink.Url">
|
400
|
+
<summary>Gets or sets the URI representing the URL of the referenced entity.</summary>
|
401
|
+
<returns>The URI representing the URL of the referenced entity.</returns>
|
402
|
+
</member>
|
403
|
+
<member name="T:Microsoft.Data.OData.ODataEntityReferenceLinks">
|
404
|
+
<summary>Represents a collection of entity reference links.</summary>
|
405
|
+
</member>
|
406
|
+
<member name="M:Microsoft.Data.OData.ODataEntityReferenceLinks.#ctor">
|
407
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataEntityReferenceLinks" /> class.</summary>
|
408
|
+
</member>
|
409
|
+
<member name="P:Microsoft.Data.OData.ODataEntityReferenceLinks.InlineCount">
|
410
|
+
<summary>Gets or sets the optional inline count of the $links collection.</summary>
|
411
|
+
<returns>The optional inline count of the $links collection.</returns>
|
412
|
+
</member>
|
413
|
+
<member name="P:Microsoft.Data.OData.ODataEntityReferenceLinks.Links">
|
414
|
+
<summary>Gets or sets the enumerable of <see cref="T:Microsoft.Data.OData.ODataEntityReferenceLink" /> instances representing the links of the referenced entities.</summary>
|
415
|
+
<returns>The enumerable of <see cref="T:Microsoft.Data.OData.ODataEntityReferenceLink" /> instances.</returns>
|
416
|
+
</member>
|
417
|
+
<member name="P:Microsoft.Data.OData.ODataEntityReferenceLinks.NextLink">
|
418
|
+
<summary>Gets or sets the optional next link of the $links collection.</summary>
|
419
|
+
<returns>The optional next link of the $links collection.</returns>
|
420
|
+
</member>
|
421
|
+
<member name="T:Microsoft.Data.OData.ODataEntry">
|
422
|
+
<summary>Represents a single entity.</summary>
|
423
|
+
</member>
|
424
|
+
<member name="M:Microsoft.Data.OData.ODataEntry.#ctor">
|
425
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataEntry" /> class.</summary>
|
426
|
+
</member>
|
427
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.Actions"></member>
|
428
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.AssociationLinks">
|
429
|
+
<summary>Gets or sets the association links.</summary>
|
430
|
+
<returns>The association links.</returns>
|
431
|
+
</member>
|
432
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.EditLink">
|
433
|
+
<summary>Gets or sets the link used to edit the entry.</summary>
|
434
|
+
<returns>The link used to edit the entry.</returns>
|
435
|
+
</member>
|
436
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.ETag">
|
437
|
+
<summary>Gets or sets the entry ETag.</summary>
|
438
|
+
<returns>The entry ETag.</returns>
|
439
|
+
</member>
|
440
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.Functions"></member>
|
441
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.Id">
|
442
|
+
<summary>Gets or sets the Entry identifier.</summary>
|
443
|
+
<returns>The Entry identifier.</returns>
|
444
|
+
</member>
|
445
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.MediaResource">
|
446
|
+
<summary>Gets or sets the default media resource of the media link entry.</summary>
|
447
|
+
<returns>The default media resource of the media link entry.</returns>
|
448
|
+
</member>
|
449
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.Properties">
|
450
|
+
<summary>Gets or sets the entry properties.</summary>
|
451
|
+
<returns>The entry properties.</returns>
|
452
|
+
</member>
|
453
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.ReadLink">
|
454
|
+
<summary>Gets or sets a link that can be used to read the entry.</summary>
|
455
|
+
<returns>The link that can be used to read the entry.</returns>
|
456
|
+
</member>
|
457
|
+
<member name="P:Microsoft.Data.OData.ODataEntry.TypeName">
|
458
|
+
<summary>Gets or sets the type name of the entry.</summary>
|
459
|
+
<returns>The type name of the entry.</returns>
|
460
|
+
</member>
|
461
|
+
<member name="T:Microsoft.Data.OData.ODataError">
|
462
|
+
<summary>Class representing an error payload.</summary>
|
463
|
+
</member>
|
464
|
+
<member name="M:Microsoft.Data.OData.ODataError.#ctor">
|
465
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataError" /> class.</summary>
|
466
|
+
</member>
|
467
|
+
<member name="P:Microsoft.Data.OData.ODataError.ErrorCode">
|
468
|
+
<summary>Gets or sets the error code to be used in payloads.</summary>
|
469
|
+
<returns>The error code to be used in payloads.</returns>
|
470
|
+
</member>
|
471
|
+
<member name="P:Microsoft.Data.OData.ODataError.InnerError">
|
472
|
+
<summary>Gets or sets the implementation specific debugging information to help determine the cause of the error.</summary>
|
473
|
+
<returns>The implementation specific debugging information.</returns>
|
474
|
+
</member>
|
475
|
+
<member name="P:Microsoft.Data.OData.ODataError.Message">
|
476
|
+
<summary>Gets or sets the error message.</summary>
|
477
|
+
<returns>The error message.</returns>
|
478
|
+
</member>
|
479
|
+
<member name="P:Microsoft.Data.OData.ODataError.MessageLanguage">
|
480
|
+
<summary>Gets or sets the language for the exception Message.</summary>
|
481
|
+
<returns>The language for the exception Message.</returns>
|
482
|
+
</member>
|
483
|
+
<member name="T:Microsoft.Data.OData.ODataErrorException">
|
484
|
+
<summary>Exception type representing an in-stream error parsed when reading a payload.</summary>
|
485
|
+
</member>
|
486
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.#ctor">
|
487
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataErrorException" /> class with default values.</summary>
|
488
|
+
</member>
|
489
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.#ctor(Microsoft.Data.OData.ODataError)">
|
490
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataErrorException" /> class with an <see cref="T:Microsoft.Data.OData.ODataError" /> object.</summary>
|
491
|
+
<param name="error">The <see cref="T:Microsoft.Data.OData.ODataError" /> instance representing the error read from the payload.</param>
|
492
|
+
</member>
|
493
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.#ctor(System.String)">
|
494
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataErrorException" /> class with an error message.</summary>
|
495
|
+
<param name="message">The plain text error message for this exception.</param>
|
496
|
+
</member>
|
497
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.#ctor(System.String,Microsoft.Data.OData.ODataError)">
|
498
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataErrorException" /> class with an error message and an <see cref="T:Microsoft.Data.OData.ODataError" /> object.</summary>
|
499
|
+
<param name="message">The plain text error message for this exception.</param>
|
500
|
+
<param name="error">The <see cref="T:Microsoft.Data.OData.ODataError" /> instance representing the error read from the payload.</param>
|
501
|
+
</member>
|
502
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.#ctor(System.String,System.Exception)">
|
503
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataErrorException" /> class with an error message and an inner exception.</summary>
|
504
|
+
<param name="message">The plain text error message for this exception.</param>
|
505
|
+
<param name="innerException">The inner exception that is the cause of this exception to be thrown.</param>
|
506
|
+
</member>
|
507
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.#ctor(System.String,System.Exception,Microsoft.Data.OData.ODataError)">
|
508
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataErrorException" /> class with an error message, an inner exception, and an <see cref="T:Microsoft.Data.OData.ODataError" /> object.</summary>
|
509
|
+
<param name="message">The plain text error message for this exception.</param>
|
510
|
+
<param name="innerException">The inner exception that is the cause of this exception to be thrown.</param>
|
511
|
+
<param name="error">The <see cref="T:Microsoft.Data.OData.ODataError" /> instance representing the error read from the payload.</param>
|
512
|
+
</member>
|
513
|
+
<member name="P:Microsoft.Data.OData.ODataErrorException.Error">
|
514
|
+
<summary>Gets or sets the <see cref="T:Microsoft.Data.OData.ODataError" /> instance representing the error read from the payload.</summary>
|
515
|
+
<returns>The <see cref="T:Microsoft.Data.OData.ODataError" /> instance representing the error read from the payload.</returns>
|
516
|
+
</member>
|
517
|
+
<member name="M:Microsoft.Data.OData.ODataErrorException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
518
|
+
<summary>Recreates the <see cref="T:Microsoft.Data.OData.ODataError" /> instance of the exception.</summary>
|
519
|
+
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> containing the information required to serialize the <see cref="T:Microsoft.Data.OData.ODataErrorException" />.</param>
|
520
|
+
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> containing the source of the serialized stream associated with the new <see cref="T:Microsoft.Data.OData.ODataErrorException" />.</param>
|
521
|
+
</member>
|
522
|
+
<member name="T:Microsoft.Data.OData.ODataException">
|
523
|
+
<summary> Exception type representing exceptions in the OData library. </summary>
|
524
|
+
</member>
|
525
|
+
<member name="M:Microsoft.Data.OData.ODataException.#ctor">
|
526
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataException" /> class with default values. </summary>
|
527
|
+
</member>
|
528
|
+
<member name="M:Microsoft.Data.OData.ODataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
529
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataException" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances. </summary>
|
530
|
+
<param name="info"> A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> containing the information required to serialize the new <see cref="T:Microsoft.Data.OData.ODataException" />. </param>
|
531
|
+
<param name="context"> A <see cref="T:System.Runtime.Serialization.StreamingContext" /> containing the source of the serialized stream associated with the new <see cref="T:Microsoft.Data.OData.ODataException" />. </param>
|
532
|
+
</member>
|
533
|
+
<member name="M:Microsoft.Data.OData.ODataException.#ctor(System.String)">
|
534
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataException" /> class with an error message. </summary>
|
535
|
+
<param name="message">The plain text error message for this exception.</param>
|
536
|
+
</member>
|
537
|
+
<member name="M:Microsoft.Data.OData.ODataException.#ctor(System.String,System.Exception)">
|
538
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataException" /> class with an error message and an inner exception. </summary>
|
539
|
+
<param name="message">The plain text error message for this exception.</param>
|
540
|
+
<param name="innerException">The inner exception that is the cause of this exception to be thrown.</param>
|
541
|
+
</member>
|
542
|
+
<member name="T:Microsoft.Data.OData.ODataFeed">
|
543
|
+
<summary>Describes a collection of entities.</summary>
|
544
|
+
</member>
|
545
|
+
<member name="M:Microsoft.Data.OData.ODataFeed.#ctor">
|
546
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataFeed" /> class.</summary>
|
547
|
+
</member>
|
548
|
+
<member name="P:Microsoft.Data.OData.ODataFeed.Count">
|
549
|
+
<summary>Gets or sets the number of items in the feed.</summary>
|
550
|
+
<returns>The number of items in the feed.</returns>
|
551
|
+
</member>
|
552
|
+
<member name="P:Microsoft.Data.OData.ODataFeed.Id">
|
553
|
+
<summary>Gets or sets the URI that identifies the entity set represented by the feed.</summary>
|
554
|
+
<returns>The URI that identifies the entity set represented by the feed.</returns>
|
555
|
+
</member>
|
556
|
+
<member name="P:Microsoft.Data.OData.ODataFeed.NextPageLink">
|
557
|
+
<summary>Gets or sets the URI representing the next page link.</summary>
|
558
|
+
<returns>The URI representing the next page link.</returns>
|
559
|
+
</member>
|
560
|
+
<member name="T:Microsoft.Data.OData.ODataFormat">
|
561
|
+
<summary>Enumerates the format type in connection to processing OData payloads.</summary>
|
562
|
+
</member>
|
563
|
+
<member name="F:Microsoft.Data.OData.ODataFormat.Default">
|
564
|
+
<summary>Specifies the default format that is dependent on the writer being used.</summary>
|
565
|
+
</member>
|
566
|
+
<member name="F:Microsoft.Data.OData.ODataFormat.Atom">
|
567
|
+
<summary>Specifies the Atom format. You can use this for all Xml based formats, if Atom cannot be used.</summary>
|
568
|
+
</member>
|
569
|
+
<member name="F:Microsoft.Data.OData.ODataFormat.Json">
|
570
|
+
<summary>Specifies the JSON format.</summary>
|
571
|
+
</member>
|
572
|
+
<member name="T:Microsoft.Data.OData.ODataFunction">
|
573
|
+
<summary> Represents a function. </summary>
|
574
|
+
</member>
|
575
|
+
<member name="M:Microsoft.Data.OData.ODataFunction.#ctor">
|
576
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataFunction" /> class.</summary>
|
577
|
+
</member>
|
578
|
+
<member name="T:Microsoft.Data.OData.ODataHttpHeaders">
|
579
|
+
<summary>Represents the names of HTTP headers used by the OData library.</summary>
|
580
|
+
</member>
|
581
|
+
<member name="F:Microsoft.Data.OData.ODataHttpHeaders.ContentType">
|
582
|
+
<summary>Specifies the name of the HTTP content type header.</summary>
|
583
|
+
</member>
|
584
|
+
<member name="F:Microsoft.Data.OData.ODataHttpHeaders.DataServiceVersion">
|
585
|
+
<summary>Specifies the name of the OData 'DataServiceVersion' HTTP header.</summary>
|
586
|
+
</member>
|
587
|
+
<member name="T:Microsoft.Data.OData.ODataInnerError">
|
588
|
+
<summary>Contains properties used to implement specific debugging information to help determine the cause of the error. </summary>
|
589
|
+
</member>
|
590
|
+
<member name="M:Microsoft.Data.OData.ODataInnerError.#ctor">
|
591
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataInnerError" /> class with default values.</summary>
|
592
|
+
</member>
|
593
|
+
<member name="M:Microsoft.Data.OData.ODataInnerError.#ctor(System.Exception)">
|
594
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataInnerError" /> class with exception object.</summary>
|
595
|
+
<param name="exception">The <see cref="T:System.Exception" /> used to create the inner error.</param>
|
596
|
+
</member>
|
597
|
+
<member name="P:Microsoft.Data.OData.ODataInnerError.InnerError">
|
598
|
+
<summary>Gets or sets the nested implementation specific debugging information. </summary>
|
599
|
+
<returns>The nested implementation specific debugging information.</returns>
|
600
|
+
</member>
|
601
|
+
<member name="P:Microsoft.Data.OData.ODataInnerError.Message">
|
602
|
+
<summary>Gets or sets the error message.</summary>
|
603
|
+
<returns>The error message.</returns>
|
604
|
+
</member>
|
605
|
+
<member name="P:Microsoft.Data.OData.ODataInnerError.StackTrace">
|
606
|
+
<summary>Gets or sets the stack trace for this error.</summary>
|
607
|
+
<returns>The stack trace for this error.</returns>
|
608
|
+
</member>
|
609
|
+
<member name="P:Microsoft.Data.OData.ODataInnerError.TypeName">
|
610
|
+
<summary>Gets or sets the type name of this error, for example, the type name of an exception.</summary>
|
611
|
+
<returns>The type name of this error.</returns>
|
612
|
+
</member>
|
613
|
+
<member name="T:Microsoft.Data.OData.ODataItem">
|
614
|
+
<summary>Represents the base class for <see cref="T:Microsoft.Data.OData.ODataFeed" /> and <see cref="T:Microsoft.Data.OData.ODataEntry" /> classes. </summary>
|
615
|
+
</member>
|
616
|
+
<member name="M:Microsoft.Data.OData.ODataItem.#ctor">
|
617
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataItem" /> class.</summary>
|
618
|
+
</member>
|
619
|
+
<member name="T:Microsoft.Data.OData.ODataMessageReader">
|
620
|
+
<summary>Represents the reader class used to read all OData payloads (entries, feeds, metadata documents, service documents, and so on). </summary>
|
621
|
+
</member>
|
622
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.#ctor(Microsoft.Data.OData.IODataRequestMessage)">
|
623
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageReader" /> for the given request message. </summary>
|
624
|
+
<param name="requestMessage">The request message for which to create the reader.</param>
|
625
|
+
</member>
|
626
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.#ctor(Microsoft.Data.OData.IODataRequestMessage,Microsoft.Data.OData.ODataMessageReaderSettings)">
|
627
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageReader" /> for the given request message and message reader settings. </summary>
|
628
|
+
<param name="requestMessage">The request message for which to create the reader.</param>
|
629
|
+
<param name="settings">The message reader settings to use for reading the message payload.</param>
|
630
|
+
</member>
|
631
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.#ctor(Microsoft.Data.OData.IODataRequestMessage,Microsoft.Data.OData.ODataMessageReaderSettings,Microsoft.Data.Edm.IEdmModel)">
|
632
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageReader" /> for the given request message and message reader settings. </summary>
|
633
|
+
<param name="requestMessage">The request message for which to create the reader.</param>
|
634
|
+
<param name="settings">The message reader settings to use for reading the message payload.</param>
|
635
|
+
<param name="model">The metadata provider to use.</param>
|
636
|
+
</member>
|
637
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.#ctor(Microsoft.Data.OData.IODataResponseMessage)">
|
638
|
+
<summary> Creates a new <see cref="T:System.Data.OData.ODataMessageReader" /> for the given response message. </summary>
|
639
|
+
<param name="responseMessage">The response message for which to create the reader.</param>
|
640
|
+
</member>
|
641
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.#ctor(Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataMessageReaderSettings)">
|
642
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageReader" /> for the given response message and message reader settings. </summary>
|
643
|
+
<param name="responseMessage">The response message for which to create the reader.</param>
|
644
|
+
<param name="settings">The message reader settings to use for reading the message payload.</param>
|
645
|
+
</member>
|
646
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.#ctor(Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataMessageReaderSettings,Microsoft.Data.Edm.IEdmModel)">
|
647
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageReader" /> for the given response message and message reader settings. </summary>
|
648
|
+
<param name="responseMessage">The response message for which to create the reader.</param>
|
649
|
+
<param name="settings">The message reader settings to use for reading the message payload.</param>
|
650
|
+
<param name="model">The metadata provider to use.</param>
|
651
|
+
</member>
|
652
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataBatchReader">
|
653
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataBatchReader" /> to read a batch of requests or responses. </summary>
|
654
|
+
<returns>The created batch reader.</returns>
|
655
|
+
</member>
|
656
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataBatchReaderAsync">
|
657
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataBatchReader" /> to read a batch of requests or responses. </summary>
|
658
|
+
<returns>A running task for the created batch reader.</returns>
|
659
|
+
</member>
|
660
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataCollectionReader">
|
661
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataCollectionReader" /> to read a collection of primitive or complex values (as result of a service operation invocation). </summary>
|
662
|
+
<returns>The created collection reader.</returns>
|
663
|
+
</member>
|
664
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataCollectionReader(Microsoft.Data.Edm.IEdmTypeReference)">
|
665
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataCollectionReader" /> to read a collection of primitive or complex values (as result of a service operation invocation). </summary>
|
666
|
+
<returns>The created collection reader.</returns>
|
667
|
+
<param name="expectedItemTypeReference">The expected resource type for the items in the collection.</param>
|
668
|
+
</member>
|
669
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataCollectionReaderAsync">
|
670
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataCollectionReader" /> to read a collection of primitive or complex values (as result of a service operation invocation). </summary>
|
671
|
+
<returns>A running task for the created collection reader.</returns>
|
672
|
+
</member>
|
673
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataCollectionReaderAsync(System.Void)"></member>
|
674
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataEntryReader">
|
675
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read an entry. </summary>
|
676
|
+
<returns>The created reader.</returns>
|
677
|
+
</member>
|
678
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataEntryReader(Microsoft.Data.Edm.IEdmEntityType)">
|
679
|
+
<summary> Creates an <see cref="T:System.Data.OData.ODataReader" /> to read an entry. </summary>
|
680
|
+
<returns>The created reader.</returns>
|
681
|
+
<param name="expectedEntityType">The expected entity type for the entry to be read.</param>
|
682
|
+
</member>
|
683
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataEntryReaderAsync">
|
684
|
+
<summary> Asynchronously creates an <see cref="T:System.Data.OData.ODataReader" /> to read an entry. </summary>
|
685
|
+
<returns>A running task for the created reader.</returns>
|
686
|
+
</member>
|
687
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataEntryReaderAsync(System.Void)"></member>
|
688
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataFeedReader">
|
689
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read a feed. </summary>
|
690
|
+
<returns>The created reader.</returns>
|
691
|
+
</member>
|
692
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataFeedReader(Microsoft.Data.Edm.IEdmEntityType)">
|
693
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read a feed. </summary>
|
694
|
+
<returns>The created reader.</returns>
|
695
|
+
<param name="expectedBaseEntityType">The expected base resource type for the entities in the feed.</param>
|
696
|
+
</member>
|
697
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataFeedReaderAsync">
|
698
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read a feed. </summary>
|
699
|
+
<returns>A running task for the created reader.</returns>
|
700
|
+
</member>
|
701
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataFeedReaderAsync(System.Void)"></member>
|
702
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataParameterReader(Microsoft.Data.Edm.IEdmFunctionImport)"></member>
|
703
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.CreateODataParameterReaderAsync(System.Void)"></member>
|
704
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.Dispose">
|
705
|
+
<summary>
|
706
|
+
<see cref="M:System.IDisposable.Dispose()" /> implementation to cleanup unmanaged resources of the reader. </summary>
|
707
|
+
</member>
|
708
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.GetFormat">
|
709
|
+
<summary> Determines and returns the format of the payload being read by this reader. </summary>
|
710
|
+
<returns>The format of the payload being read by this reader.</returns>
|
711
|
+
</member>
|
712
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadEntityReferenceLink">
|
713
|
+
<summary> Reads a singleton result of a $links query (entity reference link) as the message payload. </summary>
|
714
|
+
<returns>The entity reference link read from the message payload.</returns>
|
715
|
+
</member>
|
716
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadEntityReferenceLinkAsync">
|
717
|
+
<summary> Asynchronously reads a singleton result of a $links query (entity reference link) as the message payload. </summary>
|
718
|
+
<returns>A running task representing the reading of the entity reference link.</returns>
|
719
|
+
</member>
|
720
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadEntityReferenceLinks">
|
721
|
+
<summary> Reads the result of a $links query (entity reference links) as the message payload. </summary>
|
722
|
+
<returns>The entity reference links read as message payload.</returns>
|
723
|
+
</member>
|
724
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadEntityReferenceLinksAsync">
|
725
|
+
<summary> Asynchronously reads the result of a $links query as the message payload. </summary>
|
726
|
+
<returns>A task representing the asynchronous reading of the entity reference links.</returns>
|
727
|
+
</member>
|
728
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadError">
|
729
|
+
<summary> Reads an <see cref="T:Microsoft.Data.OData.ODataError" /> as the message payload. </summary>
|
730
|
+
<returns>The <see cref="T:Microsoft.Data.OData.ODataError" /> read from the message payload.</returns>
|
731
|
+
</member>
|
732
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadErrorAsync">
|
733
|
+
<summary> Asynchronously reades an <see cref="T:Microsoft.Data.OData.ODataError" /> as the message payload. </summary>
|
734
|
+
<returns>A task representing the asynchronous operation of reading the error.</returns>
|
735
|
+
</member>
|
736
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadMetadataDocument">
|
737
|
+
<summary> Reads the message body as metadata document. </summary>
|
738
|
+
<returns>Returns <see cref="T:Microsoft.Data.Edm.IEdmModel" />.</returns>
|
739
|
+
</member>
|
740
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadProperty">
|
741
|
+
<summary> Reads an <see cref="T:Microsoft.Data.OData.ODataProperty" /> as message payload. </summary>
|
742
|
+
<returns>The property read from the payload.</returns>
|
743
|
+
</member>
|
744
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadProperty(Microsoft.Data.Edm.IEdmTypeReference)">
|
745
|
+
<summary> Reads an <see cref="T:Microsoft.Data.OData.ODataProperty" /> as message payload. </summary>
|
746
|
+
<returns>The property read from the payload.</returns>
|
747
|
+
<param name="expectedPropertyTypeReference">The expected resource type of the property to read.</param>
|
748
|
+
</member>
|
749
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadPropertyAsync">
|
750
|
+
<summary> Asynchronously reads an <see cref="T:Microsoft.Data.OData.ODataProperty" /> as message payload. </summary>
|
751
|
+
<returns>A task representing the asynchronous operation of reading the property.</returns>
|
752
|
+
</member>
|
753
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadPropertyAsync(System.Void)"></member>
|
754
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadServiceDocument">
|
755
|
+
<summary> Reads a service document payload. </summary>
|
756
|
+
<returns>The service document read.</returns>
|
757
|
+
</member>
|
758
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadServiceDocumentAsync">
|
759
|
+
<summary> Asynchronously reads a service document payload. </summary>
|
760
|
+
<returns>A task representing the asynchronous operation of reading the service document.</returns>
|
761
|
+
</member>
|
762
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadValue(Microsoft.Data.Edm.IEdmTypeReference)">
|
763
|
+
<summary> Reads a single value as the message body. </summary>
|
764
|
+
<returns>The read value.</returns>
|
765
|
+
<param name="expectedTypeReference">The expected resource type for the value to be read; null if no expected type is available.</param>
|
766
|
+
</member>
|
767
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReader.ReadValueAsync(System.Void)"></member>
|
768
|
+
<member name="T:Microsoft.Data.OData.ODataMessageReaderSettings">
|
769
|
+
<summary>Represents the configuration settings for OData message readers.</summary>
|
770
|
+
</member>
|
771
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReaderSettings.#ctor">
|
772
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataMessageReaderSettings" /> class with default values.</summary>
|
773
|
+
</member>
|
774
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReaderSettings.#ctor(Microsoft.Data.OData.ODataMessageReaderSettings)"></member>
|
775
|
+
<member name="P:Microsoft.Data.OData.ODataMessageReaderSettings.BaseUri">
|
776
|
+
<summary>Gets or sets the document base Uri (used as base for all relative Uris). If this is set, it must be an absolute URI. </summary>
|
777
|
+
<returns>The base URI.</returns>
|
778
|
+
</member>
|
779
|
+
<member name="P:Microsoft.Data.OData.ODataMessageReaderSettings.CheckCharacters">
|
780
|
+
<summary>Gets or sets a value that indicates whether the reader checks for valid Xml characters.</summary>
|
781
|
+
<returns>true if the reader checks for valid Xml characters; otherwise, false.</returns>
|
782
|
+
</member>
|
783
|
+
<member name="P:Microsoft.Data.OData.ODataMessageReaderSettings.DisableMessageStreamDisposal">
|
784
|
+
<summary>Gets or sets a value that indicates whether the message stream will not be disposed after finishing writing with the message.</summary>
|
785
|
+
<returns>true if the message stream will not be disposed after finishing writing with the message; otherwise false. The default value is false.</returns>
|
786
|
+
</member>
|
787
|
+
<member name="P:Microsoft.Data.OData.ODataMessageReaderSettings.DisablePrimitiveTypeConversion">
|
788
|
+
<summary>Gets or sets a value that indicates whether not to convert all primitive values to the type specified in the payload.</summary>
|
789
|
+
<returns>true if primitive values and report values are not converted; false if all primitive values are converted to the type specified in the payload. The default value is false.</returns>
|
790
|
+
</member>
|
791
|
+
<member name="P:Microsoft.Data.OData.ODataMessageReaderSettings.DisableStrictMetadataValidation"></member>
|
792
|
+
<member name="P:Microsoft.Data.OData.ODataMessageReaderSettings.EnableAtomMetadataReading"></member>
|
793
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReaderSettings.EnableDefaultBehavior"></member>
|
794
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReaderSettings.EnableWcfDataServicesClientBehavior"></member>
|
795
|
+
<member name="M:Microsoft.Data.OData.ODataMessageReaderSettings.EnableWcfDataServicesServerBehavior(System.Boolean)"></member>
|
796
|
+
<member name="T:Microsoft.Data.OData.ODataMessageWriter">
|
797
|
+
<summary>Represents the writer class used to write all OData payloads (entries, feeds, metadata documents, service documents, and so on.). </summary>
|
798
|
+
</member>
|
799
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.#ctor(Microsoft.Data.OData.IODataRequestMessage)">
|
800
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageWriter" /> for the given request message. </summary>
|
801
|
+
<param name="requestMessage">The request message for which to create the writer.</param>
|
802
|
+
</member>
|
803
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.#ctor(Microsoft.Data.OData.IODataRequestMessage,Microsoft.Data.OData.ODataMessageWriterSettings)">
|
804
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageWriter" /> for the given request message and message writer settings. </summary>
|
805
|
+
<param name="requestMessage">The request message for which to create the writer.</param>
|
806
|
+
<param name="settings">The message writer settings to use for writing the message payload.</param>
|
807
|
+
</member>
|
808
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.#ctor(Microsoft.Data.OData.IODataRequestMessage,Microsoft.Data.OData.ODataMessageWriterSettings,Microsoft.Data.Edm.IEdmModel)">
|
809
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageWriter" /> for the given request message and message writer settings. </summary>
|
810
|
+
<param name="requestMessage">The request message for which to create the writer.</param>
|
811
|
+
<param name="settings">The message writer settings to use for writing the message payload.</param>
|
812
|
+
<param name="model">The metadata provider to use.</param>
|
813
|
+
</member>
|
814
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.#ctor(Microsoft.Data.OData.IODataResponseMessage)">
|
815
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageWriter" /> for the given response message. </summary>
|
816
|
+
<param name="responseMessage">The response message for which to create the writer.</param>
|
817
|
+
</member>
|
818
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.#ctor(Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataMessageWriterSettings)">
|
819
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageWriter" /> for the given response message and message writer settings. </summary>
|
820
|
+
<param name="responseMessage">The response message for which to create the writer.</param>
|
821
|
+
<param name="settings">The message writer settings to use for writing the message payload.</param>
|
822
|
+
</member>
|
823
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.#ctor(Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataMessageWriterSettings,Microsoft.Data.Edm.IEdmModel)">
|
824
|
+
<summary> Creates a new <see cref="T:Microsoft.Data.OData.ODataMessageWriter" /> for the given response message and message writer settings. </summary>
|
825
|
+
<param name="responseMessage">The response message for which to create the writer.</param>
|
826
|
+
<param name="settings">The message writer settings to use for writing the message payload.</param>
|
827
|
+
<param name="model">The metadata provider to use.</param>
|
828
|
+
</member>
|
829
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataBatchWriter">
|
830
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataBatchWriter" /> to write a batch of requests or responses. </summary>
|
831
|
+
<returns>The created batch writer.</returns>
|
832
|
+
</member>
|
833
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataBatchWriterAsync">
|
834
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataBatchWriter" /> to write a batch of requests or responses. </summary>
|
835
|
+
<returns>A running task for the created batch writer.</returns>
|
836
|
+
</member>
|
837
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataCollectionWriter">
|
838
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataCollectionWriter" /> to write a collection of primitive or complex values (as result of a service operation invocation). </summary>
|
839
|
+
<returns>The created collection writer.</returns>
|
840
|
+
</member>
|
841
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataCollectionWriterAsync">
|
842
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataCollectionWriter" /> to write a collection of primitive or complex values (as result of a service operation invocation). </summary>
|
843
|
+
<returns>A running task for the created collection writer.</returns>
|
844
|
+
</member>
|
845
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataEntryWriter">
|
846
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataWriter" /> to write an entry. </summary>
|
847
|
+
<returns>The created writer.</returns>
|
848
|
+
</member>
|
849
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataEntryWriterAsync">
|
850
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataWriter" /> to write an entry. </summary>
|
851
|
+
<returns>A running task for the created writer.</returns>
|
852
|
+
</member>
|
853
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataFeedWriter">
|
854
|
+
<summary> Creates an <see cref="T:Microsoft.Data.OData.ODataWriter" /> to write a feed. </summary>
|
855
|
+
<returns>The created writer.</returns>
|
856
|
+
</member>
|
857
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.CreateODataFeedWriterAsync">
|
858
|
+
<summary> Asynchronously creates an <see cref="T:Microsoft.Data.OData.ODataWriter" /> to write a feed. </summary>
|
859
|
+
<returns>A running task for the created writer.</returns>
|
860
|
+
</member>
|
861
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.Dispose">
|
862
|
+
<summary>
|
863
|
+
<see cref="M:System.IDisposable.Dispose()" /> implementation to cleanup unmanaged resources of the writer. </summary>
|
864
|
+
</member>
|
865
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteEntityReferenceLink(Microsoft.Data.OData.ODataEntityReferenceLink)">
|
866
|
+
<summary> Writes a singleton result of a $links query as the message payload. </summary>
|
867
|
+
<param name="link">The entity reference link to write as the message payload.</param>
|
868
|
+
</member>
|
869
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteEntityReferenceLinkAsync(Microsoft.Data.OData.ODataEntityReferenceLink)">
|
870
|
+
<summary> Asynchronously writes a singleton result of a $links query as the message payload. </summary>
|
871
|
+
<returns>A running task representing the writing of the link.</returns>
|
872
|
+
<param name="link">The link result to write as the message payload.</param>
|
873
|
+
</member>
|
874
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteEntityReferenceLinks(Microsoft.Data.OData.ODataEntityReferenceLinks)">
|
875
|
+
<summary> Writes the result of a $links query as the message payload. </summary>
|
876
|
+
<param name="links">The entity reference links to write as message payload.</param>
|
877
|
+
</member>
|
878
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteEntityReferenceLinksAsync(Microsoft.Data.OData.ODataEntityReferenceLinks)">
|
879
|
+
<summary> Asynchronously writes the result of a $links query as the message payload. </summary>
|
880
|
+
<returns>A task representing the asynchronous writing of the entity reference links.</returns>
|
881
|
+
<param name="links">The entity reference links to write as message payload.</param>
|
882
|
+
</member>
|
883
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteError(Microsoft.Data.OData.ODataError,System.Boolean)">
|
884
|
+
<summary> Writes an <see cref="T:Microsoft.Data.OData.ODataError" /> as the message payload. </summary>
|
885
|
+
<param name="error">The error to write.</param>
|
886
|
+
<param name="includeDebugInformation"> A flag indicating whether debug information (for example, the inner error from the <paramref name="error" /> should be included in the payload. This should only be used in debug scenarios. </param>
|
887
|
+
</member>
|
888
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteErrorAsync(Microsoft.Data.OData.ODataError,System.Boolean)">
|
889
|
+
<summary> Asynchronously writes an <see cref="T:Microsoft.Data.OData.ODataError" /> as the message payload. </summary>
|
890
|
+
<returns>A task representing the asynchronous operation of writing the error.</returns>
|
891
|
+
<param name="error">The error to write.</param>
|
892
|
+
<param name="includeDebugInformation"> A flag indicating whether debug information (for example, the inner error from the <paramref name="error" /> should be included in the payload. This should only be used in debug scenarios. </param>
|
893
|
+
</member>
|
894
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteMetadataDocument">
|
895
|
+
<summary> Writes the metadata document as the message body. </summary>
|
896
|
+
</member>
|
897
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteProperty(Microsoft.Data.OData.ODataProperty)">
|
898
|
+
<summary> Writes an <see cref="T:Microsoft.Data.OData.ODataProperty" /> as the message payload. </summary>
|
899
|
+
<param name="property">The property to write.</param>
|
900
|
+
</member>
|
901
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WritePropertyAsync(Microsoft.Data.OData.ODataProperty)">
|
902
|
+
<summary> Asynchronously writes an <see cref="T:Microsoft.Data.OData.ODataProperty" /> as the message payload. </summary>
|
903
|
+
<returns>A task representing the asynchronous operation of writing the property.</returns>
|
904
|
+
<param name="property">The property to write</param>
|
905
|
+
</member>
|
906
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteServiceDocument(Microsoft.Data.OData.ODataWorkspace)">
|
907
|
+
<summary> Writes a service document with the specified <paramref name="defaultWorkspace" /> as the message payload. </summary>
|
908
|
+
<param name="defaultWorkspace">The default workspace to write in the service document.</param>
|
909
|
+
</member>
|
910
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteServiceDocumentAsync(Microsoft.Data.OData.ODataWorkspace)">
|
911
|
+
<summary> Asynchronously writes a service document with the specified <paramref name="defaultWorkspace" /> as the message payload. </summary>
|
912
|
+
<returns>A task representing the asynchronous operation of writing the service document.</returns>
|
913
|
+
<param name="defaultWorkspace">The default workspace to write in the service document.</param>
|
914
|
+
</member>
|
915
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteValue(System.Object)">
|
916
|
+
<summary> Writes a single value as the message body. </summary>
|
917
|
+
<param name="value">The value to write.</param>
|
918
|
+
</member>
|
919
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriter.WriteValueAsync(System.Object)">
|
920
|
+
<summary> Asynchronously writes a single value as the message body. </summary>
|
921
|
+
<returns>A running task representing the writing of the value.</returns>
|
922
|
+
<param name="value">The value to write.</param>
|
923
|
+
</member>
|
924
|
+
<member name="T:Microsoft.Data.OData.ODataMessageWriterSettings">
|
925
|
+
<summary>Represents the configuration settings for OData message writers. </summary>
|
926
|
+
</member>
|
927
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.#ctor">
|
928
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataMessageWriterSettings" /> class with default settings. </summary>
|
929
|
+
</member>
|
930
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.#ctor(Microsoft.Data.OData.ODataMessageWriterSettings)"></member>
|
931
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.BaseUri">
|
932
|
+
<summary>Gets or sets the document base URI which is used as base for all relative URIs. </summary>
|
933
|
+
<returns>The document base URI which is used as base for all relative URIs.</returns>
|
934
|
+
</member>
|
935
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.CheckCharacters">
|
936
|
+
<summary>Gets or sets a value that indicates whether the reader checks for valid Xml characters.</summary>
|
937
|
+
<returns>true if the reader checks for valid Xml characters; otherwise, false.</returns>
|
938
|
+
</member>
|
939
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.DisableMessageStreamDisposal">
|
940
|
+
<summary>Gets or sets a value that indicates whether the message stream will not be disposed after finishing writing with the message.</summary>
|
941
|
+
<returns>true if the message stream will not be disposed after finishing writing with the message; otherwise false. The default value is false.</returns>
|
942
|
+
</member>
|
943
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.EnableDefaultBehavior"></member>
|
944
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.EnableWcfDataServicesClientBehavior(System.Func`3,System.Char)"></member>
|
945
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.EnableWcfDataServicesServerBehavior(System.Boolean)"></member>
|
946
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.Indent">
|
947
|
+
<summary>Gets or sets a value to indicate whether the writer uses indentation. </summary>
|
948
|
+
<returns>true if the writer uses indentation; otherwise, false.</returns>
|
949
|
+
</member>
|
950
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.MaxBatchSize">
|
951
|
+
<summary>Gets or sets the maximum number of query operations and changesets allowed in a single batch. </summary>
|
952
|
+
<returns>The maximum number of query operations and changesets allowed in a single batch.</returns>
|
953
|
+
</member>
|
954
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.MaxChangesetSize">
|
955
|
+
<summary>Gets or sets the maximum number of requests allowed in a single changeset. </summary>
|
956
|
+
<returns>The maximum number of requests allowed in a single changeset.</returns>
|
957
|
+
</member>
|
958
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.SetContentType(Microsoft.Data.OData.ODataFormat)">
|
959
|
+
<summary> Sets the format to be used when writing the payload. This will automatically set a compatible content type header. </summary>
|
960
|
+
<param name="payloadFormat">The format to use for writing the payload.</param>
|
961
|
+
</member>
|
962
|
+
<member name="M:Microsoft.Data.OData.ODataMessageWriterSettings.SetContentType(System.String,System.String)">
|
963
|
+
<summary> Sets the acceptable media types and character sets from which the content type will be computed when writing the payload. </summary>
|
964
|
+
<param name="acceptableMediaTypes"> The acceptable media types used to determine the content type of the message. This is a comma separated list of content types as specified in RFC 2616, Section 14.1 </param>
|
965
|
+
<param name="acceptableCharSets"> The acceptable charsets to use to determine the encoding of the message. This is a comma separated list of charsets as specified in RFC 2616, Section 14.2 </param>
|
966
|
+
</member>
|
967
|
+
<member name="P:Microsoft.Data.OData.ODataMessageWriterSettings.Version">
|
968
|
+
<summary>Gets or sets the OData protocol version to be used for writing payloads. </summary>
|
969
|
+
<returns>The OData protocol version to be used for writing payloads.</returns>
|
970
|
+
</member>
|
971
|
+
<member name="T:Microsoft.Data.OData.ODataMultiValue">
|
972
|
+
<summary>The OData representation of a MultiValue.</summary>
|
973
|
+
</member>
|
974
|
+
<member name="M:Microsoft.Data.OData.ODataMultiValue.#ctor">
|
975
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataMultiValue" /> class.</summary>
|
976
|
+
</member>
|
977
|
+
<member name="P:Microsoft.Data.OData.ODataMultiValue.Items">
|
978
|
+
<summary>Gets or sets the items in the bag value.</summary>
|
979
|
+
<returns>The collection of item in the bag value.</returns>
|
980
|
+
</member>
|
981
|
+
<member name="P:Microsoft.Data.OData.ODataMultiValue.TypeName">
|
982
|
+
<summary>Gets or sets the type name of the complex value.</summary>
|
983
|
+
<returns>The type name of the complex value.</returns>
|
984
|
+
</member>
|
985
|
+
<member name="T:Microsoft.Data.OData.ODataNavigationLink">
|
986
|
+
<summary>Represents a single link.</summary>
|
987
|
+
</member>
|
988
|
+
<member name="M:Microsoft.Data.OData.ODataNavigationLink.#ctor">
|
989
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataNavigationLink" /> class.</summary>
|
990
|
+
</member>
|
991
|
+
<member name="P:Microsoft.Data.OData.ODataNavigationLink.IsCollection">
|
992
|
+
<summary>Gets or sets a value that indicates whether the navigation link represents a collection or an entry.</summary>
|
993
|
+
<returns>true if the navigation link represents a collection; false if the navigation represents an entry.</returns>
|
994
|
+
</member>
|
995
|
+
<member name="P:Microsoft.Data.OData.ODataNavigationLink.Name">
|
996
|
+
<summary>Gets or sets the name of the link.</summary>
|
997
|
+
<returns>The name of the link.</returns>
|
998
|
+
</member>
|
999
|
+
<member name="P:Microsoft.Data.OData.ODataNavigationLink.Url">
|
1000
|
+
<summary>Gets or sets the URI representing the Unified Resource Locator (URL) of the link.</summary>
|
1001
|
+
<returns>The URI representing the Unified Resource Locator (URL) of the link.</returns>
|
1002
|
+
</member>
|
1003
|
+
<member name="T:Microsoft.Data.OData.ODataOperation">
|
1004
|
+
<summary> Represents a function or an action. </summary>
|
1005
|
+
</member>
|
1006
|
+
<member name="M:Microsoft.Data.OData.ODataOperation.#ctor">
|
1007
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataOperation" /> class.</summary>
|
1008
|
+
</member>
|
1009
|
+
<member name="P:Microsoft.Data.OData.ODataOperation.Metadata">
|
1010
|
+
<summary> The URI to get metadata for the <see cref="T:Microsoft.Data.OData.ODataAction" /> or the <see cref="T:Microsoft.Data.OData.ODataAction" /></summary>
|
1011
|
+
</member>
|
1012
|
+
<member name="P:Microsoft.Data.OData.ODataOperation.Relation">
|
1013
|
+
<summary> The URI that identifies the <see cref="T:Microsoft.Data.OData.ODataAction" /> or the <see cref="T:Microsoft.Data.OData.ODataAction" />. </summary>
|
1014
|
+
</member>
|
1015
|
+
<member name="P:Microsoft.Data.OData.ODataOperation.Target">
|
1016
|
+
<summary> The URI to invoke the <see cref="T:Microsoft.Data.OData.ODataAction" /> or the <see cref="T:Microsoft.Data.OData.ODataAction" />. </summary>
|
1017
|
+
</member>
|
1018
|
+
<member name="P:Microsoft.Data.OData.ODataOperation.Title">
|
1019
|
+
<summary> A human-readable description of the <see cref="T:Microsoft.Data.OData.ODataAction" /> or the <see cref="T:Microsoft.Data.OData.ODataAction" />. </summary>
|
1020
|
+
</member>
|
1021
|
+
<member name="T:Microsoft.Data.OData.ODataParameterReader">
|
1022
|
+
<summary> Base class for OData parameter readers. </summary>
|
1023
|
+
</member>
|
1024
|
+
<member name="M:Microsoft.Data.OData.ODataParameterReader.#ctor">
|
1025
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataParameterReader" /> class.</summary>
|
1026
|
+
</member>
|
1027
|
+
<member name="M:Microsoft.Data.OData.ODataParameterReader.CreateCollectionReader">
|
1028
|
+
<summary> This method creates an <see cref="T:Microsoft.Data.OData.ODataCollectionReader" /> to read the collection value when the state is ODataParameterReaderState.Collection. </summary>
|
1029
|
+
<returns>Returns an <see cref="T:Microsoft.Data.OData.ODataCollectionReader" /> to read the collection value when the state is ODataParameterReaderState.Collection.</returns>
|
1030
|
+
</member>
|
1031
|
+
<member name="M:Microsoft.Data.OData.ODataParameterReader.CreateEntryReader">
|
1032
|
+
<summary> This method creates an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read the entry value when the state is ODataParameterReaderState.Entry. </summary>
|
1033
|
+
<returns>Returns an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read the entry value when the state is ODataParameterReaderState.Entry.</returns>
|
1034
|
+
</member>
|
1035
|
+
<member name="M:Microsoft.Data.OData.ODataParameterReader.CreateFeedReader">
|
1036
|
+
<summary> This method creates an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read the feed value when the state is ODataParameterReaderState.Feed. </summary>
|
1037
|
+
<returns>Returns an <see cref="T:Microsoft.Data.OData.ODataReader" /> to read the feed value when the state is ODataParameterReaderState.Feed.</returns>
|
1038
|
+
</member>
|
1039
|
+
<member name="P:Microsoft.Data.OData.ODataParameterReader.Name">
|
1040
|
+
<summary> The name of the current parameter that is being read. </summary>
|
1041
|
+
</member>
|
1042
|
+
<member name="M:Microsoft.Data.OData.ODataParameterReader.Read">
|
1043
|
+
<summary> Reads the next parameter from the message payload. </summary>
|
1044
|
+
<returns>true if more items were read; otherwise false.</returns>
|
1045
|
+
</member>
|
1046
|
+
<member name="M:Microsoft.Data.OData.ODataParameterReader.ReadAsync">
|
1047
|
+
<summary> Asynchronously reads the next item from the message payload. </summary>
|
1048
|
+
<returns>A task that when completed indicates whether more items were read.</returns>
|
1049
|
+
</member>
|
1050
|
+
<member name="P:Microsoft.Data.OData.ODataParameterReader.State">
|
1051
|
+
<summary> The current state of the reader. </summary>
|
1052
|
+
</member>
|
1053
|
+
<member name="P:Microsoft.Data.OData.ODataParameterReader.Value">
|
1054
|
+
<summary> The value of the current parameter that is being read. </summary>
|
1055
|
+
</member>
|
1056
|
+
<member name="T:Microsoft.Data.OData.ODataParameterReaderState">
|
1057
|
+
<summary> Enumeration of all possible states of an <see cref="T:Microsoft.Data.OData.ODataParameterReader" />. </summary>
|
1058
|
+
</member>
|
1059
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Start">
|
1060
|
+
<summary>The reader is at the start; nothing has been read yet.</summary>
|
1061
|
+
</member>
|
1062
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Value">
|
1063
|
+
<summary>The reader read a primitive or a complex parameter.</summary>
|
1064
|
+
</member>
|
1065
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Entry">
|
1066
|
+
<summary>The reader is reading an entry parameter.</summary>
|
1067
|
+
</member>
|
1068
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Feed">
|
1069
|
+
<summary>The reader is reading a feed parameter.</summary>
|
1070
|
+
</member>
|
1071
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Collection">
|
1072
|
+
<summary>The reader is reading a collection parameter.</summary>
|
1073
|
+
</member>
|
1074
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Exception">
|
1075
|
+
<summary>The reader has thrown an exception; nothing can be read from the reader anymore.</summary>
|
1076
|
+
</member>
|
1077
|
+
<member name="F:Microsoft.Data.OData.ODataParameterReaderState.Completed">
|
1078
|
+
<summary>The reader has completed; nothing can be read anymore.</summary>
|
1079
|
+
</member>
|
1080
|
+
<member name="T:Microsoft.Data.OData.ODataPayloadKind">
|
1081
|
+
<summary>Enumerates the different kinds of payloads that ODatLib can write.</summary>
|
1082
|
+
</member>
|
1083
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Feed">
|
1084
|
+
<summary>Specifies a payload kind for writing a feed.</summary>
|
1085
|
+
</member>
|
1086
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Entry">
|
1087
|
+
<summary>Specifies a payload kind for writing an entry.</summary>
|
1088
|
+
</member>
|
1089
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Property">
|
1090
|
+
<summary>Specifies a payload kind for writing a property.</summary>
|
1091
|
+
</member>
|
1092
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.EntityReferenceLink">
|
1093
|
+
<summary>Specifies the payload kind for writing an entity reference link.</summary>
|
1094
|
+
</member>
|
1095
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.EntityReferenceLinks">
|
1096
|
+
<summary>Specifies the payload kind for writing entity reference links.</summary>
|
1097
|
+
</member>
|
1098
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Value">
|
1099
|
+
<summary>Specifies a payload kind for writing a raw value.</summary>
|
1100
|
+
</member>
|
1101
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.BinaryValue">
|
1102
|
+
<summary>Specifies the payload kind for writing a binary value.</summary>
|
1103
|
+
</member>
|
1104
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Collection">
|
1105
|
+
<summary>Specifies a payload kind for writing a collection.</summary>
|
1106
|
+
</member>
|
1107
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.ServiceDocument">
|
1108
|
+
<summary>Specifies a payload kind for writing a service document.</summary>
|
1109
|
+
</member>
|
1110
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.MetadataDocument">
|
1111
|
+
<summary>Specifies a payload kind for writing a metadata document.</summary>
|
1112
|
+
</member>
|
1113
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Error">
|
1114
|
+
<summary>Specifies a payload kind for writing an error.</summary>
|
1115
|
+
</member>
|
1116
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Batch">
|
1117
|
+
<summary>Specifies the payload kind for writing a batch.</summary>
|
1118
|
+
</member>
|
1119
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Parameter">
|
1120
|
+
<summary />
|
1121
|
+
</member>
|
1122
|
+
<member name="F:Microsoft.Data.OData.ODataPayloadKind.Unsupported">
|
1123
|
+
<summary>Specifies an unknown format.</summary>
|
1124
|
+
</member>
|
1125
|
+
<member name="T:Microsoft.Data.OData.ODataProperty">
|
1126
|
+
<summary>Represents a single property of an entry.</summary>
|
1127
|
+
</member>
|
1128
|
+
<member name="M:Microsoft.Data.OData.ODataProperty.#ctor">
|
1129
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataProperty" /> class.</summary>
|
1130
|
+
</member>
|
1131
|
+
<member name="P:Microsoft.Data.OData.ODataProperty.Name">
|
1132
|
+
<summary>Gets or sets the property name.</summary>
|
1133
|
+
<returns>The property name.</returns>
|
1134
|
+
</member>
|
1135
|
+
<member name="P:Microsoft.Data.OData.ODataProperty.Value">
|
1136
|
+
<summary>Gets or sets the property value.</summary>
|
1137
|
+
<returns>The property value.</returns>
|
1138
|
+
</member>
|
1139
|
+
<member name="T:Microsoft.Data.OData.ODataReader">
|
1140
|
+
<summary>Represents the base class for OData readers. </summary>
|
1141
|
+
</member>
|
1142
|
+
<member name="M:Microsoft.Data.OData.ODataReader.#ctor">
|
1143
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataReader" /> class.</summary>
|
1144
|
+
</member>
|
1145
|
+
<member name="P:Microsoft.Data.OData.ODataReader.Item">
|
1146
|
+
<summary>Gets or sets the most recent <see cref="T:Microsoft.Data.OData.ODataItem" /> that has been read. </summary>
|
1147
|
+
<returns>The most recent <see cref="T:Microsoft.Data.OData.ODataItem" /> that has been read.</returns>
|
1148
|
+
</member>
|
1149
|
+
<member name="M:Microsoft.Data.OData.ODataReader.Read">
|
1150
|
+
<summary> Reads the next <see cref="T:Microsoft.Data.OData.ODataItem" /> from the message payload. </summary>
|
1151
|
+
<returns>true if more items were read; otherwise false.</returns>
|
1152
|
+
</member>
|
1153
|
+
<member name="M:Microsoft.Data.OData.ODataReader.ReadAsync">
|
1154
|
+
<summary> Asynchronously reads the next <see cref="T:Microsoft.Data.OData.ODataItem" /> from the message payload. </summary>
|
1155
|
+
<returns>A task that when completed indicates whether more items were read.</returns>
|
1156
|
+
</member>
|
1157
|
+
<member name="P:Microsoft.Data.OData.ODataReader.State">
|
1158
|
+
<summary>Gets or sets the current state of the reader. </summary>
|
1159
|
+
<returns>The current state of the reader.</returns>
|
1160
|
+
</member>
|
1161
|
+
<member name="T:Microsoft.Data.OData.ODataReaderState">
|
1162
|
+
<summary>Enumeration of all possible states of an <see cref="T:Microsoft.Data.OData.ODataReader" />.</summary>
|
1163
|
+
</member>
|
1164
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.Start">
|
1165
|
+
<summary>The reader is at the start; nothing has been read yet.</summary>
|
1166
|
+
</member>
|
1167
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.FeedStart">
|
1168
|
+
<summary>The start of a feed has been read.</summary>
|
1169
|
+
</member>
|
1170
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.FeedEnd">
|
1171
|
+
<summary>The end of a feed has been read.</summary>
|
1172
|
+
</member>
|
1173
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.EntryStart">
|
1174
|
+
<summary>The start of an entry has been read.</summary>
|
1175
|
+
</member>
|
1176
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.EntryEnd">
|
1177
|
+
<summary>The end of an entry has been read.</summary>
|
1178
|
+
</member>
|
1179
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.NavigationLinkStart">
|
1180
|
+
<summary>The start of a navigation link has been read.</summary>
|
1181
|
+
</member>
|
1182
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.NavigationLinkEnd">
|
1183
|
+
<summary>The end of a navigation link has been read.</summary>
|
1184
|
+
</member>
|
1185
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.Exception">
|
1186
|
+
<summary>The reader has thrown an exception; nothing can be read from the reader anymore.</summary>
|
1187
|
+
</member>
|
1188
|
+
<member name="F:Microsoft.Data.OData.ODataReaderState.Completed">
|
1189
|
+
<summary>The reader has completed; nothing can be read anymore.</summary>
|
1190
|
+
</member>
|
1191
|
+
<member name="T:Microsoft.Data.OData.ODataResourceCollectionInfo">
|
1192
|
+
<summary>Represents a class that contains collection of information about a resource in a workspace of a data service.</summary>
|
1193
|
+
</member>
|
1194
|
+
<member name="M:Microsoft.Data.OData.ODataResourceCollectionInfo.#ctor">
|
1195
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataResourceCollectionInfo" /> class.</summary>
|
1196
|
+
</member>
|
1197
|
+
<member name="P:Microsoft.Data.OData.ODataResourceCollectionInfo.Url"></member>
|
1198
|
+
<member name="T:Microsoft.Data.OData.ODataStreamReferenceValue">
|
1199
|
+
<summary>Represents a media resource.</summary>
|
1200
|
+
</member>
|
1201
|
+
<member name="M:Microsoft.Data.OData.ODataStreamReferenceValue.#ctor">
|
1202
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataStreamReferenceValue" /> class.</summary>
|
1203
|
+
</member>
|
1204
|
+
<member name="P:Microsoft.Data.OData.ODataStreamReferenceValue.ContentType">
|
1205
|
+
<summary>Gets or sets the content media type.</summary>
|
1206
|
+
<returns>The content media type.</returns>
|
1207
|
+
</member>
|
1208
|
+
<member name="P:Microsoft.Data.OData.ODataStreamReferenceValue.EditLink">
|
1209
|
+
<summary>Gets or sets the edit link for media resource.</summary>
|
1210
|
+
<returns>The edit link for media resource.</returns>
|
1211
|
+
</member>
|
1212
|
+
<member name="P:Microsoft.Data.OData.ODataStreamReferenceValue.ETag">
|
1213
|
+
<summary>Gets or sets the media resource ETag.</summary>
|
1214
|
+
<returns>The media resource ETag.</returns>
|
1215
|
+
</member>
|
1216
|
+
<member name="P:Microsoft.Data.OData.ODataStreamReferenceValue.ReadLink">
|
1217
|
+
<summary>Gets or sets the read link for media resource.</summary>
|
1218
|
+
<returns>The read link for media resource.</returns>
|
1219
|
+
</member>
|
1220
|
+
<member name="T:Microsoft.Data.OData.ODataUtils">
|
1221
|
+
<summary>Represents the utility methods used with the OData library.</summary>
|
1222
|
+
</member>
|
1223
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetCanReflectOnInstanceType(Microsoft.Data.Edm.IEdmTypeReference)"></member>
|
1224
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetCanReflectOnInstanceTypeProperty(Microsoft.Data.Edm.IEdmProperty)"></member>
|
1225
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetHttpMethod(Microsoft.Data.Edm.IEdmAnnotatable)"></member>
|
1226
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetInstanceType(Microsoft.Data.Edm.IEdmType)"></member>
|
1227
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetInstanceType(Microsoft.Data.Edm.IEdmTypeReference)"></member>
|
1228
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetMimeType(Microsoft.Data.Edm.IEdmAnnotatable)"></member>
|
1229
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.GetServiceOperationResultKind(Microsoft.Data.Edm.IEdmFunctionImport)"></member>
|
1230
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.HasDefaultStream(Microsoft.Data.Edm.IEdmEntityType)"></member>
|
1231
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.IsDefaultEntityContainer(Microsoft.Data.Edm.IEdmEntityContainer)"></member>
|
1232
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.LoadODataAnnotations(Microsoft.Data.Edm.IEdmEntityType)"></member>
|
1233
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.LoadODataAnnotations(Microsoft.Data.Edm.IEdmModel)"></member>
|
1234
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.ODataVersionToString(Microsoft.Data.OData.ODataVersion)"></member>
|
1235
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.ResolveEntitySet(Microsoft.Data.Edm.IEdmModel,System.String)"></member>
|
1236
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.ResolveServiceOperation(Microsoft.Data.Edm.IEdmModel,System.String)"></member>
|
1237
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SaveODataAnnotations(Microsoft.Data.Edm.IEdmEntityType)"></member>
|
1238
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SaveODataAnnotations(Microsoft.Data.Edm.IEdmModel)"></member>
|
1239
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetCanReflectOnInstanceType(Microsoft.Data.Edm.IEdmType,System.Boolean)"></member>
|
1240
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetCanReflectOnInstanceType(Microsoft.Data.Edm.IEdmTypeReference,System.Boolean)"></member>
|
1241
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetCanReflectOnInstanceTypeProperty(Microsoft.Data.Edm.IEdmProperty,System.Boolean)"></member>
|
1242
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetHasDefaultStream(Microsoft.Data.Edm.IEdmEntityType,System.Boolean)"></member>
|
1243
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetHeadersForPayload(Microsoft.Data.OData.ODataMessageWriter,Microsoft.Data.OData.ODataPayloadKind)">
|
1244
|
+
<summary>Sets the content-type and data service version headers on the message used by the message writer. This method can be called if it is important to set all the message headers before calling any of the write methods on the <paramref name="messageWriter" />. If it is sufficient to set the headers when the write methods on the <paramref name="messageWriter" /> are called, you don't have to call this method and setting the headers will happen automatically.</summary>
|
1245
|
+
<param name="messageWriter">The message writer to set the headers for.</param>
|
1246
|
+
<param name="payloadKind">The kind of payload to be written with the message writer.</param>
|
1247
|
+
</member>
|
1248
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetHeadersForPayload(Microsoft.Data.OData.ODataMessageWriter,Microsoft.Data.OData.ODataPayloadKind,System.String)">
|
1249
|
+
<summary>Sets the content-type and data service version headers on the message used by the message writer. This method can be called if it is important to set all the message headers before calling any of the write methods on the <paramref name="messageWriter" />. If it is sufficient to set the headers when the write methods on the <paramref name="messageWriter" /> are called, you don't have to call this method and setting the headers will happen automatically.</summary>
|
1250
|
+
<param name="messageWriter">The message writer to set the headers for.</param>
|
1251
|
+
<param name="payloadKind">The kind of payload to be written with the message writer.</param>
|
1252
|
+
<param name="mimeType">The MIME type to be used for writing the content of the message. Note that this is only supported for top-level raw values.</param>
|
1253
|
+
</member>
|
1254
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetHttpMethod(Microsoft.Data.Edm.IEdmAnnotatable,System.String)"></member>
|
1255
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetInstanceType(Microsoft.Data.Edm.IEdmType,System.Type)"></member>
|
1256
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetIsDefaultEntityContainer(Microsoft.Data.Edm.IEdmEntityContainer,System.Boolean)"></member>
|
1257
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetMimeType(Microsoft.Data.Edm.IEdmAnnotatable,System.String)"></member>
|
1258
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.SetServiceOperationResultKind(Microsoft.Data.Edm.IEdmFunctionImport,Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind)"></member>
|
1259
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.StringToODataVersion(System.String)"></member>
|
1260
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.TryResolveEntitySet(Microsoft.Data.Edm.IEdmModel,System.String)"></member>
|
1261
|
+
<member name="M:Microsoft.Data.OData.ODataUtils.TryResolveServiceOperation(Microsoft.Data.Edm.IEdmModel,System.String)"></member>
|
1262
|
+
<member name="T:Microsoft.Data.OData.ODataVersion">
|
1263
|
+
<summary>Specifies the OData protocol version.</summary>
|
1264
|
+
</member>
|
1265
|
+
<member name="F:Microsoft.Data.OData.ODataVersion.V1">
|
1266
|
+
<summary>The version 1.0.</summary>
|
1267
|
+
</member>
|
1268
|
+
<member name="F:Microsoft.Data.OData.ODataVersion.V2">
|
1269
|
+
<summary>The version 2.0.</summary>
|
1270
|
+
</member>
|
1271
|
+
<member name="F:Microsoft.Data.OData.ODataVersion.V3">
|
1272
|
+
<summary>The version 3.0.</summary>
|
1273
|
+
</member>
|
1274
|
+
<member name="T:Microsoft.Data.OData.ODataWorkspace">
|
1275
|
+
<summary>Represents the workspace of a data service.</summary>
|
1276
|
+
</member>
|
1277
|
+
<member name="M:Microsoft.Data.OData.ODataWorkspace.#ctor">
|
1278
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataWorkspace" /> class.</summary>
|
1279
|
+
</member>
|
1280
|
+
<member name="P:Microsoft.Data.OData.ODataWorkspace.Collections">
|
1281
|
+
<summary>Gets or sets the set of collections in the workspace.</summary>
|
1282
|
+
<returns>The set of collections in the workspace.</returns>
|
1283
|
+
</member>
|
1284
|
+
<member name="T:Microsoft.Data.OData.ODataWriter">
|
1285
|
+
<summary>Represents a base class for OData writers.</summary>
|
1286
|
+
</member>
|
1287
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.#ctor">
|
1288
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ODataWriter" /> class.</summary>
|
1289
|
+
</member>
|
1290
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.DisposeWriterImplementation">
|
1291
|
+
<summary>Implements the disposal of unmanaged resources.</summary>
|
1292
|
+
</member>
|
1293
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.Flush">
|
1294
|
+
<summary>Flushes the write buffer to the underlying stream.</summary>
|
1295
|
+
</member>
|
1296
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.FlushAsync">
|
1297
|
+
<summary>Flushes the write buffer to the underlying stream asynchronously.</summary>
|
1298
|
+
<returns>A task instance that represents the asynchronous operation.</returns>
|
1299
|
+
</member>
|
1300
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteEnd">
|
1301
|
+
<summary>Finishes the writing of a feed/entry/navigation link.</summary>
|
1302
|
+
</member>
|
1303
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteEndAsync">
|
1304
|
+
<summary> Asynchronously finish writing a feed/entry/navigation link. </summary>
|
1305
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
1306
|
+
</member>
|
1307
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteErrorImplementation(Microsoft.Data.OData.ODataError,System.Boolean)">
|
1308
|
+
<summary>Writes an OData error.</summary>
|
1309
|
+
<param name="errorInstance">The error information to write.</param>
|
1310
|
+
<param name="includeDebugInformation">If in debug mode error details will be included (if present).</param>
|
1311
|
+
</member>
|
1312
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteStart(Microsoft.Data.OData.ODataEntry)">
|
1313
|
+
<summary>Starts the writing of an entry.</summary>
|
1314
|
+
<param name="entry">The entry/item to write.</param>
|
1315
|
+
</member>
|
1316
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteStart(Microsoft.Data.OData.ODataFeed)">
|
1317
|
+
<summary>Starts the writing of a feed.</summary>
|
1318
|
+
<param name="feed">The feed/collection to write.</param>
|
1319
|
+
</member>
|
1320
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteStart(Microsoft.Data.OData.ODataNavigationLink)">
|
1321
|
+
<summary>Starts the writing of a navigation link.</summary>
|
1322
|
+
<param name="navigationLink">The navigation link to write.</param>
|
1323
|
+
</member>
|
1324
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteStartAsync(Microsoft.Data.OData.ODataEntry)">
|
1325
|
+
<summary> Asynchronously start writing an entry. </summary>
|
1326
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
1327
|
+
<param name="entry">Entry/item to write.</param>
|
1328
|
+
</member>
|
1329
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteStartAsync(Microsoft.Data.OData.ODataFeed)">
|
1330
|
+
<summary> Asynchronously start writing a feed. </summary>
|
1331
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
1332
|
+
<param name="feed">Feed/collection to write.</param>
|
1333
|
+
</member>
|
1334
|
+
<member name="M:Microsoft.Data.OData.ODataWriter.WriteStartAsync(Microsoft.Data.OData.ODataNavigationLink)">
|
1335
|
+
<summary> Asynchronously start writing a navigation link. </summary>
|
1336
|
+
<returns>A task instance that represents the asynchronous write operation.</returns>
|
1337
|
+
<param name="navigationLink">Navigation link to writer.</param>
|
1338
|
+
</member>
|
1339
|
+
<member name="T:Microsoft.Data.OData.ProjectedPropertiesAnnotation">
|
1340
|
+
<summary>Represents an annotation which stores a list of projected properties for an entry.</summary>
|
1341
|
+
</member>
|
1342
|
+
<member name="M:Microsoft.Data.OData.ProjectedPropertiesAnnotation.#ctor(System.Collections.Generic.IEnumerable{System.String})">
|
1343
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.ProjectedPropertiesAnnotation" /> class.</summary>
|
1344
|
+
<param name="projectedPropertyNames">The enumeration of projected property names.</param>
|
1345
|
+
</member>
|
1346
|
+
<member name="T:Microsoft.Data.OData.SerializationTypeNameAnnotation">
|
1347
|
+
<summary> Annotation which stores the type name to serialize. </summary>
|
1348
|
+
</member>
|
1349
|
+
<member name="M:Microsoft.Data.OData.SerializationTypeNameAnnotation.#ctor">
|
1350
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.SerializationTypeNameAnnotation" /> class.</summary>
|
1351
|
+
</member>
|
1352
|
+
<member name="P:Microsoft.Data.OData.SerializationTypeNameAnnotation.TypeName">
|
1353
|
+
<summary> The type name to serialize, for the annotated item. </summary>
|
1354
|
+
</member>
|
1355
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomCategoriesMetadata">
|
1356
|
+
<summary> Atom metadata description for a categories element (app:categories). </summary>
|
1357
|
+
</member>
|
1358
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomCategoriesMetadata.#ctor">
|
1359
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomCategoriesMetadata" /> class.</summary>
|
1360
|
+
</member>
|
1361
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoriesMetadata.Categories">
|
1362
|
+
<summary> Atom category elements inside this categories element. </summary>
|
1363
|
+
</member>
|
1364
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoriesMetadata.Fixed">
|
1365
|
+
<summary> Specified if the list of categories is fixed or an open set. </summary>
|
1366
|
+
</member>
|
1367
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoriesMetadata.Href">
|
1368
|
+
<summary> The IRI of the category document. </summary>
|
1369
|
+
</member>
|
1370
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoriesMetadata.Scheme">
|
1371
|
+
<summary> The IRI indicating the scheme of the categories without a scheme. </summary>
|
1372
|
+
</member>
|
1373
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomCategoryMetadata">
|
1374
|
+
<summary>Represents an Atom metadata description for a category.</summary>
|
1375
|
+
</member>
|
1376
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomCategoryMetadata.#ctor">
|
1377
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomCategoryMetadata" /> class.</summary>
|
1378
|
+
</member>
|
1379
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoryMetadata.Label">
|
1380
|
+
<summary>Gets or sets a human-readable label for display in user interfaces.</summary>
|
1381
|
+
<returns>A human-readable label.</returns>
|
1382
|
+
</member>
|
1383
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoryMetadata.Scheme">
|
1384
|
+
<summary>Gets or sets the IRI that indicates the scheme of the category.</summary>
|
1385
|
+
<returns>The IRI that indicates the scheme of the category.</returns>
|
1386
|
+
</member>
|
1387
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomCategoryMetadata.Term">
|
1388
|
+
<summary>Gets or sets the string value identifying the category.</summary>
|
1389
|
+
<returns>The string value identifying the category.</returns>
|
1390
|
+
</member>
|
1391
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomEntryMetadata">
|
1392
|
+
<summary>Represents a type for Atom Syndication Format (Atom) entry annotationsAsArray.</summary>
|
1393
|
+
</member>
|
1394
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomEntryMetadata.#ctor">
|
1395
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomEntryMetadata" /> class.</summary>
|
1396
|
+
</member>
|
1397
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Authors">
|
1398
|
+
<summary>Gets or sets a collection of authors of an entry.</summary>
|
1399
|
+
<returns>A collection of authors of an entry.</returns>
|
1400
|
+
</member>
|
1401
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Categories">
|
1402
|
+
<summary>Gets or sets the categories of an entry.</summary>
|
1403
|
+
<returns>The categories of an entry.</returns>
|
1404
|
+
</member>
|
1405
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Contributors">
|
1406
|
+
<summary>Gets or sets a collection of contributors of an entry.</summary>
|
1407
|
+
<returns>A collection of contributors of an entry.</returns>
|
1408
|
+
</member>
|
1409
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.EditLink">
|
1410
|
+
<summary>Gets or sets an Atom link metadata for the edit link.</summary>
|
1411
|
+
<returns>An Atom link metadata for the edit link.</returns>
|
1412
|
+
</member>
|
1413
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Icon">
|
1414
|
+
<summary>Get or sets the URI of the icon for an entry.</summary>
|
1415
|
+
<returns>The URI of the icon for an entry.</returns>
|
1416
|
+
</member>
|
1417
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Links">
|
1418
|
+
<summary>Gets or sets the collection of all Atom link information except for the self/edit links and the navigation property links.</summary>
|
1419
|
+
<returns>The collection of all Atom link information except for the self/edit links and the navigation property links.</returns>
|
1420
|
+
</member>
|
1421
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Published">
|
1422
|
+
<summary>Gets or sets the date/time when the entry was published.</summary>
|
1423
|
+
<returns>The date/time when the entry was published.</returns>
|
1424
|
+
</member>
|
1425
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Rights">
|
1426
|
+
<summary>Gets or sets the rights text of an entry.</summary>
|
1427
|
+
<returns>The rights text of an entry.</returns>
|
1428
|
+
</member>
|
1429
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.SelfLink">
|
1430
|
+
<summary>Gets or sets an Atom link metadata for the self link.</summary>
|
1431
|
+
<returns>An Atom link metadata for the self link.</returns>
|
1432
|
+
</member>
|
1433
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Source">
|
1434
|
+
<summary>Gets or sets the source of an entry and if the entry was copied from a different stream the property contains the feed metadata of the original feed.</summary>
|
1435
|
+
<returns>The source of an entry.</returns>
|
1436
|
+
</member>
|
1437
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Summary">
|
1438
|
+
<summary>Gets or sets the summary of the entry.</summary>
|
1439
|
+
<returns>The summary of the entry.</returns>
|
1440
|
+
</member>
|
1441
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Title">
|
1442
|
+
<summary>Gets or sets the title of the entry.</summary>
|
1443
|
+
<returns>The title of the entry.</returns>
|
1444
|
+
</member>
|
1445
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomEntryMetadata.Updated">
|
1446
|
+
<summary>Gets or sets the date/time of last update to the source.</summary>
|
1447
|
+
<returns>The date/time of last update to the source.</returns>
|
1448
|
+
</member>
|
1449
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomFeedMetadata">
|
1450
|
+
<summary>Represents a type for Atom Syndication Format (Atom) feed annotationsAsArray.</summary>
|
1451
|
+
</member>
|
1452
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomFeedMetadata.#ctor">
|
1453
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomFeedMetadata" /> class.</summary>
|
1454
|
+
</member>
|
1455
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Authors">
|
1456
|
+
<summary>Gets or sets a collection of authors of a feed.</summary>
|
1457
|
+
<returns>A collection of authors of a feed.</returns>
|
1458
|
+
</member>
|
1459
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Categories">
|
1460
|
+
<summary>Gets or sets the categories of a feed.</summary>
|
1461
|
+
<returns>The categories of a feed.</returns>
|
1462
|
+
</member>
|
1463
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Contributors">
|
1464
|
+
<summary>Gets or sets a collection of contributors of a feed.</summary>
|
1465
|
+
<returns>A collection of contributors of a feed.</returns>
|
1466
|
+
</member>
|
1467
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Generator">
|
1468
|
+
<summary>Gets or sets the generator of a feed.</summary>
|
1469
|
+
<returns>The generator of a feed.</returns>
|
1470
|
+
</member>
|
1471
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Icon">
|
1472
|
+
<summary>Gets or sets the URI of the icon for a feed.</summary>
|
1473
|
+
<returns>The URI of the icon for a feed.</returns>
|
1474
|
+
</member>
|
1475
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Links">
|
1476
|
+
<summary>Gets or sets the collection of all Atom link information except for the next page and self links.</summary>
|
1477
|
+
<returns>The collection of all Atom link information except for the next page and self links.</returns>
|
1478
|
+
</member>
|
1479
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Logo">
|
1480
|
+
<summary>Gets or sets the URI for the feed's logo.</summary>
|
1481
|
+
<returns>The URI for the feed’s logo.</returns>
|
1482
|
+
</member>
|
1483
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Rights">
|
1484
|
+
<summary>Gets or sets the rights text of a feed.</summary>
|
1485
|
+
<returns>The rights text of a feed.</returns>
|
1486
|
+
</member>
|
1487
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.SelfLink">
|
1488
|
+
<summary>Gets or sets the self link of the feed. This link should point to the source of the feed.</summary>
|
1489
|
+
<returns>The self link of the feed.</returns>
|
1490
|
+
</member>
|
1491
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.SourceId">
|
1492
|
+
<summary>Gets or sets the identifier for the feed if used as metadata of an Atom:source element.</summary>
|
1493
|
+
<returns>The identifier for the feed if used as metadata of an Atom:source element.</returns>
|
1494
|
+
</member>
|
1495
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Subtitle">
|
1496
|
+
<summary>Gets or sets the subtitle of a feed.</summary>
|
1497
|
+
<returns>The subtitle of a feed.</returns>
|
1498
|
+
</member>
|
1499
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Title">
|
1500
|
+
<summary>Gets or sets the title of the feed.</summary>
|
1501
|
+
<returns>The title of the feed.</returns>
|
1502
|
+
</member>
|
1503
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomFeedMetadata.Updated">
|
1504
|
+
<summary>Gets or sets the date/time of last update to the source.</summary>
|
1505
|
+
<returns>The date/time of last update to the source.</returns>
|
1506
|
+
</member>
|
1507
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomGeneratorMetadata">
|
1508
|
+
<summary>Represents an Atom metadata description of a content generator.</summary>
|
1509
|
+
</member>
|
1510
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomGeneratorMetadata.#ctor">
|
1511
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomGeneratorMetadata" /> class.</summary>
|
1512
|
+
</member>
|
1513
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomGeneratorMetadata.Name">
|
1514
|
+
<summary>Gets or sets the human readable name of the generator of the content.</summary>
|
1515
|
+
<returns>The human readable name of the generator of the content.</returns>
|
1516
|
+
</member>
|
1517
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomGeneratorMetadata.Uri">
|
1518
|
+
<summary>Gets or sets the (optional) IRI describing the generator of the content.</summary>
|
1519
|
+
<returns>The (optional) IRI describing the generator of the content.</returns>
|
1520
|
+
</member>
|
1521
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomGeneratorMetadata.Version">
|
1522
|
+
<summary>Gets or sets the (optional) version of the generator.</summary>
|
1523
|
+
<returns>The (optional) version of the generator.</returns>
|
1524
|
+
</member>
|
1525
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomLinkMetadata">
|
1526
|
+
<summary>Represents an Atom metadata description for a link.</summary>
|
1527
|
+
</member>
|
1528
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomLinkMetadata.#ctor">
|
1529
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomLinkMetadata" /> class.</summary>
|
1530
|
+
</member>
|
1531
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomLinkMetadata.Href">
|
1532
|
+
<summary>Gets or sets the IRI of the link.</summary>
|
1533
|
+
<returns>The IRI of the link.</returns>
|
1534
|
+
</member>
|
1535
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomLinkMetadata.HrefLang">
|
1536
|
+
<summary>Gets or sets the language tag (e.g., en-US) of the resource pointed to by the link.</summary>
|
1537
|
+
<returns>The language tag of the resource pointed to by the link.</returns>
|
1538
|
+
</member>
|
1539
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomLinkMetadata.Length">
|
1540
|
+
<summary>Gets or sets a hint at the length of the content returned from the link.</summary>
|
1541
|
+
<returns>A hint at the length of the content returned from the link.</returns>
|
1542
|
+
</member>
|
1543
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomLinkMetadata.MediaType">
|
1544
|
+
<summary>Gets or sets the media type of the data returned by the link.</summary>
|
1545
|
+
<returns>The media type of the data returned by the link.</returns>
|
1546
|
+
</member>
|
1547
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomLinkMetadata.Relation">
|
1548
|
+
<summary>Gets or sets the link's relation type.</summary>
|
1549
|
+
<returns>The link’s relation type.</returns>
|
1550
|
+
</member>
|
1551
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomLinkMetadata.Title">
|
1552
|
+
<summary>Gets or sets a human-readable description of the link.</summary>
|
1553
|
+
<returns>A human-readable description of the link.</returns>
|
1554
|
+
</member>
|
1555
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomPersonMetadata">
|
1556
|
+
<summary>Represents an Atom metadata description for a person.</summary>
|
1557
|
+
</member>
|
1558
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomPersonMetadata.#ctor">
|
1559
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomPersonMetadata" /> class.</summary>
|
1560
|
+
</member>
|
1561
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomPersonMetadata.Email">
|
1562
|
+
<summary>Gets or sets an email address associated with the person.</summary>
|
1563
|
+
<returns>An email address associated with the person.</returns>
|
1564
|
+
</member>
|
1565
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomPersonMetadata.Name">
|
1566
|
+
<summary>Gets or sets the name of the person (required).</summary>
|
1567
|
+
<returns>The name of the person (required).</returns>
|
1568
|
+
</member>
|
1569
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomPersonMetadata.Uri">
|
1570
|
+
<summary>Gets or sets an IRI associated with the person.</summary>
|
1571
|
+
<returns>An IRI associated with the person.</returns>
|
1572
|
+
</member>
|
1573
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata">
|
1574
|
+
<summary>Represents an Atom metadata description for a collection (in a workspace).</summary>
|
1575
|
+
</member>
|
1576
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata.#ctor">
|
1577
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata" /> class.</summary>
|
1578
|
+
</member>
|
1579
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata.Accept">
|
1580
|
+
<summary>The accept range of media types for this collection.</summary>
|
1581
|
+
<returns>Returns <see cref="T:System.String" />.</returns>
|
1582
|
+
</member>
|
1583
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata.Categories">
|
1584
|
+
<summary>The categories for this collection.</summary>
|
1585
|
+
<returns>Returns <see cref="T:Microsoft.Data.OData.Atom.AtomCategoriesMetadata" />.</returns>
|
1586
|
+
</member>
|
1587
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata.Title">
|
1588
|
+
<summary>Gets or sets the title of the collection.</summary>
|
1589
|
+
<returns>The title of the collection.</returns>
|
1590
|
+
</member>
|
1591
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomStreamReferenceMetadata">
|
1592
|
+
<summary>Represents an Atom metadata for stream reference values.</summary>
|
1593
|
+
</member>
|
1594
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomStreamReferenceMetadata.#ctor">
|
1595
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomStreamReferenceMetadata" /> class.</summary>
|
1596
|
+
</member>
|
1597
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomStreamReferenceMetadata.EditLink">
|
1598
|
+
<summary>Gets or sets an Atom link metadata for the edit link.</summary>
|
1599
|
+
<returns>An Atom link metadata for the edit link.</returns>
|
1600
|
+
</member>
|
1601
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomStreamReferenceMetadata.SelfLink">
|
1602
|
+
<summary>Gets or sets an Atom link metadata for the self link.</summary>
|
1603
|
+
<returns>An Atom link metadata for the self link.</returns>
|
1604
|
+
</member>
|
1605
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomTextConstruct">
|
1606
|
+
<summary>Represents an Atom metadata description for a text construct (plain text, html or xhtml).</summary>
|
1607
|
+
</member>
|
1608
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomTextConstruct.#ctor">
|
1609
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomTextConstruct" /> class.</summary>
|
1610
|
+
</member>
|
1611
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomTextConstruct.Kind">
|
1612
|
+
<summary>Gets or sets the kind of the text construct (plain text, html, xhtml).</summary>
|
1613
|
+
<returns>The kind of the text construct.</returns>
|
1614
|
+
</member>
|
1615
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomTextConstruct.Text">
|
1616
|
+
<summary>Gets or sets the text content.</summary>
|
1617
|
+
<returns>The text content.</returns>
|
1618
|
+
</member>
|
1619
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomTextConstructKind">
|
1620
|
+
<summary>Specifies the different kinds of text content in Atom metadata.</summary>
|
1621
|
+
</member>
|
1622
|
+
<member name="F:Microsoft.Data.OData.Atom.AtomTextConstructKind.Text">
|
1623
|
+
<summary>The plain text.</summary>
|
1624
|
+
</member>
|
1625
|
+
<member name="F:Microsoft.Data.OData.Atom.AtomTextConstructKind.Html">
|
1626
|
+
<summary>The html text.</summary>
|
1627
|
+
</member>
|
1628
|
+
<member name="F:Microsoft.Data.OData.Atom.AtomTextConstructKind.Xhtml">
|
1629
|
+
<summary>The xhtml text.</summary>
|
1630
|
+
</member>
|
1631
|
+
<member name="T:Microsoft.Data.OData.Atom.AtomWorkspaceMetadata">
|
1632
|
+
<summary>Represents an Atom metadata description for a workspace.</summary>
|
1633
|
+
</member>
|
1634
|
+
<member name="M:Microsoft.Data.OData.Atom.AtomWorkspaceMetadata.#ctor">
|
1635
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Atom.AtomWorkspaceMetadata" /> class.</summary>
|
1636
|
+
</member>
|
1637
|
+
<member name="P:Microsoft.Data.OData.Atom.AtomWorkspaceMetadata.Title">
|
1638
|
+
<summary>Gets or sets the title of the workspace.</summary>
|
1639
|
+
<returns>The title of the workspace.</returns>
|
1640
|
+
</member>
|
1641
|
+
<member name="T:Microsoft.Data.OData.Atom.ExtensionMethods">
|
1642
|
+
<summary>Represents the Atom-specific extension methods.</summary>
|
1643
|
+
</member>
|
1644
|
+
<member name="M:Microsoft.Data.OData.Atom.ExtensionMethods.Atom(Microsoft.Data.OData.ODataAssociationLink)">
|
1645
|
+
<summary>Determines an extension method to get the <see cref="T:Microsoft.Data.OData.Atom.AtomLinkMetadata" /> for an association link.</summary>
|
1646
|
+
<returns>An <see cref="T:Microsoft.Data.OData.Atom.AtomLinkMetadata" /> instance or null if no annotation of that type exists.</returns>
|
1647
|
+
<param name="associationLink">The association link to get the annotation from.</param>
|
1648
|
+
</member>
|
1649
|
+
<member name="M:Microsoft.Data.OData.Atom.ExtensionMethods.Atom(Microsoft.Data.OData.ODataEntry)">
|
1650
|
+
<summary>Determines an extension method to get the <see cref="T:Microsoft.Data.OData.Atom.AtomEntryMetadata" /> annotation for an annotatable entry.</summary>
|
1651
|
+
<returns>An <see cref="T:Microsoft.Data.OData.Atom.AtomEntryMetadata" /> instance or null if no annotation of that type exists.</returns>
|
1652
|
+
<param name="entry">The entry instance to get the annotation from.</param>
|
1653
|
+
</member>
|
1654
|
+
<member name="M:Microsoft.Data.OData.Atom.ExtensionMethods.Atom(Microsoft.Data.OData.ODataFeed)">
|
1655
|
+
<summary>Determines an extension method to get the <see cref="T:Microsoft.Data.OData.Atom.AtomFeedMetadata" /> for an annotatable feed.</summary>
|
1656
|
+
<returns>An <see cref="T:Microsoft.Data.OData.Atom.AtomFeedMetadata" /> instance or null if no annotation of that type exists.</returns>
|
1657
|
+
<param name="feed">The feed instance to get the annotation from.</param>
|
1658
|
+
</member>
|
1659
|
+
<member name="M:Microsoft.Data.OData.Atom.ExtensionMethods.Atom(Microsoft.Data.OData.ODataNavigationLink)">
|
1660
|
+
<summary>Determines an extension method to get the <see cref="T:Microsoft.Data.OData.Atom.AtomLinkMetadata" /> for an annotatable navigation link.</summary>
|
1661
|
+
<returns>An <see cref="T:Microsoft.Data.OData.Atom.AtomLinkMetadata" /> instance or null if no annotation of that type exists.</returns>
|
1662
|
+
<param name="navigationLink">The navigation link instance to get the annotation from.</param>
|
1663
|
+
</member>
|
1664
|
+
<member name="M:Microsoft.Data.OData.Atom.ExtensionMethods.Atom(Microsoft.Data.OData.ODataResourceCollectionInfo)">
|
1665
|
+
<summary>Determines an extension method to get the <see cref="T:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata" /> for an annotatable (resource) collection.</summary>
|
1666
|
+
<returns>An <see cref="T:Microsoft.Data.OData.Atom.AtomResourceCollectionMetadata" /> instance or null if no annotation of that type exists.</returns>
|
1667
|
+
<param name="collection">The (resource) collection to get the annotation from.</param>
|
1668
|
+
</member>
|
1669
|
+
<member name="M:Microsoft.Data.OData.Atom.ExtensionMethods.Atom(Microsoft.Data.OData.ODataWorkspace)">
|
1670
|
+
<summary>Determines an extension method to get the <see cref="T:System.Data.OData.Atom.AtomWorkspaceMetadata" /> for an annotatable workspace.</summary>
|
1671
|
+
<returns>An <see cref="T:Microsoft.Data.OData.Atom.AtomWorkspaceMetadata" /> instance or null if no annotation of that type exists.</returns>
|
1672
|
+
<param name="workspace">The workspace to get the annotation from.</param>
|
1673
|
+
</member>
|
1674
|
+
<member name="T:Microsoft.Data.OData.Metadata.EdmLibraryExtensions">
|
1675
|
+
<summary>Class with code that will eventually live in EdmLib. </summary>
|
1676
|
+
</member>
|
1677
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.Clone(Microsoft.Data.Edm.IEdmTypeReference,System.Boolean)">
|
1678
|
+
<summary> Clones the specified type reference. </summary>
|
1679
|
+
<returns>The cloned <see cref="T:Microsoft.Data.Edm.IEdmTypeReference" /> instance.</returns>
|
1680
|
+
<param name="typeReference">The type reference to clone.</param>
|
1681
|
+
<param name="nullable">true to make the cloned type reference nullable; false to make it non-nullable.</param>
|
1682
|
+
</member>
|
1683
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ContainsProperty(Microsoft.Data.Edm.IEdmType,Microsoft.Data.Edm.IEdmProperty)">
|
1684
|
+
<summary> Checks whether the specified property is defined for the type type. </summary>
|
1685
|
+
<returns>true if the property is defined for the type; otherwise false.</returns>
|
1686
|
+
<param name="type">The type to check the properties on.</param>
|
1687
|
+
<param name="property">The property to check for.</param>
|
1688
|
+
</member>
|
1689
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ContainsProperty(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmProperty)">
|
1690
|
+
<summary> Checks whether the specified property is defined for the type typeReference. </summary>
|
1691
|
+
<returns>true if the property is defined for the typeReference; otherwise false.</returns>
|
1692
|
+
<param name="typeReference">The type to check the properties on.</param>
|
1693
|
+
<param name="property">The property to check for.</param>
|
1694
|
+
</member>
|
1695
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.EntityTypes(Microsoft.Data.Edm.IEdmModel)">
|
1696
|
+
<summary> Returns all the entity types in a model. </summary>
|
1697
|
+
<returns>An enumerable of all <see cref="T:Microsoft.Data.Edm.IEdmEntityType" /> instances in the model.</returns>
|
1698
|
+
<param name="model">The <see cref="T:Microsoft.Data.Edm.IEdmModel" /> to get the entity types for (must not be null).</param>
|
1699
|
+
</member>
|
1700
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.GetMultiValueItemType(Microsoft.Data.Edm.IEdmTypeReference)">
|
1701
|
+
<summary> Get the <see cref="T:Microsoft.Data.Edm.IEdmEntityTypeReference" /> of the item type of the typeReference. </summary>
|
1702
|
+
<returns>The item type of the typeReference.</returns>
|
1703
|
+
<param name="typeReference">The multi value type to get the item type for.</param>
|
1704
|
+
</member>
|
1705
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.GetMultiValueType(Microsoft.Data.Edm.IEdmType)">
|
1706
|
+
<summary> Returns the IEdmCollectionType implementation with the given IEdmTypeReference as element type. </summary>
|
1707
|
+
<returns>An <see cref="T:Microsoft.Data.Edm.IEdmCollectionType" /> instance using the itemType as MultiValue item type.</returns>
|
1708
|
+
<param name="itemType">IEdmTypeReference instance which is the element type.</param>
|
1709
|
+
</member>
|
1710
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.GetPrimitiveTypeReference(System.Type)">
|
1711
|
+
<summary> Returns the primitive type reference for the given Clr type. </summary>
|
1712
|
+
<returns>The primitive type reference for the given Clr type.</returns>
|
1713
|
+
<param name="clrType">The Clr type to resolve.</param>
|
1714
|
+
</member>
|
1715
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.IsAssignableFrom(Microsoft.Data.Edm.IEdmStructuredType,Microsoft.Data.Edm.IEdmStructuredType)">
|
1716
|
+
<summary> Checks if the baseType is assignable to subtype. In other words, if subtype is a subtype of baseType or not. </summary>
|
1717
|
+
<returns>true, if the baseType is assignable to subtype. Otherwise returns false.</returns>
|
1718
|
+
<param name="baseType">Type of the base type.</param>
|
1719
|
+
<param name="subtype">Type of the sub type.</param>
|
1720
|
+
</member>
|
1721
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.IsGeographyType(Microsoft.Data.Edm.IEdmPrimitiveType)">
|
1722
|
+
<summary> Checks if the primitive type is a geography type. </summary>
|
1723
|
+
<returns>true, if the primitiveType is a geography type.</returns>
|
1724
|
+
<param name="primitiveType">The type to check.</param>
|
1725
|
+
</member>
|
1726
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.IsOpenType(Microsoft.Data.Edm.IEdmType)">
|
1727
|
+
<summary> Determines whether the provided type is an open type. </summary>
|
1728
|
+
<returns>true if the type is an open type; otherwise false.</returns>
|
1729
|
+
<param name="type">The type to check.</param>
|
1730
|
+
</member>
|
1731
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.IsStream(Microsoft.Data.Edm.IEdmType)">
|
1732
|
+
<summary> Determines whether the provided type is a stream. </summary>
|
1733
|
+
<returns>true if the type represents a stream; otherwise false.</returns>
|
1734
|
+
<param name="type">The type to check.</param>
|
1735
|
+
</member>
|
1736
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ToMultiValueTypeReference(Microsoft.Data.Edm.IEdmComplexTypeReference)">
|
1737
|
+
<summary> Creates a multi value type for the specified itemTypeReference. </summary>
|
1738
|
+
<returns>The created <see cref="T:Microsoft.Data.Edm.IEdmCollectionTypeReference" />.</returns>
|
1739
|
+
<param name="itemTypeReference">The <see cref="T:Microsoft.Data.Edm.IEdmComplexTypeReference" /> for the item type.</param>
|
1740
|
+
</member>
|
1741
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ToMultiValueTypeReference(Microsoft.Data.Edm.IEdmPrimitiveTypeReference)">
|
1742
|
+
<summary> Creates a multi value type for the specified itemTypeReference. </summary>
|
1743
|
+
<returns>The created <see cref="T:Microsoft.Data.Edm.IEdmCollectionTypeReference" />.</returns>
|
1744
|
+
<param name="itemTypeReference">The <see cref="T:Microsoft.Data.Edm.IEdmPrimitiveTypeReference" /> for the item type.</param>
|
1745
|
+
</member>
|
1746
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ToTypeReference(Microsoft.Data.Edm.IEdmType)">
|
1747
|
+
<summary> Turns a <see cref="T:Microsoft.Data.Edm.IEdmType" /> into the corresponding non-nullable <see cref="T:Microsoft.Data.Edm.IEdmType" />. </summary>
|
1748
|
+
<returns>A non-nullable type reference for the type.</returns>
|
1749
|
+
<param name="type">The type to convert.</param>
|
1750
|
+
</member>
|
1751
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ToTypeReference(Microsoft.Data.Edm.IEdmType,System.Boolean)">
|
1752
|
+
<summary> Turns a <see cref="T:Microsoft.Data.Edm.IEdmType" /> into the corresponding <see cref="T:Microsoft.Data.Edm.IEdmType" />. </summary>
|
1753
|
+
<returns>A type reference for the type.</returns>
|
1754
|
+
<param name="type">The type to convert.</param>
|
1755
|
+
<param name="nullable">true if the returned type reference should be nullable; otherwise false.</param>
|
1756
|
+
</member>
|
1757
|
+
<member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.TryGetPrimitiveTypeName(System.Object,System.String@)">
|
1758
|
+
<summary> Try to determine the primitive type of the value argument and return the name of the primitive type. </summary>
|
1759
|
+
<returns>True if the value is of a known primitive type; otherwise false.</returns>
|
1760
|
+
<param name="value">The value to determine the type for.</param>
|
1761
|
+
<param name="typeName">The name of the primitive type of the value.</param>
|
1762
|
+
</member>
|
1763
|
+
<member name="T:Microsoft.Data.OData.Metadata.ODataEdmPropertyAnnotation">
|
1764
|
+
<summary> Annotation to hold information for a particular property. </summary>
|
1765
|
+
</member>
|
1766
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEdmPropertyAnnotation.#ctor">
|
1767
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Metadata.ODataEdmPropertyAnnotation" /> class.</summary>
|
1768
|
+
</member>
|
1769
|
+
<member name="P:Microsoft.Data.OData.Metadata.ODataEdmPropertyAnnotation.CanReflectOnProperty">
|
1770
|
+
<summary> true if reflection over the property is allowed; otherwise false. </summary>
|
1771
|
+
</member>
|
1772
|
+
<member name="T:Microsoft.Data.OData.Metadata.ODataEdmServiceOperationAnnotation">
|
1773
|
+
<summary> In-memory annotation class to associate a result kind with a service operation. </summary>
|
1774
|
+
</member>
|
1775
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEdmServiceOperationAnnotation.#ctor">
|
1776
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Metadata.ODataEdmServiceOperationAnnotation" /> class.</summary>
|
1777
|
+
</member>
|
1778
|
+
<member name="P:Microsoft.Data.OData.Metadata.ODataEdmServiceOperationAnnotation.ResultKind">
|
1779
|
+
<summary> The result kind of the service operation. </summary>
|
1780
|
+
</member>
|
1781
|
+
<member name="T:Microsoft.Data.OData.Metadata.ODataEdmTypeAnnotation">
|
1782
|
+
<summary> In-memory annotation class to associate CLR instance types with (non-primitive) EDM types. </summary>
|
1783
|
+
</member>
|
1784
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEdmTypeAnnotation.#ctor">
|
1785
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.OData.Metadata.ODataEdmTypeAnnotation" /> class.</summary>
|
1786
|
+
</member>
|
1787
|
+
<member name="P:Microsoft.Data.OData.Metadata.ODataEdmTypeAnnotation.CanReflectOnInstanceType">
|
1788
|
+
<summary> true if reflection over the instance type is supported; otherwise false. </summary>
|
1789
|
+
</member>
|
1790
|
+
<member name="P:Microsoft.Data.OData.Metadata.ODataEdmTypeAnnotation.InstanceType">
|
1791
|
+
<summary> The instance type represented by this annotation. </summary>
|
1792
|
+
</member>
|
1793
|
+
<member name="T:Microsoft.Data.OData.Metadata.ODataEntityPropertyMappingCollection">
|
1794
|
+
<summary> Represents an enumerable of <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> that new items can be added to. </summary>
|
1795
|
+
</member>
|
1796
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEntityPropertyMappingCollection.#ctor">
|
1797
|
+
<summary> Constructor. </summary>
|
1798
|
+
</member>
|
1799
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEntityPropertyMappingCollection.#ctor(System.Collections.Generic.IEnumerable{System.Data.Services.Common.EntityPropertyMappingAttribute})">
|
1800
|
+
<summary> Constructor. </summary>
|
1801
|
+
<param name="other">An enumerable of <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> used to initialize the instance. This argument must not be null.</param>
|
1802
|
+
</member>
|
1803
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEntityPropertyMappingCollection.Add(System.Data.Services.Common.EntityPropertyMappingAttribute)">
|
1804
|
+
<summary> Adds the mapping to the list of all mappings represented by this class. </summary>
|
1805
|
+
<param name="mapping">The <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> to add to the enumerable represented by this class.</param>
|
1806
|
+
</member>
|
1807
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEntityPropertyMappingCollection.GetEnumerator">
|
1808
|
+
<summary> Return an enumerator for the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> instances in this enumerable. </summary>
|
1809
|
+
<returns>An enumerator for the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> instances in this enumerable.</returns>
|
1810
|
+
</member>
|
1811
|
+
<member name="M:Microsoft.Data.OData.Metadata.ODataEntityPropertyMappingCollection.System#Collections#IEnumerable#GetEnumerator">
|
1812
|
+
<summary> Return a non-generic enumerator for the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> instances in this enumerable. </summary>
|
1813
|
+
<returns>A non-generic enumerator for the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> instances in this enumerable.</returns>
|
1814
|
+
</member>
|
1815
|
+
<member name="T:Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind">
|
1816
|
+
<summary> Use this type to describe the kind of results returned by a service operation. </summary>
|
1817
|
+
</member>
|
1818
|
+
<member name="F:Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind.DirectValue">
|
1819
|
+
<summary> A single direct value which cannot be further composed. </summary>
|
1820
|
+
</member>
|
1821
|
+
<member name="F:Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind.Enumeration">
|
1822
|
+
<summary> An enumeration of values which cannot be further composed. </summary>
|
1823
|
+
</member>
|
1824
|
+
<member name="F:Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind.QueryWithMultipleResults">
|
1825
|
+
<summary> A queryable object which returns multiple elements. </summary>
|
1826
|
+
</member>
|
1827
|
+
<member name="F:Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind.QueryWithSingleResult">
|
1828
|
+
<summary> A queryable object which returns a single element. </summary>
|
1829
|
+
</member>
|
1830
|
+
<member name="F:Microsoft.Data.OData.Metadata.ODataServiceOperationResultKind.Void">
|
1831
|
+
<summary> No result return. </summary>
|
1832
|
+
</member>
|
1833
|
+
<member name="T:System.Data.Services.Common.EntityPropertyMappingAttribute">
|
1834
|
+
<summary>Attribute that specifies a custom mapping between properties of an entity type and elements of an entry returned by an OData feed. </summary>
|
1835
|
+
</member>
|
1836
|
+
<member name="M:System.Data.Services.Common.EntityPropertyMappingAttribute.#ctor(System.String,System.Data.Services.Common.SyndicationItemProperty,System.Boolean,System.String)">
|
1837
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> that defines a conditional mapping.</summary>
|
1838
|
+
<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>
|
1839
|
+
<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>
|
1840
|
+
<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>
|
1841
|
+
<param name="criteriaValue">The criteria value that is used to define a conditional mapping.</param>
|
1842
|
+
</member>
|
1843
|
+
<member name="M:System.Data.Services.Common.EntityPropertyMappingAttribute.#ctor(System.String,System.Data.Services.Common.SyndicationItemProperty,System.Data.Services.Common.SyndicationTextContentKind,System.Boolean)">
|
1844
|
+
<summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" />.</summary>
|
1845
|
+
<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>
|
1846
|
+
<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>
|
1847
|
+
<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>
|
1848
|
+
<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>
|
1849
|
+
</member>
|
1850
|
+
<member name="M:System.Data.Services.Common.EntityPropertyMappingAttribute.#ctor(System.String,System.String,System.String,System.String,System.Boolean)">
|
1851
|
+
<summary>Creates an instance of the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" /> to map a property to a custom feed element.</summary>
|
1852
|
+
<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>
|
1853
|
+
<param name="targetPath">The name of the target, as string, in the resulting feed to which the property is mapped.</param>
|
1854
|
+
<param name="targetNamespacePrefix">This parameter, together with <paramref name="targetNamespaceUri" />, specifies the namespace in which the <paramref name="targetPath " />element exists.</param>
|
1855
|
+
<param name="targetNamespaceUri">Specifies the namespace URI of the element, as string, specified by the <paramref name="targetName" /> property. </param>
|
1856
|
+
<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>
|
1857
|
+
</member>
|
1858
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.CriteriaValue">
|
1859
|
+
<summary>Gets or sets the criteria value that is used to define a conditional mapping.</summary>
|
1860
|
+
<returns>The value that is used to define the mapping condition.</returns>
|
1861
|
+
</member>
|
1862
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.KeepInContent">
|
1863
|
+
<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>
|
1864
|
+
<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>
|
1865
|
+
</member>
|
1866
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.SourcePath">
|
1867
|
+
<summary>Gets the name of the property of the syndication item that will be mapped to the specified element of the feed.</summary>
|
1868
|
+
<returns>String value that contains property name.</returns>
|
1869
|
+
</member>
|
1870
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetNamespacePrefix">
|
1871
|
+
<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>
|
1872
|
+
<returns>String value that contains the target namespace prefix.</returns>
|
1873
|
+
</member>
|
1874
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetNamespaceUri">
|
1875
|
+
<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>
|
1876
|
+
<returns>String that contains the namespace URI.</returns>
|
1877
|
+
</member>
|
1878
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetPath">
|
1879
|
+
<summary>Gets the name of the custom target in the feed to which the property is mapped.</summary>
|
1880
|
+
<returns>String value with target XML element or attribute.</returns>
|
1881
|
+
</member>
|
1882
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetSyndicationItem">
|
1883
|
+
<summary>Gets the syndication item in the entry targeted by the mapping.</summary>
|
1884
|
+
<returns>A <see cref="T:System.Data.Services.Common.SyndicationItemProperty" /> value that is the target of the mapping.</returns>
|
1885
|
+
</member>
|
1886
|
+
<member name="P:System.Data.Services.Common.EntityPropertyMappingAttribute.TargetTextContentKind">
|
1887
|
+
<summary>Gets the type of content of the property mapped by <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute" />.</summary>
|
1888
|
+
<returns>A string that identifies the type of content in the feed element.</returns>
|
1889
|
+
</member>
|
1890
|
+
<member name="T:System.Data.Services.Common.SyndicationItemProperty">
|
1891
|
+
<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>
|
1892
|
+
</member>
|
1893
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CustomProperty">
|
1894
|
+
<summary>A custom property element.</summary>
|
1895
|
+
</member>
|
1896
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.AuthorEmail">
|
1897
|
+
<summary>The atom:email child element of the atom:author element.</summary>
|
1898
|
+
</member>
|
1899
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.AuthorName">
|
1900
|
+
<summary>The atom:name child element of the atom:author element.</summary>
|
1901
|
+
</member>
|
1902
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.AuthorUri">
|
1903
|
+
<summary>The atom:uri child element of the atom:author element.</summary>
|
1904
|
+
</member>
|
1905
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.ContributorEmail">
|
1906
|
+
<summary>The atom:email child element of the atom:contributor element.</summary>
|
1907
|
+
</member>
|
1908
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.ContributorName">
|
1909
|
+
<summary>The atom:name child element of the atom:contributor element.</summary>
|
1910
|
+
</member>
|
1911
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.ContributorUri">
|
1912
|
+
<summary>The atom:uri child element of the atom:contributor element.</summary>
|
1913
|
+
</member>
|
1914
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Updated">
|
1915
|
+
<summary>The atom:updated element.</summary>
|
1916
|
+
</member>
|
1917
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Published">
|
1918
|
+
<summary>The atom:published element.</summary>
|
1919
|
+
</member>
|
1920
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Rights">
|
1921
|
+
<summary>The atom:rights element.</summary>
|
1922
|
+
</member>
|
1923
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Summary">
|
1924
|
+
<summary>The atom:summary element.</summary>
|
1925
|
+
</member>
|
1926
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.Title">
|
1927
|
+
<summary>The atom:title element.</summary>
|
1928
|
+
</member>
|
1929
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CategoryLabel">
|
1930
|
+
<summary>The label attribute of the atom:category element.</summary>
|
1931
|
+
</member>
|
1932
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CategoryScheme">
|
1933
|
+
<summary>The scheme attribute of the atom:category element.</summary>
|
1934
|
+
</member>
|
1935
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.CategoryTerm">
|
1936
|
+
<summary>The term attribute of the atom:category element.</summary>
|
1937
|
+
</member>
|
1938
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkHref">
|
1939
|
+
<summary>The href attribute of the atom:link element. </summary>
|
1940
|
+
</member>
|
1941
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkHrefLang">
|
1942
|
+
<summary>The hreflang attribute of the atom:link element.</summary>
|
1943
|
+
</member>
|
1944
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkLength">
|
1945
|
+
<summary>The length attribute of the atom:link element.</summary>
|
1946
|
+
</member>
|
1947
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkRel">
|
1948
|
+
<summary>The rel attribute of the atom:link element.</summary>
|
1949
|
+
</member>
|
1950
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkTitle">
|
1951
|
+
<summary>The title attribute of the atom:link element.</summary>
|
1952
|
+
</member>
|
1953
|
+
<member name="F:System.Data.Services.Common.SyndicationItemProperty.LinkType">
|
1954
|
+
<summary>The type attribute of the atom:link element.</summary>
|
1955
|
+
</member>
|
1956
|
+
<member name="T:System.Data.Services.Common.SyndicationTextContentKind">
|
1957
|
+
<summary>Enumeration used to identify text content of syndication item. </summary>
|
1958
|
+
</member>
|
1959
|
+
<member name="F:System.Data.Services.Common.SyndicationTextContentKind.Plaintext">
|
1960
|
+
<summary>Plain text content.</summary>
|
1961
|
+
</member>
|
1962
|
+
<member name="F:System.Data.Services.Common.SyndicationTextContentKind.Html">
|
1963
|
+
<summary>HTML content.</summary>
|
1964
|
+
</member>
|
1965
|
+
<member name="F:System.Data.Services.Common.SyndicationTextContentKind.Xhtml">
|
1966
|
+
<summary>XHTML content.</summary>
|
1967
|
+
</member>
|
1968
|
+
</members>
|
1969
|
+
</doc>
|