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.Spatial.dll
ADDED
Binary file
|
data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.xml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>Microsoft.Data.Spatial</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:Microsoft.Data.Spatial.DefaultSpatialImplementation">
|
8
|
+
<summary>Exposes a factory method to register the <see cref="T:System.Spatial.SpatialImplementation" /> of this spatial provider.</summary>
|
9
|
+
</member>
|
10
|
+
<member name="M:Microsoft.Data.Spatial.DefaultSpatialImplementation.Create">
|
11
|
+
<summary>Create a new instance of <see cref="T:System.Spatial.SpatialImplementation" /> for the provider.</summary>
|
12
|
+
<returns>Returns the provider-specific implementation.</returns>
|
13
|
+
</member>
|
14
|
+
</members>
|
15
|
+
</doc>
|
Binary file
|
@@ -0,0 +1,6 @@
|
|
1
|
+
This is not a NuGet package.
|
2
|
+
|
3
|
+
These assemblies come from the WCF Data Services October 2011 CTP
|
4
|
+
You can find the full install here: http://www.microsoft.com/download/en/details.aspx?id=27728
|
5
|
+
These files are used in order to serve the sample WCF Data Services site for integration testing of ruby_odata
|
6
|
+
The reason for these new files is to that WCF DS can read Entity Framework 4.1's "Code First" approach.
|
Binary file
|
@@ -0,0 +1,2276 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>System.Spatial</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:System.Spatial.BaseSpatialFactory">
|
8
|
+
<summary>The base spatial factory.</summary>
|
9
|
+
</member>
|
10
|
+
<member name="M:System.Spatial.BaseSpatialFactory.AddLine(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
11
|
+
<summary>Draws a point in the specified coordinate.</summary>
|
12
|
+
<param name="x">X or latitude coordinate</param>
|
13
|
+
<param name="y">Y or longitude coordinate</param>
|
14
|
+
<param name="z">Z coordinate</param>
|
15
|
+
<param name="m">M coordinate</param>
|
16
|
+
</member>
|
17
|
+
<member name="M:System.Spatial.BaseSpatialFactory.AddPos(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
18
|
+
<summary>Adds a new position to the current line figure.</summary>
|
19
|
+
<param name="x">X</param>
|
20
|
+
<param name="y">Y</param>
|
21
|
+
<param name="z">Z</param>
|
22
|
+
<param name="m">M</param>
|
23
|
+
</member>
|
24
|
+
<member name="M:System.Spatial.BaseSpatialFactory.BeginFigure">
|
25
|
+
<summary>Begins drawing a figure.</summary>
|
26
|
+
</member>
|
27
|
+
<member name="M:System.Spatial.BaseSpatialFactory.BeginGeo(System.Spatial.SpatialType)">
|
28
|
+
<summary>Begins geo.</summary>
|
29
|
+
<param name="type">The spatial type.</param>
|
30
|
+
</member>
|
31
|
+
<member name="M:System.Spatial.BaseSpatialFactory.EndFigure">
|
32
|
+
<summary>Ends the figure set on the current node.</summary>
|
33
|
+
</member>
|
34
|
+
<member name="M:System.Spatial.BaseSpatialFactory.EndGeo">
|
35
|
+
<summary>Ends the current spatial object.</summary>
|
36
|
+
</member>
|
37
|
+
<member name="M:System.Spatial.BaseSpatialFactory.Finish">
|
38
|
+
<summary>Finishes the current instance.</summary>
|
39
|
+
</member>
|
40
|
+
<member name="M:System.Spatial.BaseSpatialFactory.StartRing(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
41
|
+
<summary>Starts a new polygon ring.</summary>
|
42
|
+
<param name="x">X</param>
|
43
|
+
<param name="y">Y</param>
|
44
|
+
<param name="z">Z</param>
|
45
|
+
<param name="m">M</param>
|
46
|
+
</member>
|
47
|
+
<member name="T:System.Spatial.CoordinateSystem">
|
48
|
+
<summary>Coordinates system reference.</summary>
|
49
|
+
</member>
|
50
|
+
<member name="F:System.Spatial.CoordinateSystem.DefaultGeographic">
|
51
|
+
<summary>The default geographic reference (SRID 4326, WGS84).</summary>
|
52
|
+
</member>
|
53
|
+
<member name="F:System.Spatial.CoordinateSystem.DefaultGeometric">
|
54
|
+
<summary>The default geometric reference.</summary>
|
55
|
+
</member>
|
56
|
+
<member name="M:System.Spatial.CoordinateSystem.Equals(System.Object)">
|
57
|
+
<summary>Equals overload.</summary>
|
58
|
+
<returns>Is true if equal.</returns>
|
59
|
+
<param name="obj">The other coordinate system.</param>
|
60
|
+
</member>
|
61
|
+
<member name="M:System.Spatial.CoordinateSystem.Geographic(System.Nullable{System.Int32})">
|
62
|
+
<summary>Gets or creates a geographic coordinate system with the ID, or the default if null is given. </summary>
|
63
|
+
<returns>The coordinate system.</returns>
|
64
|
+
<param name="id">The coordinate system ID. Null indicates the default should be returned.</param>
|
65
|
+
</member>
|
66
|
+
<member name="M:System.Spatial.CoordinateSystem.Geometric(System.Nullable{System.Int32})">
|
67
|
+
<summary>Gets or creates a geometric coordinate system with the ID, or the default if null is given. </summary>
|
68
|
+
<returns>The coordinate system.</returns>
|
69
|
+
<param name="id">The coordinate system ID. Null indicates the default should be returned.</param>
|
70
|
+
</member>
|
71
|
+
<member name="M:System.Spatial.CoordinateSystem.GetHashCode">
|
72
|
+
<summary>Gets the hash code.</summary>
|
73
|
+
<returns>The hash code.</returns>
|
74
|
+
</member>
|
75
|
+
<member name="P:System.Spatial.CoordinateSystem.Id">
|
76
|
+
<summary>The SRID.</summary>
|
77
|
+
<returns>The SRID.</returns>
|
78
|
+
</member>
|
79
|
+
<member name="P:System.Spatial.CoordinateSystem.Name">
|
80
|
+
<summary>The name of the reference.</summary>
|
81
|
+
<returns>The name of the reference.</returns>
|
82
|
+
</member>
|
83
|
+
<member name="M:System.Spatial.CoordinateSystem.ToString">
|
84
|
+
<summary>ToString.</summary>
|
85
|
+
<returns>String representation in the form of SRID=#;</returns>
|
86
|
+
</member>
|
87
|
+
<member name="T:System.Spatial.FullGlobe">
|
88
|
+
<summary>The full globe.</summary>
|
89
|
+
</member>
|
90
|
+
<member name="M:System.Spatial.FullGlobe.#ctor(System.Spatial.CoordinateSystem)">
|
91
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.FullGlobe" /> class.</summary>
|
92
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
93
|
+
</member>
|
94
|
+
<member name="T:System.Spatial.GeographicCurve">
|
95
|
+
<summary>The geographic curve.</summary>
|
96
|
+
</member>
|
97
|
+
<member name="M:System.Spatial.GeographicCurve.#ctor(System.Spatial.CoordinateSystem)">
|
98
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicCurve" /> class.</summary>
|
99
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
100
|
+
</member>
|
101
|
+
<member name="T:System.Spatial.GeographicLineString">
|
102
|
+
<summary>A geographic line string consisting of an array of geo points.</summary>
|
103
|
+
</member>
|
104
|
+
<member name="M:System.Spatial.GeographicLineString.#ctor(System.Spatial.CoordinateSystem)">
|
105
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicLineString" /> class.</summary>
|
106
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
107
|
+
</member>
|
108
|
+
<member name="P:System.Spatial.GeographicLineString.Points">
|
109
|
+
<summary>The point list.</summary>
|
110
|
+
<returns>The point list.</returns>
|
111
|
+
</member>
|
112
|
+
<member name="T:System.Spatial.GeographicMultiLineString">
|
113
|
+
<summary>The geographic multi-line string.</summary>
|
114
|
+
</member>
|
115
|
+
<member name="M:System.Spatial.GeographicMultiLineString.#ctor(System.Spatial.CoordinateSystem)">
|
116
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicMultiLineString" /> class.</summary>
|
117
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
118
|
+
</member>
|
119
|
+
<member name="P:System.Spatial.GeographicMultiLineString.LineStrings">
|
120
|
+
<summary>The line strings.</summary>
|
121
|
+
<returns>The line strings.</returns>
|
122
|
+
</member>
|
123
|
+
<member name="T:System.Spatial.GeographicMultiPoint">
|
124
|
+
<summary>The geographic multi-point.</summary>
|
125
|
+
</member>
|
126
|
+
<member name="M:System.Spatial.GeographicMultiPoint.#ctor(System.Spatial.CoordinateSystem)">
|
127
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicMultiPoint" /> class.</summary>
|
128
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
129
|
+
</member>
|
130
|
+
<member name="P:System.Spatial.GeographicMultiPoint.Points">
|
131
|
+
<summary>The points.</summary>
|
132
|
+
<returns>The points.</returns>
|
133
|
+
</member>
|
134
|
+
<member name="T:System.Spatial.GeographicMultiPolygon">
|
135
|
+
<summary>The geographic multi-polygon.</summary>
|
136
|
+
</member>
|
137
|
+
<member name="M:System.Spatial.GeographicMultiPolygon.#ctor(System.Spatial.CoordinateSystem)">
|
138
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicMultiPolygon" /> class.</summary>
|
139
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
140
|
+
</member>
|
141
|
+
<member name="P:System.Spatial.GeographicMultiPolygon.Polygons">
|
142
|
+
<summary>The polygons.</summary>
|
143
|
+
<returns>The polygons.</returns>
|
144
|
+
</member>
|
145
|
+
<member name="T:System.Spatial.GeographicPoint">
|
146
|
+
<summary>The geographic point.</summary>
|
147
|
+
</member>
|
148
|
+
<member name="M:System.Spatial.GeographicPoint.#ctor(System.Spatial.CoordinateSystem)">
|
149
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicPoint" /> class.</summary>
|
150
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
151
|
+
</member>
|
152
|
+
<member name="P:System.Spatial.GeographicPoint.Latitude">
|
153
|
+
<summary>The latitude.</summary>
|
154
|
+
<returns>The latitude.</returns>
|
155
|
+
</member>
|
156
|
+
<member name="P:System.Spatial.GeographicPoint.Longitude">
|
157
|
+
<summary>The longitude.</summary>
|
158
|
+
<returns>The longitude.</returns>
|
159
|
+
</member>
|
160
|
+
<member name="P:System.Spatial.GeographicPoint.M">
|
161
|
+
<summary>The nullable M.</summary>
|
162
|
+
<returns>The nullable M.</returns>
|
163
|
+
</member>
|
164
|
+
<member name="P:System.Spatial.GeographicPoint.Z">
|
165
|
+
<summary>The nullable Z.</summary>
|
166
|
+
<returns>The nullable Z.</returns>
|
167
|
+
</member>
|
168
|
+
<member name="T:System.Spatial.GeographicPolygon">
|
169
|
+
<summary>The geographic polygon.</summary>
|
170
|
+
</member>
|
171
|
+
<member name="M:System.Spatial.GeographicPolygon.#ctor(System.Spatial.CoordinateSystem)">
|
172
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicPolygon" /> class.</summary>
|
173
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
174
|
+
</member>
|
175
|
+
<member name="P:System.Spatial.GeographicPolygon.Rings">
|
176
|
+
<summary>The set of rings.</summary>
|
177
|
+
<returns>The set of rings.</returns>
|
178
|
+
</member>
|
179
|
+
<member name="T:System.Spatial.GeographicPosition">
|
180
|
+
<summary>Represents one position in the geographical coordinate system.</summary>
|
181
|
+
</member>
|
182
|
+
<member name="M:System.Spatial.GeographicPosition.#ctor(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
183
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicPosition" /> class.</summary>
|
184
|
+
<param name="latitude">The latitude portion of a position.</param>
|
185
|
+
<param name="longitude">The longitude portion of a position.</param>
|
186
|
+
<param name="z">The altitude portion of a position.</param>
|
187
|
+
<param name="m">The arbitrary measure associated with a position.</param>
|
188
|
+
</member>
|
189
|
+
<member name="M:System.Spatial.GeographicPosition.Equals(System.Object)">
|
190
|
+
<summary>Performs equality comparison on an object.</summary>
|
191
|
+
<returns>Is true if each pair of coordinates is equal.</returns>
|
192
|
+
<param name="obj">other position</param>
|
193
|
+
</member>
|
194
|
+
<member name="M:System.Spatial.GeographicPosition.Equals(System.Spatial.GeographicPosition)">
|
195
|
+
<summary>Performs equality comparison on a spatial geographic position.</summary>
|
196
|
+
<returns>Is true if each pair of coordinates is equal.</returns>
|
197
|
+
<param name="other">other position</param>
|
198
|
+
</member>
|
199
|
+
<member name="M:System.Spatial.GeographicPosition.GetHashCode">
|
200
|
+
<summary>Computes a hash code.</summary>
|
201
|
+
<returns>A hash code.</returns>
|
202
|
+
</member>
|
203
|
+
<member name="P:System.Spatial.GeographicPosition.Latitude">
|
204
|
+
<summary>The latitude portion of a position.</summary>
|
205
|
+
<returns>The latitude portion of a position.</returns>
|
206
|
+
</member>
|
207
|
+
<member name="P:System.Spatial.GeographicPosition.Longitude">
|
208
|
+
<summary>The longitude portion of a position.</summary>
|
209
|
+
<returns>The longitude portion of a position.</returns>
|
210
|
+
</member>
|
211
|
+
<member name="P:System.Spatial.GeographicPosition.M">
|
212
|
+
<summary>The arbitrary measure associated with a position.</summary>
|
213
|
+
<returns>The arbitrary measure associated with a position.</returns>
|
214
|
+
</member>
|
215
|
+
<member name="M:System.Spatial.GeographicPosition.op_Equality(System.Spatial.GeographicPosition,System.Spatial.GeographicPosition)">
|
216
|
+
<summary>Performs equality comparison.</summary>
|
217
|
+
<returns>Is true if each pair of coordinates is equal.</returns>
|
218
|
+
<param name="left">The first position.</param>
|
219
|
+
<param name="right">The second position.</param>
|
220
|
+
</member>
|
221
|
+
<member name="M:System.Spatial.GeographicPosition.op_Inequality(System.Spatial.GeographicPosition,System.Spatial.GeographicPosition)">
|
222
|
+
<summary>Performs inequality comparison.</summary>
|
223
|
+
<returns>Is true if left is not equal to right.</returns>
|
224
|
+
<param name="left">The first position.</param>
|
225
|
+
<param name="right">The other position.</param>
|
226
|
+
</member>
|
227
|
+
<member name="P:System.Spatial.GeographicPosition.Z">
|
228
|
+
<summary>The altitude portion of a position.</summary>
|
229
|
+
<returns>The altitude portion of a position.</returns>
|
230
|
+
</member>
|
231
|
+
<member name="T:System.Spatial.GeographicSurface">
|
232
|
+
<summary>The geographic surface.</summary>
|
233
|
+
</member>
|
234
|
+
<member name="M:System.Spatial.GeographicSurface.#ctor(System.Spatial.CoordinateSystem)">
|
235
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographicSurface" /> class.</summary>
|
236
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
237
|
+
</member>
|
238
|
+
<member name="T:System.Spatial.Geography">
|
239
|
+
<summary>The base class of geographic shapes.</summary>
|
240
|
+
</member>
|
241
|
+
<member name="M:System.Spatial.Geography.#ctor(System.Spatial.CoordinateSystem)">
|
242
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.Geography" /> class.</summary>
|
243
|
+
<param name="coordinateSystem">The systemReference of this instance</param>
|
244
|
+
</member>
|
245
|
+
<member name="P:System.Spatial.Geography.CoordinateSystem">
|
246
|
+
<summary>The SRID of this instance of geography.</summary>
|
247
|
+
<returns>The SRID of this instance of geography.</returns>
|
248
|
+
</member>
|
249
|
+
<member name="M:System.Spatial.Geography.CopyFrom(System.Spatial.Geography)">
|
250
|
+
<summary>The copy initializer.</summary>
|
251
|
+
<param name="geography">The geography to copy.</param>
|
252
|
+
</member>
|
253
|
+
<member name="M:System.Spatial.Geography.Equals(System.Object)">
|
254
|
+
<summary>Determines whether this instance and another specified geography instance have the same value.</summary>
|
255
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
256
|
+
<param name="obj">The geography to compare to this instance.</param>
|
257
|
+
</member>
|
258
|
+
<member name="M:System.Spatial.Geography.Equals(System.Spatial.Geography)">
|
259
|
+
<summary>Determines whether this instance and another specified geography instance have the same value.</summary>
|
260
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
261
|
+
<param name="other">The geography to compare to this instance.</param>
|
262
|
+
</member>
|
263
|
+
<member name="M:System.Spatial.Geography.Equals(System.Spatial.SpatialEquality,System.Spatial.Geography)">
|
264
|
+
<summary>Determines whether this instance and another specified geography instance have the same value.</summary>
|
265
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
266
|
+
<param name="comparison">The spatial equality instance to use.</param>
|
267
|
+
<param name="other">The geography to compare to this instance.</param>
|
268
|
+
</member>
|
269
|
+
<member name="M:System.Spatial.Geography.Equals(System.Spatial.SpatialEquality,System.Spatial.Geography,System.Spatial.Geography)">
|
270
|
+
<summary>Determines whether the given two geography instances have the same value.</summary>
|
271
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
272
|
+
<param name="comparison">The spatial equality instance to use.</param>
|
273
|
+
<param name="left">The first geography instance.</param>
|
274
|
+
<param name="right">The other geography instance to compare.</param>
|
275
|
+
</member>
|
276
|
+
<member name="M:System.Spatial.Geography.GetHashCode">
|
277
|
+
<summary>Computes the hash code for this geography instance. </summary>
|
278
|
+
<returns>The hash code for this geography instance.</returns>
|
279
|
+
</member>
|
280
|
+
<member name="M:System.Spatial.Geography.GetHashCode(System.Spatial.SpatialEquality)">
|
281
|
+
<summary>Computes the hash code for this geography instance using the given spatial equality instance. </summary>
|
282
|
+
<returns>The hash code for this geography instance.</returns>
|
283
|
+
<param name="comparison">The spatial equality instance to use.</param>
|
284
|
+
</member>
|
285
|
+
<member name="P:System.Spatial.Geography.IsEmpty">
|
286
|
+
<summary>The is geography empty reference.</summary>
|
287
|
+
<returns>Is geography empty.</returns>
|
288
|
+
</member>
|
289
|
+
<member name="M:System.Spatial.Geography.op_Equality(System.Spatial.Geography,System.Spatial.Geography)">
|
290
|
+
<summary>Determines whether the given two geography instances have the same value. </summary>
|
291
|
+
<returns>Is true if the value of left is the same as the value of right; otherwise, is false.</returns>
|
292
|
+
<param name="left">The first geography instance.</param>
|
293
|
+
<param name="right">The second geogrpahy instance.</param>
|
294
|
+
</member>
|
295
|
+
<member name="M:System.Spatial.Geography.op_Inequality(System.Spatial.Geography,System.Spatial.Geography)">
|
296
|
+
<summary>Determines whether the given two geography instances have different values. </summary>
|
297
|
+
<returns>Is true if the value of left is different from the value of right; otherwise, is false.</returns>
|
298
|
+
<param name="left">The first geography instance.</param>
|
299
|
+
<param name="right">The second geography instance.</param>
|
300
|
+
</member>
|
301
|
+
<member name="M:System.Spatial.Geography.SendTo(System.Spatial.GeographyChain)">
|
302
|
+
<summary>Sends the current spatial object to the given pipeline.</summary>
|
303
|
+
<param name="chain">The spatial pipeline.</param>
|
304
|
+
</member>
|
305
|
+
<member name="T:System.Spatial.GeographyBuilder">
|
306
|
+
<summary>The builder for geography types.</summary>
|
307
|
+
</member>
|
308
|
+
<member name="M:System.Spatial.GeographyBuilder.#ctor">
|
309
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographyBuilder" /> class.</summary>
|
310
|
+
</member>
|
311
|
+
<member name="P:System.Spatial.GeographyBuilder.ConstructedGeography">
|
312
|
+
<summary>Gets the geography object that was constructed.</summary>
|
313
|
+
<returns>The geography object that was constructed.</returns>
|
314
|
+
</member>
|
315
|
+
<member name="M:System.Spatial.GeographyBuilder.Create">
|
316
|
+
<summary>Creates the implementation of the builder.</summary>
|
317
|
+
<returns>The created geography builder implementation.</returns>
|
318
|
+
</member>
|
319
|
+
<member name="T:System.Spatial.GeographyChain">
|
320
|
+
<summary>This is definition of the geography chain api.</summary>
|
321
|
+
</member>
|
322
|
+
<member name="M:System.Spatial.GeographyChain.#ctor">
|
323
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographyChain" /> class.</summary>
|
324
|
+
</member>
|
325
|
+
<member name="M:System.Spatial.GeographyChain.AddGeographicControlPoint(System.Spatial.GeographicPosition)">
|
326
|
+
<summary>Draws a point in the specified coordinate.</summary>
|
327
|
+
<param name="position">The next position.</param>
|
328
|
+
</member>
|
329
|
+
<member name="M:System.Spatial.GeographyChain.BeginFigure">
|
330
|
+
<summary>Begins drawing a figure.</summary>
|
331
|
+
</member>
|
332
|
+
<member name="M:System.Spatial.GeographyChain.BeginGeography(System.Spatial.SpatialType)">
|
333
|
+
<summary>Begins drawing a spatial object.</summary>
|
334
|
+
<param name="type">The spatial type of the object.</param>
|
335
|
+
</member>
|
336
|
+
<member name="M:System.Spatial.GeographyChain.EndFigure">
|
337
|
+
<summary>Ends the current figure.</summary>
|
338
|
+
</member>
|
339
|
+
<member name="M:System.Spatial.GeographyChain.EndGeography">
|
340
|
+
<summary>Ends the current spatial object.</summary>
|
341
|
+
</member>
|
342
|
+
<member name="M:System.Spatial.GeographyChain.Reset">
|
343
|
+
<summary>Sets up the pipeline for reuse.</summary>
|
344
|
+
</member>
|
345
|
+
<member name="M:System.Spatial.GeographyChain.SetCoordinateSystem(System.Spatial.CoordinateSystem)">
|
346
|
+
<summary>Sets the coordinate system.</summary>
|
347
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
348
|
+
</member>
|
349
|
+
<member name="T:System.Spatial.GeographyCollection">
|
350
|
+
<summary>The geographic collection.</summary>
|
351
|
+
</member>
|
352
|
+
<member name="M:System.Spatial.GeographyCollection.#ctor(System.Spatial.CoordinateSystem)">
|
353
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeographyCollection" /> class.</summary>
|
354
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
355
|
+
</member>
|
356
|
+
<member name="P:System.Spatial.GeographyCollection.Geography">
|
357
|
+
<summary>The geographies reference.</summary>
|
358
|
+
</member>
|
359
|
+
<member name="T:System.Spatial.GeographyFactory">
|
360
|
+
<summary>The geography factory.</summary>
|
361
|
+
</member>
|
362
|
+
<member name="M:System.Spatial.GeographyFactory.Collection">
|
363
|
+
<summary>Creates a geography collection.</summary>
|
364
|
+
<returns>A geography collection factory.</returns>
|
365
|
+
</member>
|
366
|
+
<member name="M:System.Spatial.GeographyFactory.Collection(System.Spatial.CoordinateSystem)">
|
367
|
+
<summary>Creates a geography collection.</summary>
|
368
|
+
<returns>A geography collection factory.</returns>
|
369
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
370
|
+
</member>
|
371
|
+
<member name="M:System.Spatial.GeographyFactory.LineString">
|
372
|
+
<summary>Creates an empty geographic line string.</summary>
|
373
|
+
<returns>A geographic line string factory.</returns>
|
374
|
+
</member>
|
375
|
+
<member name="M:System.Spatial.GeographyFactory.LineString(System.Double,System.Double)">
|
376
|
+
<summary>Creates a geographic line string with a starting position.</summary>
|
377
|
+
<returns>A geographic line string factory.</returns>
|
378
|
+
<param name="latitude">The latitude.</param>
|
379
|
+
<param name="longitude">The longitude.</param>
|
380
|
+
</member>
|
381
|
+
<member name="M:System.Spatial.GeographyFactory.LineString(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
382
|
+
<summary>Creates a geographic line string with a starting position.</summary>
|
383
|
+
<returns>A geographic line string factory.</returns>
|
384
|
+
<param name="latitude">The latitude.</param>
|
385
|
+
<param name="longitude">The longitude.</param>
|
386
|
+
<param name="z">Z</param>
|
387
|
+
<param name="m">M</param>
|
388
|
+
</member>
|
389
|
+
<member name="M:System.Spatial.GeographyFactory.LineString(System.Spatial.CoordinateSystem)">
|
390
|
+
<summary>Creates an empty geographic line string.</summary>
|
391
|
+
<returns>A geographic line string factory.</returns>
|
392
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
393
|
+
</member>
|
394
|
+
<member name="M:System.Spatial.GeographyFactory.LineString(System.Spatial.CoordinateSystem,System.Double,System.Double)">
|
395
|
+
<summary>Creates a geographic line string with a starting position.</summary>
|
396
|
+
<returns>A geographic line string factory.</returns>
|
397
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
398
|
+
<param name="latitude">The latitude.</param>
|
399
|
+
<param name="longitude">The longitude.</param>
|
400
|
+
</member>
|
401
|
+
<member name="M:System.Spatial.GeographyFactory.LineString(System.Spatial.CoordinateSystem,System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
402
|
+
<summary>Creates a geographic line string with a starting position.</summary>
|
403
|
+
<returns>A geographic line string factory.</returns>
|
404
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
405
|
+
<param name="latitude">The latitude.</param>
|
406
|
+
<param name="longitude">The longitude.</param>
|
407
|
+
<param name="z">Z</param>
|
408
|
+
<param name="m">M</param>
|
409
|
+
</member>
|
410
|
+
<member name="M:System.Spatial.GeographyFactory.MultiLineString">
|
411
|
+
<summary>Creates a geographic multi-line string.</summary>
|
412
|
+
<returns>A geographic multi-line string factory.</returns>
|
413
|
+
</member>
|
414
|
+
<member name="M:System.Spatial.GeographyFactory.MultiLineString(System.Spatial.CoordinateSystem)">
|
415
|
+
<summary>Creates a geographic multi-line string.</summary>
|
416
|
+
<returns>A geographic multi-line string factory.</returns>
|
417
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
418
|
+
</member>
|
419
|
+
<member name="M:System.Spatial.GeographyFactory.MultiPoint">
|
420
|
+
<summary>Creates a geographic multipoint.</summary>
|
421
|
+
<returns>A geographic multipoint factory.</returns>
|
422
|
+
</member>
|
423
|
+
<member name="M:System.Spatial.GeographyFactory.MultiPoint(System.Spatial.CoordinateSystem)">
|
424
|
+
<summary>Creates a geographic multipoint.</summary>
|
425
|
+
<returns>A geographic multipoint factory.</returns>
|
426
|
+
<param name="coordinateSystem">The coordinate system</param>
|
427
|
+
</member>
|
428
|
+
<member name="M:System.Spatial.GeographyFactory.MultiPolygon">
|
429
|
+
<summary>Creates a geographic multipolygon.</summary>
|
430
|
+
<returns>A geographic multipolygon factory.</returns>
|
431
|
+
</member>
|
432
|
+
<member name="M:System.Spatial.GeographyFactory.MultiPolygon(System.Spatial.CoordinateSystem)">
|
433
|
+
<summary>Creates a geographic multipolygon.</summary>
|
434
|
+
<returns>A geographic multipolygon factory.</returns>
|
435
|
+
<param name="coordinateSystem">The coordinate system</param>
|
436
|
+
</member>
|
437
|
+
<member name="M:System.Spatial.GeographyFactory.Point">
|
438
|
+
<summary>Creates a factory with an empty geographic point.</summary>
|
439
|
+
<returns>A geographic point factory.</returns>
|
440
|
+
</member>
|
441
|
+
<member name="M:System.Spatial.GeographyFactory.Point(System.Double,System.Double)">
|
442
|
+
<summary>Creates a geographic point.</summary>
|
443
|
+
<returns>A geographic point factory.</returns>
|
444
|
+
<param name="latitude">The latitude.</param>
|
445
|
+
<param name="longitude">The longitude.</param>
|
446
|
+
</member>
|
447
|
+
<member name="M:System.Spatial.GeographyFactory.Point(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
448
|
+
<summary>Creates a geographic point.</summary>
|
449
|
+
<returns>A geographic point factory.</returns>
|
450
|
+
<param name="latitude">The latitude.</param>
|
451
|
+
<param name="longitude">The longitude.</param>
|
452
|
+
<param name="z">Z</param>
|
453
|
+
<param name="m">M</param>
|
454
|
+
</member>
|
455
|
+
<member name="M:System.Spatial.GeographyFactory.Point(System.Spatial.CoordinateSystem)">
|
456
|
+
<summary> Create a factory with an empty Geographic Point </summary>
|
457
|
+
<returns>A geographic point factory.</returns>
|
458
|
+
<param name="coordinateSystem">The coordinate system</param>
|
459
|
+
</member>
|
460
|
+
<member name="M:System.Spatial.GeographyFactory.Point(System.Spatial.CoordinateSystem,System.Double,System.Double)">
|
461
|
+
<summary>Creates a geographic point.</summary>
|
462
|
+
<returns>A geographic point factory.</returns>
|
463
|
+
<param name="coordinateSystem">The coordinate system</param>
|
464
|
+
<param name="latitude">The latitude.</param>
|
465
|
+
<param name="longitude">The longitude.</param>
|
466
|
+
</member>
|
467
|
+
<member name="M:System.Spatial.GeographyFactory.Point(System.Spatial.CoordinateSystem,System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
468
|
+
<summary>Creates a geographic point.</summary>
|
469
|
+
<returns>A geographic point factory.</returns>
|
470
|
+
<param name="coordinateSystem">The coordinate system</param>
|
471
|
+
<param name="latitude">The latitude.</param>
|
472
|
+
<param name="longitude">The longitude.</param>
|
473
|
+
<param name="z">Z</param>
|
474
|
+
<param name="m">M</param>
|
475
|
+
</member>
|
476
|
+
<member name="M:System.Spatial.GeographyFactory.Polygon">
|
477
|
+
<summary>Creates a geographic polygon.</summary>
|
478
|
+
<returns>A geographic polygon factory.</returns>
|
479
|
+
</member>
|
480
|
+
<member name="M:System.Spatial.GeographyFactory.Polygon(System.Spatial.CoordinateSystem)">
|
481
|
+
<summary>Creates a geographic polygon.</summary>
|
482
|
+
<returns>A geographic polygon factory.</returns>
|
483
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
484
|
+
</member>
|
485
|
+
<member name="T:System.Spatial.GeographyFactory`1">
|
486
|
+
<summary>The spatial factory.</summary>
|
487
|
+
<typeparam name="T">The target type.</typeparam>
|
488
|
+
</member>
|
489
|
+
<member name="M:System.Spatial.GeographyFactory`1.AddLine(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
490
|
+
<summary>Draws a point in the specified coordinate.</summary>
|
491
|
+
<param name="latitude">X or latitude coordinate.</param>
|
492
|
+
<param name="longitude">Y or longitude coordinate.</param>
|
493
|
+
<param name="z">Z coordinate.</param>
|
494
|
+
<param name="m">M coordinate.</param>
|
495
|
+
</member>
|
496
|
+
<member name="M:System.Spatial.GeographyFactory`1.BeginFigure">
|
497
|
+
<summary>Begins drawing a figure.</summary>
|
498
|
+
</member>
|
499
|
+
<member name="M:System.Spatial.GeographyFactory`1.BeginGeo(System.Spatial.SpatialType)">
|
500
|
+
<summary>Begins a spatial object.</summary>
|
501
|
+
<param name="type">The spatial type.</param>
|
502
|
+
</member>
|
503
|
+
<member name="M:System.Spatial.GeographyFactory`1.Build">
|
504
|
+
<summary>Finishes the current geography.</summary>
|
505
|
+
<returns>Returns <see cref="{0}" />.</returns>
|
506
|
+
</member>
|
507
|
+
<member name="M:System.Spatial.GeographyFactory`1.Collection">
|
508
|
+
<summary>Starts a new collection.</summary>
|
509
|
+
<returns>The current instance of geography factory.</returns>
|
510
|
+
</member>
|
511
|
+
<member name="M:System.Spatial.GeographyFactory`1.EndFigure">
|
512
|
+
<summary>Ends the figure set on the current node.</summary>
|
513
|
+
</member>
|
514
|
+
<member name="M:System.Spatial.GeographyFactory`1.EndGeo">
|
515
|
+
<summary>Ends the current spatial object.</summary>
|
516
|
+
</member>
|
517
|
+
<member name="M:System.Spatial.GeographyFactory`1.LineString">
|
518
|
+
<summary> Start a new empty LineString </summary>
|
519
|
+
<returns>The current instance of geography factory.</returns>
|
520
|
+
</member>
|
521
|
+
<member name="M:System.Spatial.GeographyFactory`1.LineString(System.Double,System.Double)">
|
522
|
+
<summary>Starts a new line string.</summary>
|
523
|
+
<returns>The current instance of geography factory.</returns>
|
524
|
+
<param name="latitude"> The latitude.</param>
|
525
|
+
<param name="longitude">The longitude.</param>
|
526
|
+
</member>
|
527
|
+
<member name="M:System.Spatial.GeographyFactory`1.LineString(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
528
|
+
<summary> Start a new line string.</summary>
|
529
|
+
<returns>The current instance of geography factory.</returns>
|
530
|
+
<param name="latitude">The latitude</param>
|
531
|
+
<param name="longitude">The longitude</param>
|
532
|
+
<param name="z">Z</param>
|
533
|
+
<param name="m">M</param>
|
534
|
+
</member>
|
535
|
+
<member name="M:System.Spatial.GeographyFactory`1.LineTo(System.Double,System.Double)">
|
536
|
+
<summary>Adds a new point in the current line figure.</summary>
|
537
|
+
<returns>The current instance of geography factory.</returns>
|
538
|
+
<param name="latitude">The latitude.</param>
|
539
|
+
<param name="longitude">The longitude.</param>
|
540
|
+
</member>
|
541
|
+
<member name="M:System.Spatial.GeographyFactory`1.LineTo(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
542
|
+
<summary>Adds a new point in the current line figure.</summary>
|
543
|
+
<returns>The current instance of geography factory.</returns>
|
544
|
+
<param name="latitude">The latitude.</param>
|
545
|
+
<param name="longitude">The longitude.</param>
|
546
|
+
<param name="z">Z</param>
|
547
|
+
<param name="m">M</param>
|
548
|
+
</member>
|
549
|
+
<member name="M:System.Spatial.GeographyFactory`1.MultiLineString">
|
550
|
+
<summary>Starts a new multi-line string.</summary>
|
551
|
+
<returns>The current instance of geography factory.</returns>
|
552
|
+
</member>
|
553
|
+
<member name="M:System.Spatial.GeographyFactory`1.MultiPoint">
|
554
|
+
<summary>Starts a new multipoint.</summary>
|
555
|
+
<returns>The current instance of geography factory.</returns>
|
556
|
+
</member>
|
557
|
+
<member name="M:System.Spatial.GeographyFactory`1.MultiPolygon">
|
558
|
+
<summary>Starts a new multipolygon.</summary>
|
559
|
+
<returns>The current instance of geography factory.</returns>
|
560
|
+
</member>
|
561
|
+
<member name="M:System.Spatial.GeographyFactory`1.op_Implicit(System.Spatial.GeographyFactory{`0})~`0">
|
562
|
+
<returns>Returns <see cref="T:System.Spatial.GeographyFactory`1" />.</returns>
|
563
|
+
</member>
|
564
|
+
<member name="M:System.Spatial.GeographyFactory`1.Point">
|
565
|
+
<summary>Starts a new empty point.</summary>
|
566
|
+
<returns>The current instance of geography factory.</returns>
|
567
|
+
</member>
|
568
|
+
<member name="M:System.Spatial.GeographyFactory`1.Point(System.Double,System.Double)">
|
569
|
+
<summary>Starts a new point.</summary>
|
570
|
+
<returns>The current instance of geography factory.</returns>
|
571
|
+
<param name="latitude">The latitude.</param>
|
572
|
+
<param name="longitude">The longitude.</param>
|
573
|
+
</member>
|
574
|
+
<member name="M:System.Spatial.GeographyFactory`1.Point(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
575
|
+
<summary>Starts a new point.</summary>
|
576
|
+
<returns>The current instance of geography factory.</returns>
|
577
|
+
<param name="latitude">The latitude.</param>
|
578
|
+
<param name="longitude">The longitude.</param>
|
579
|
+
<param name="z">Z</param>
|
580
|
+
<param name="m">M</param>
|
581
|
+
</member>
|
582
|
+
<member name="M:System.Spatial.GeographyFactory`1.Polygon">
|
583
|
+
<summary>Starts a new polygon.</summary>
|
584
|
+
<returns>The current instance of geography factory.</returns>
|
585
|
+
</member>
|
586
|
+
<member name="M:System.Spatial.GeographyFactory`1.Ring(System.Double,System.Double)">
|
587
|
+
<summary>Starts a new polygon ring.</summary>
|
588
|
+
<returns>The current instance of geography factory.</returns>
|
589
|
+
<param name="latitude">The latitude.</param>
|
590
|
+
<param name="longitude">The longitude.</param>
|
591
|
+
</member>
|
592
|
+
<member name="M:System.Spatial.GeographyFactory`1.Ring(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
593
|
+
<summary>Starts a new polygon ring.</summary>
|
594
|
+
<returns>The current instance of geography factory.</returns>
|
595
|
+
<param name="latitude">The latitude.</param>
|
596
|
+
<param name="longitude">The longitude.</param>
|
597
|
+
<param name="z">Z</param>
|
598
|
+
<param name="m">M</param>
|
599
|
+
</member>
|
600
|
+
<member name="T:System.Spatial.GeographyOperationsExtensions">
|
601
|
+
<summary>Extends methods for the geographic operations.</summary>
|
602
|
+
</member>
|
603
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Area(System.Spatial.GeographicSurface)">
|
604
|
+
<summary>The geographic area.</summary>
|
605
|
+
<returns>The operation result.</returns>
|
606
|
+
<param name="operand">The operand.</param>
|
607
|
+
</member>
|
608
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Boundary(System.Spatial.Geography)">
|
609
|
+
<summary>The geographic boundary.</summary>
|
610
|
+
<returns>The operation result.</returns>
|
611
|
+
<param name="operand">The operand.</param>
|
612
|
+
</member>
|
613
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Buffer(System.Spatial.Geography,System.Double,System.Double)">
|
614
|
+
<summary>The geographic buffer.</summary>
|
615
|
+
<returns>The buffered geography.</returns>
|
616
|
+
<param name="operand">The operand.</param>
|
617
|
+
<param name="distance">The distance to buffer.</param>
|
618
|
+
<param name="tolerance">The tolerance of the distance.</param>
|
619
|
+
</member>
|
620
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Centroid(System.Spatial.GeographicSurface)">
|
621
|
+
<summary>The geographic centroid.</summary>
|
622
|
+
<returns>The operation result.</returns>
|
623
|
+
<param name="operand">The operand.</param>
|
624
|
+
</member>
|
625
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Contains(System.Spatial.Geography,System.Spatial.Geography)">
|
626
|
+
<summary>The geographic contains.</summary>
|
627
|
+
<returns>The operation result.</returns>
|
628
|
+
<param name="operand1">The operand 1.</param>
|
629
|
+
<param name="operand2">The operand 2.</param>
|
630
|
+
</member>
|
631
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.ConvexHull(System.Spatial.Geography)">
|
632
|
+
<summary>The geographic convex hull.</summary>
|
633
|
+
<returns>The operation result.</returns>
|
634
|
+
<param name="operand">The operand.</param>
|
635
|
+
</member>
|
636
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Crosses(System.Spatial.Geography,System.Spatial.Geography)">
|
637
|
+
<summary>The geographic crosses.</summary>
|
638
|
+
<returns>The operation result.</returns>
|
639
|
+
<param name="operand1">The operand 1.</param>
|
640
|
+
<param name="operand2">The operand 2.</param>
|
641
|
+
</member>
|
642
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Difference(System.Spatial.Geography,System.Spatial.Geography)">
|
643
|
+
<summary>The geographic difference.</summary>
|
644
|
+
<returns>The operation result.</returns>
|
645
|
+
<param name="operand1">The operand 1.</param>
|
646
|
+
<param name="operand2">The operand 2.</param>
|
647
|
+
</member>
|
648
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Distance(System.Spatial.Geography,System.Spatial.Geography)">
|
649
|
+
<summary>The geographic distance.</summary>
|
650
|
+
<returns>The operation result.</returns>
|
651
|
+
<param name="operand1">The operand 1.</param>
|
652
|
+
<param name="operand2">The operand 2.</param>
|
653
|
+
</member>
|
654
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Envelope(System.Spatial.Geography)">
|
655
|
+
<summary>The geographic envelope.</summary>
|
656
|
+
<returns>The operation result.</returns>
|
657
|
+
<param name="operand">The operand.</param>
|
658
|
+
</member>
|
659
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.GeographicEquals(System.Spatial.Geography,System.Spatial.Geography)">
|
660
|
+
<summary>The geographic equals.</summary>
|
661
|
+
<returns>The operation result.</returns>
|
662
|
+
<param name="operand1">The operand 1.</param>
|
663
|
+
<param name="operand2">The operand 2.</param>
|
664
|
+
</member>
|
665
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.GetBounds(System.Spatial.Geography,System.Double@,System.Double@,System.Double@,System.Double@)">
|
666
|
+
<summary>The geographic get bounds.</summary>
|
667
|
+
<param name="operand">The operand.</param>
|
668
|
+
<param name="minX">The minimum X.</param>
|
669
|
+
<param name="minY">The minimum Y.</param>
|
670
|
+
<param name="maxX">The maximum X.</param>
|
671
|
+
<param name="maxY">The maximum Y.</param>
|
672
|
+
</member>
|
673
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Intersection(System.Spatial.Geography,System.Spatial.Geography)">
|
674
|
+
<summary>The geographic intersection.</summary>
|
675
|
+
<returns>The operation result.</returns>
|
676
|
+
<param name="operand1">The operand 1.</param>
|
677
|
+
<param name="operand2">The operand 2.</param>
|
678
|
+
</member>
|
679
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Intersects(System.Spatial.Geography,System.Spatial.Geography)">
|
680
|
+
<summary>The geographic intersects.</summary>
|
681
|
+
<returns>The operation result.</returns>
|
682
|
+
<param name="operand1">The operand 1.</param>
|
683
|
+
<param name="operand2">The operand 2.</param>
|
684
|
+
</member>
|
685
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.IsSimple(System.Spatial.Geography)">
|
686
|
+
<summary>The geographic is simple.</summary>
|
687
|
+
<returns>The operation result.</returns>
|
688
|
+
<param name="operand">The operand.</param>
|
689
|
+
</member>
|
690
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.IsValid(System.Spatial.Geography)">
|
691
|
+
<summary>The geographic is valid.</summary>
|
692
|
+
<returns>The operation result.</returns>
|
693
|
+
<param name="operand">The operand.</param>
|
694
|
+
</member>
|
695
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Length(System.Spatial.GeographicCurve)">
|
696
|
+
<summary>The geographic length.</summary>
|
697
|
+
<returns>The operation result.</returns>
|
698
|
+
<param name="operand">The operand.</param>
|
699
|
+
</member>
|
700
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.MakeValid(System.Spatial.Geography)">
|
701
|
+
<summary>The geographic make valid.</summary>
|
702
|
+
<returns>The operation result.</returns>
|
703
|
+
<param name="operand">The operand.</param>
|
704
|
+
</member>
|
705
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Overlaps(System.Spatial.Geography,System.Spatial.Geography)">
|
706
|
+
<summary>The geographic overlaps.</summary>
|
707
|
+
<returns>The operation result.</returns>
|
708
|
+
<param name="operand1">The operand 1.</param>
|
709
|
+
<param name="operand2">The operand 2.</param>
|
710
|
+
</member>
|
711
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.PointOnSurface(System.Spatial.GeographicSurface)">
|
712
|
+
<summary>The geographic point on surface.</summary>
|
713
|
+
<returns>The operation result.</returns>
|
714
|
+
<param name="operand">The operand.</param>
|
715
|
+
</member>
|
716
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Reduce(System.Spatial.Geography,System.Double)">
|
717
|
+
<summary>The geographic reduce.</summary>
|
718
|
+
<returns>The operation result.</returns>
|
719
|
+
<param name="operand">The operand.</param>
|
720
|
+
<param name="tolerance">The tolerance of the operation.</param>
|
721
|
+
</member>
|
722
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.SymmetricDifference(System.Spatial.Geography,System.Spatial.Geography)">
|
723
|
+
<summary>The geographic symmetric difference.</summary>
|
724
|
+
<returns>The operation result.</returns>
|
725
|
+
<param name="operand1">The operand 1.</param>
|
726
|
+
<param name="operand2">The operand 2.</param>
|
727
|
+
</member>
|
728
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Touches(System.Spatial.Geography,System.Spatial.Geography)">
|
729
|
+
<summary>The geographic touches.</summary>
|
730
|
+
<returns>The operation result.</returns>
|
731
|
+
<param name="operand1">The operand 1.</param>
|
732
|
+
<param name="operand2">The operand 2.</param>
|
733
|
+
</member>
|
734
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Union(System.Spatial.Geography,System.Spatial.Geography)">
|
735
|
+
<summary>The geographic union.</summary>
|
736
|
+
<returns>The operation result.</returns>
|
737
|
+
<param name="operand1">The operand 1.</param>
|
738
|
+
<param name="operand2">The operand 2.</param>
|
739
|
+
</member>
|
740
|
+
<member name="M:System.Spatial.GeographyOperationsExtensions.Within(System.Spatial.Geography,System.Spatial.Geography)">
|
741
|
+
<summary>The geographic within.</summary>
|
742
|
+
<returns>The operation result.</returns>
|
743
|
+
<param name="operand1">The operand 1.</param>
|
744
|
+
<param name="operand2">The operand 2.</param>
|
745
|
+
</member>
|
746
|
+
<member name="T:System.Spatial.GeoJsonFormat">
|
747
|
+
<summary>The object to move spatial types to and from the GeoJson format.</summary>
|
748
|
+
</member>
|
749
|
+
<member name="M:System.Spatial.GeoJsonFormat.#ctor">
|
750
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeoJsonFormat" /> class.</summary>
|
751
|
+
</member>
|
752
|
+
<member name="M:System.Spatial.GeoJsonFormat.Create">
|
753
|
+
<summary>Creates the implementation of the format.</summary>
|
754
|
+
<returns>Returns the created GeoJsonFormat implementation.</returns>
|
755
|
+
</member>
|
756
|
+
<member name="T:System.Spatial.GeometricCurve">
|
757
|
+
<summary>The geometric curve.</summary>
|
758
|
+
</member>
|
759
|
+
<member name="M:System.Spatial.GeometricCurve.#ctor(System.Spatial.CoordinateSystem)">
|
760
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricCurve" /> class.</summary>
|
761
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
762
|
+
</member>
|
763
|
+
<member name="P:System.Spatial.GeometricCurve.EndingPoint">
|
764
|
+
<summary>The ending point.</summary>
|
765
|
+
</member>
|
766
|
+
<member name="P:System.Spatial.GeometricCurve.IsClosed">
|
767
|
+
<summary>The is curve closed.</summary>
|
768
|
+
<returns>Is curve closed.</returns>
|
769
|
+
</member>
|
770
|
+
<member name="P:System.Spatial.GeometricCurve.StartingPoint">
|
771
|
+
<summary>The starting point.</summary>
|
772
|
+
<returns>The starting point.</returns>
|
773
|
+
</member>
|
774
|
+
<member name="T:System.Spatial.GeometricLineString">
|
775
|
+
<summary>The geometric line string.</summary>
|
776
|
+
</member>
|
777
|
+
<member name="M:System.Spatial.GeometricLineString.#ctor(System.Spatial.CoordinateSystem)">
|
778
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricLineString" /> class.</summary>
|
779
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
780
|
+
</member>
|
781
|
+
<member name="P:System.Spatial.GeometricLineString.Points">
|
782
|
+
<summary>The point list.</summary>
|
783
|
+
<returns>The point list.</returns>
|
784
|
+
</member>
|
785
|
+
<member name="T:System.Spatial.GeometricMultiLineString">
|
786
|
+
<summary>The geometric multi-line string.</summary>
|
787
|
+
</member>
|
788
|
+
<member name="M:System.Spatial.GeometricMultiLineString.#ctor(System.Spatial.CoordinateSystem)">
|
789
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricMultiLineString" /> class.</summary>
|
790
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
791
|
+
</member>
|
792
|
+
<member name="P:System.Spatial.GeometricMultiLineString.LineStrings">
|
793
|
+
<summary>The line strings.</summary>
|
794
|
+
<returns>The line strings.</returns>
|
795
|
+
</member>
|
796
|
+
<member name="T:System.Spatial.GeometricMultiPoint">
|
797
|
+
<summary>The geometric multipoint.</summary>
|
798
|
+
</member>
|
799
|
+
<member name="M:System.Spatial.GeometricMultiPoint.#ctor(System.Spatial.CoordinateSystem)">
|
800
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricMultiPoint" /> class.</summary>
|
801
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
802
|
+
</member>
|
803
|
+
<member name="P:System.Spatial.GeometricMultiPoint.Points">
|
804
|
+
<summary>The geometric multipoints.</summary>
|
805
|
+
<returns>The geometric multipoints.</returns>
|
806
|
+
</member>
|
807
|
+
<member name="T:System.Spatial.GeometricMultiPolygon">
|
808
|
+
<summary>The geometric multipolygon.</summary>
|
809
|
+
</member>
|
810
|
+
<member name="M:System.Spatial.GeometricMultiPolygon.#ctor(System.Spatial.CoordinateSystem)">
|
811
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricMultiPolygon" /> class.</summary>
|
812
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
813
|
+
</member>
|
814
|
+
<member name="P:System.Spatial.GeometricMultiPolygon.Polygons">
|
815
|
+
<summary>The geometric multpolygons.</summary>
|
816
|
+
<returns>The geometric multpolygons.</returns>
|
817
|
+
</member>
|
818
|
+
<member name="T:System.Spatial.GeometricPoint">
|
819
|
+
<summary>The geometric point.</summary>
|
820
|
+
</member>
|
821
|
+
<member name="M:System.Spatial.GeometricPoint.#ctor(System.Spatial.CoordinateSystem)">
|
822
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricPoint" /> class.</summary>
|
823
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
824
|
+
</member>
|
825
|
+
<member name="P:System.Spatial.GeometricPoint.M">
|
826
|
+
<summary>The nullable M.</summary>
|
827
|
+
<returns>The nullable M.</returns>
|
828
|
+
</member>
|
829
|
+
<member name="P:System.Spatial.GeometricPoint.X">
|
830
|
+
<summary>The latitude.</summary>
|
831
|
+
<returns>The latitude.</returns>
|
832
|
+
</member>
|
833
|
+
<member name="P:System.Spatial.GeometricPoint.Y">
|
834
|
+
<summary>The longitude.</summary>
|
835
|
+
<returns>The longitude.</returns>
|
836
|
+
</member>
|
837
|
+
<member name="P:System.Spatial.GeometricPoint.Z">
|
838
|
+
<summary>The nullable Z.</summary>
|
839
|
+
<returns>The nullable Z.</returns>
|
840
|
+
</member>
|
841
|
+
<member name="T:System.Spatial.GeometricPolygon">
|
842
|
+
<summary>The geometric polygon.</summary>
|
843
|
+
</member>
|
844
|
+
<member name="M:System.Spatial.GeometricPolygon.#ctor(System.Spatial.CoordinateSystem)">
|
845
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometricPolygon" /> class.</summary>
|
846
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
847
|
+
</member>
|
848
|
+
<member name="P:System.Spatial.GeometricPolygon.Rings">
|
849
|
+
<summary>The set of rings.</summary>
|
850
|
+
<returns>The set of rings.</returns>
|
851
|
+
</member>
|
852
|
+
<member name="T:System.Spatial.GeometricPosition">
|
853
|
+
<summary>Represents one position in the geometric coordinate system.</summary>
|
854
|
+
</member>
|
855
|
+
<member name="M:System.Spatial.GeometricPosition.#ctor(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
856
|
+
<summary>Creates a geometric position from components.</summary>
|
857
|
+
<param name="x">The x portion of a position.</param>
|
858
|
+
<param name="y">The y portion of a position.</param>
|
859
|
+
<param name="z">The altitude portion of a position.</param>
|
860
|
+
<param name="m">The arbitrary measure associated with a position.</param>
|
861
|
+
</member>
|
862
|
+
<member name="M:System.Spatial.GeometricPosition.Equals(System.Object)">
|
863
|
+
<summary>The equality comparison of an object.</summary>
|
864
|
+
<returns>Is true if each pair of coordinates is equal.</returns>
|
865
|
+
<param name="obj">The other position.</param>
|
866
|
+
</member>
|
867
|
+
<member name="M:System.Spatial.GeometricPosition.Equals(System.Spatial.GeometricPosition)">
|
868
|
+
<summary>The equality comparison of two positions.</summary>
|
869
|
+
<returns>Is true if each pair of coordinates is equal.</returns>
|
870
|
+
<param name="other">The other position.</param>
|
871
|
+
</member>
|
872
|
+
<member name="M:System.Spatial.GeometricPosition.GetHashCode">
|
873
|
+
<summary>Computes a hash code.</summary>
|
874
|
+
<returns>A hash code.</returns>
|
875
|
+
</member>
|
876
|
+
<member name="P:System.Spatial.GeometricPosition.M">
|
877
|
+
<summary>The arbitrary measure associated with a position.</summary>
|
878
|
+
<returns>The arbitrary measure associated with a position.</returns>
|
879
|
+
</member>
|
880
|
+
<member name="M:System.Spatial.GeometricPosition.op_Equality(System.Spatial.GeometricPosition,System.Spatial.GeometricPosition)">
|
881
|
+
<summary>The equality comparison of two positions.</summary>
|
882
|
+
<returns>Is true if each pair of coordinates is equal.</returns>
|
883
|
+
<param name="left">The first position.</param>
|
884
|
+
<param name="right">The second position.</param>
|
885
|
+
</member>
|
886
|
+
<member name="M:System.Spatial.GeometricPosition.op_Inequality(System.Spatial.GeometricPosition,System.Spatial.GeometricPosition)">
|
887
|
+
<summary>The Inequality comparison of two positions.</summary>
|
888
|
+
<returns>Is true if left is not equal to right.</returns>
|
889
|
+
<param name="left">The first position.</param>
|
890
|
+
<param name="right">The other position.</param>
|
891
|
+
</member>
|
892
|
+
<member name="P:System.Spatial.GeometricPosition.X">
|
893
|
+
<summary>The x portion of a position.</summary>
|
894
|
+
<returns>The x portion of a position.</returns>
|
895
|
+
</member>
|
896
|
+
<member name="P:System.Spatial.GeometricPosition.Y">
|
897
|
+
<summary>The y portion of a position.</summary>
|
898
|
+
<returns>The y portion of a position.</returns>
|
899
|
+
</member>
|
900
|
+
<member name="P:System.Spatial.GeometricPosition.Z">
|
901
|
+
<summary>The altitude portion of a position.</summary>
|
902
|
+
<returns>The altitude portion of a position.</returns>
|
903
|
+
</member>
|
904
|
+
<member name="T:System.Spatial.GeometricSurface">
|
905
|
+
<summary>Represents a geometric surface.</summary>
|
906
|
+
</member>
|
907
|
+
<member name="T:System.Spatial.Geometry">
|
908
|
+
<summary>The base class of geographic shapes.</summary>
|
909
|
+
</member>
|
910
|
+
<member name="M:System.Spatial.Geometry.#ctor(System.Spatial.CoordinateSystem)">
|
911
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.Geometry" /> class.</summary>
|
912
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
913
|
+
</member>
|
914
|
+
<member name="P:System.Spatial.Geometry.CoordinateSystem">
|
915
|
+
<summary>The SRID of this instance of geometry.</summary>
|
916
|
+
<returns>The SRID of this instance of geometry.</returns>
|
917
|
+
</member>
|
918
|
+
<member name="M:System.Spatial.Geometry.CopyFrom(System.Spatial.Geometry)">
|
919
|
+
<summary>The copy initializer.</summary>
|
920
|
+
<param name="geometry">The geometry to copy.</param>
|
921
|
+
</member>
|
922
|
+
<member name="M:System.Spatial.Geometry.Equals(System.Object)">
|
923
|
+
<summary>Determines whether this instance and another specified geometry instance have the same value. </summary>
|
924
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
925
|
+
<param name="obj">The geometry to compare to this instance.</param>
|
926
|
+
</member>
|
927
|
+
<member name="M:System.Spatial.Geometry.Equals(System.Spatial.Geometry)">
|
928
|
+
<summary>Determines whether this instance and another specified geometry instance have the same value.</summary>
|
929
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
930
|
+
<param name="other">The geometry to compare to this instance.</param>
|
931
|
+
</member>
|
932
|
+
<member name="M:System.Spatial.Geometry.Equals(System.Spatial.SpatialEquality,System.Spatial.Geometry)">
|
933
|
+
<summary>Determines whether this instance and another specified geometry instance have the same value.</summary>
|
934
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
935
|
+
<param name="comparison">The spatial equality instance to use.</param>
|
936
|
+
<param name="other">The geometry to compare to this instance.</param>
|
937
|
+
</member>
|
938
|
+
<member name="M:System.Spatial.Geometry.Equals(System.Spatial.SpatialEquality,System.Spatial.Geometry,System.Spatial.Geometry)">
|
939
|
+
<summary>Determines whether the given two geometry instances have the same value.</summary>
|
940
|
+
<returns>Is true if the value of the value parameter is the same as this instance; otherwise, is false.</returns>
|
941
|
+
<param name="comparison">The spatial equality instance to use.</param>
|
942
|
+
<param name="left">The first geometry instance.</param>
|
943
|
+
<param name="right">The other geometry instance to compare.</param>
|
944
|
+
</member>
|
945
|
+
<member name="M:System.Spatial.Geometry.GetHashCode">
|
946
|
+
<summary>Computes the hash code for this geometry instance.</summary>
|
947
|
+
<returns>The hashcode for this geometry instance.</returns>
|
948
|
+
</member>
|
949
|
+
<member name="M:System.Spatial.Geometry.GetHashCode(System.Spatial.SpatialEquality)">
|
950
|
+
<summary>Computes the hash code for this geometry instance using the given spatial equality instance.</summary>
|
951
|
+
<returns>The hash code for this geometry instance.</returns>
|
952
|
+
<param name="comparison">The spatial equality instance to use.</param>
|
953
|
+
</member>
|
954
|
+
<member name="P:System.Spatial.Geometry.IsEmpty">
|
955
|
+
<summary>The is geometry empty.</summary>
|
956
|
+
<returns>Is geometry empty.</returns>
|
957
|
+
</member>
|
958
|
+
<member name="M:System.Spatial.Geometry.op_Equality(System.Spatial.Geometry,System.Spatial.Geometry)">
|
959
|
+
<summary>Determines whether the given two geometry instances have the same value.</summary>
|
960
|
+
<returns>Is true if the value of left is the same as the value of right; otherwise, is false.</returns>
|
961
|
+
<param name="left">The first geometry instance.</param>
|
962
|
+
<param name="right">The second geometry instance.</param>
|
963
|
+
</member>
|
964
|
+
<member name="M:System.Spatial.Geometry.op_Inequality(System.Spatial.Geometry,System.Spatial.Geometry)">
|
965
|
+
<summary>Determines whether the given two geometry instances have different values. </summary>
|
966
|
+
<returns>Is true if the value of left is different from the value of right; otherwise, is false.</returns>
|
967
|
+
<param name="left">The first geometry instance.</param>
|
968
|
+
<param name="right">The second geometry instance.</param>
|
969
|
+
</member>
|
970
|
+
<member name="M:System.Spatial.Geometry.SendTo(System.Spatial.GeometryChain)">
|
971
|
+
<summary>Sends the current spatial object to the given pipeline.</summary>
|
972
|
+
<param name="chain">The spatial pipeline.</param>
|
973
|
+
</member>
|
974
|
+
<member name="T:System.Spatial.GeometryBuilder">
|
975
|
+
<summary>The builder for geometry types.</summary>
|
976
|
+
</member>
|
977
|
+
<member name="M:System.Spatial.GeometryBuilder.#ctor">
|
978
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.GeometryBuilder" /> class.</summary>
|
979
|
+
</member>
|
980
|
+
<member name="P:System.Spatial.GeometryBuilder.ConstructedGeometry">
|
981
|
+
<summary>Gets the geometry object that was constructed.</summary>
|
982
|
+
<returns>The geometry object that was constructed.</returns>
|
983
|
+
</member>
|
984
|
+
<member name="M:System.Spatial.GeometryBuilder.Create">
|
985
|
+
<summary>Creates the implementation of the builder.</summary>
|
986
|
+
<returns>Returns the created geometry builder implementation.</returns>
|
987
|
+
</member>
|
988
|
+
<member name="T:System.Spatial.GeometryChain">
|
989
|
+
<summary>This is the definition of the geometry chain api.</summary>
|
990
|
+
</member>
|
991
|
+
<member name="M:System.Spatial.GeometryChain.#ctor">
|
992
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.GeometryChain" /> class.</summary>
|
993
|
+
</member>
|
994
|
+
<member name="M:System.Spatial.GeometryChain.AddGeometricControlPoint(System.Spatial.GeometricPosition)">
|
995
|
+
<summary>Draws a point in the specified coordinate.</summary>
|
996
|
+
<param name="position">The next position.</param>
|
997
|
+
</member>
|
998
|
+
<member name="M:System.Spatial.GeometryChain.BeginFigure">
|
999
|
+
<summary>Begins drawing a figure.</summary>
|
1000
|
+
</member>
|
1001
|
+
<member name="M:System.Spatial.GeometryChain.BeginGeometry(System.Spatial.SpatialType)">
|
1002
|
+
<summary>Begins drawing a spatial object.</summary>
|
1003
|
+
<param name="type">The spatial type of the object.</param>
|
1004
|
+
</member>
|
1005
|
+
<member name="M:System.Spatial.GeometryChain.EndFigure">
|
1006
|
+
<summary>Ends the current figure.</summary>
|
1007
|
+
</member>
|
1008
|
+
<member name="M:System.Spatial.GeometryChain.EndGeometry">
|
1009
|
+
<summary>Ends the current spatial object.</summary>
|
1010
|
+
</member>
|
1011
|
+
<member name="M:System.Spatial.GeometryChain.Reset">
|
1012
|
+
<summary>Sets up the pipeline for reuse.</summary>
|
1013
|
+
</member>
|
1014
|
+
<member name="M:System.Spatial.GeometryChain.SetCoordinateSystem(System.Spatial.CoordinateSystem)">
|
1015
|
+
<summary>Sets the coordinate system.</summary>
|
1016
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1017
|
+
</member>
|
1018
|
+
<member name="T:System.Spatial.GeometryCollection">
|
1019
|
+
<summary>The geometry collection.</summary>
|
1020
|
+
</member>
|
1021
|
+
<member name="M:System.Spatial.GeometryCollection.#ctor(System.Spatial.CoordinateSystem)">
|
1022
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.GeometryCollection" /> class.</summary>
|
1023
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1024
|
+
</member>
|
1025
|
+
<member name="P:System.Spatial.GeometryCollection.Geometry">
|
1026
|
+
<summary>Returns the geometry instances in this collection. </summary>
|
1027
|
+
<returns>The geometry instances in this collection.</returns>
|
1028
|
+
</member>
|
1029
|
+
<member name="T:System.Spatial.GeometryFactory">
|
1030
|
+
<summary>The geometry factory.</summary>
|
1031
|
+
</member>
|
1032
|
+
<member name="M:System.Spatial.GeometryFactory.Collection">
|
1033
|
+
<summary>Creates a geometric collection.</summary>
|
1034
|
+
<returns>A geometric collection factory.</returns>
|
1035
|
+
</member>
|
1036
|
+
<member name="M:System.Spatial.GeometryFactory.Collection(System.Spatial.CoordinateSystem)">
|
1037
|
+
<summary>Creates a geometric collection.</summary>
|
1038
|
+
<returns>A geometric collection factory.</returns>
|
1039
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1040
|
+
</member>
|
1041
|
+
<member name="M:System.Spatial.GeometryFactory.LineString">
|
1042
|
+
<summary>Creates an empty geometric line string.</summary>
|
1043
|
+
<returns>A geometric line string factory.</returns>
|
1044
|
+
</member>
|
1045
|
+
<member name="M:System.Spatial.GeometryFactory.LineString(System.Double,System.Double)">
|
1046
|
+
<summary>Creates a geometric line string with a starting position.</summary>
|
1047
|
+
<returns>A geometric line string factory.</returns>
|
1048
|
+
<param name="x">X</param>
|
1049
|
+
<param name="y">Y</param>
|
1050
|
+
</member>
|
1051
|
+
<member name="M:System.Spatial.GeometryFactory.LineString(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1052
|
+
<summary>Creates a geometric line string with a starting position.</summary>
|
1053
|
+
<returns>A geometric line string factory.</returns>
|
1054
|
+
<param name="x">X</param>
|
1055
|
+
<param name="y">Y</param>
|
1056
|
+
<param name="z">Z</param>
|
1057
|
+
<param name="m">M</param>
|
1058
|
+
</member>
|
1059
|
+
<member name="M:System.Spatial.GeometryFactory.LineString(System.Spatial.CoordinateSystem)">
|
1060
|
+
<summary>Creates an empty geometric line string.</summary>
|
1061
|
+
<returns>A geometric line string factory.</returns>
|
1062
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1063
|
+
</member>
|
1064
|
+
<member name="M:System.Spatial.GeometryFactory.LineString(System.Spatial.CoordinateSystem,System.Double,System.Double)">
|
1065
|
+
<summary>Creates a geometric line string with a starting position.</summary>
|
1066
|
+
<returns>A geometric line string factory.</returns>
|
1067
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1068
|
+
<param name="x">X</param>
|
1069
|
+
<param name="y">Y</param>
|
1070
|
+
</member>
|
1071
|
+
<member name="M:System.Spatial.GeometryFactory.LineString(System.Spatial.CoordinateSystem,System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1072
|
+
<summary>Creates a geometric line string with a starting position.</summary>
|
1073
|
+
<returns>A geometric line string factory.</returns>
|
1074
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1075
|
+
<param name="x">X</param>
|
1076
|
+
<param name="y">Y</param>
|
1077
|
+
<param name="z">Z</param>
|
1078
|
+
<param name="m">M</param>
|
1079
|
+
</member>
|
1080
|
+
<member name="M:System.Spatial.GeometryFactory.MultiLineString">
|
1081
|
+
<summary>Creates a geometric multi-line string.</summary>
|
1082
|
+
<returns>A geometric multi-line string factory.</returns>
|
1083
|
+
</member>
|
1084
|
+
<member name="M:System.Spatial.GeometryFactory.MultiLineString(System.Spatial.CoordinateSystem)">
|
1085
|
+
<summary>Creates a geometric multi-line string.</summary>
|
1086
|
+
<returns>A geometric multi-line string factory.</returns>
|
1087
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1088
|
+
</member>
|
1089
|
+
<member name="M:System.Spatial.GeometryFactory.MultiPoint">
|
1090
|
+
<summary>Creates a geometric multipoint.</summary>
|
1091
|
+
<returns>A geometric multipoint factory.</returns>
|
1092
|
+
</member>
|
1093
|
+
<member name="M:System.Spatial.GeometryFactory.MultiPoint(System.Spatial.CoordinateSystem)">
|
1094
|
+
<summary>Creates a geometric multipoint.</summary>
|
1095
|
+
<returns>A geometric multipoint factory.</returns>
|
1096
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1097
|
+
</member>
|
1098
|
+
<member name="M:System.Spatial.GeometryFactory.MultiPolygon">
|
1099
|
+
<summary>Creates a geometric multipolygon.</summary>
|
1100
|
+
<returns>A geometric multipolygon factory.</returns>
|
1101
|
+
</member>
|
1102
|
+
<member name="M:System.Spatial.GeometryFactory.MultiPolygon(System.Spatial.CoordinateSystem)">
|
1103
|
+
<summary>Creates a geometric multipolygon.</summary>
|
1104
|
+
<returns>A geometric multipolygon factory.</returns>
|
1105
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1106
|
+
</member>
|
1107
|
+
<member name="M:System.Spatial.GeometryFactory.Point">
|
1108
|
+
<summary>Creates a factory with an empty geometric point.</summary>
|
1109
|
+
<returns>A geometric point factory.</returns>
|
1110
|
+
</member>
|
1111
|
+
<member name="M:System.Spatial.GeometryFactory.Point(System.Double,System.Double)">
|
1112
|
+
<summary>Creates a geometric point.</summary>
|
1113
|
+
<returns>A geometric point factory.</returns>
|
1114
|
+
<param name="x">X</param>
|
1115
|
+
<param name="y">Y</param>
|
1116
|
+
</member>
|
1117
|
+
<member name="M:System.Spatial.GeometryFactory.Point(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1118
|
+
<summary>Creates a geometric point.</summary>
|
1119
|
+
<returns>A geometric point factory.</returns>
|
1120
|
+
<param name="x">X</param>
|
1121
|
+
<param name="y">Y</param>
|
1122
|
+
<param name="z">Z</param>
|
1123
|
+
<param name="m">M</param>
|
1124
|
+
</member>
|
1125
|
+
<member name="M:System.Spatial.GeometryFactory.Point(System.Spatial.CoordinateSystem)">
|
1126
|
+
<summary>Creates a factory with an empty geometric point.</summary>
|
1127
|
+
<returns>A geometric point factory.</returns>
|
1128
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1129
|
+
</member>
|
1130
|
+
<member name="M:System.Spatial.GeometryFactory.Point(System.Spatial.CoordinateSystem,System.Double,System.Double)">
|
1131
|
+
<summary>Creates a geometric point.</summary>
|
1132
|
+
<returns>A geometric point factory.</returns>
|
1133
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1134
|
+
<param name="x">X</param>
|
1135
|
+
<param name="y">Y</param>
|
1136
|
+
</member>
|
1137
|
+
<member name="M:System.Spatial.GeometryFactory.Point(System.Spatial.CoordinateSystem,System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1138
|
+
<summary>Creates a geometric point.</summary>
|
1139
|
+
<returns>A geometric point factory.</returns>
|
1140
|
+
<param name="coordinateSystem">The coordinate system</param>
|
1141
|
+
<param name="x">X</param>
|
1142
|
+
<param name="y">Y</param>
|
1143
|
+
<param name="z">Z</param>
|
1144
|
+
<param name="m">M</param>
|
1145
|
+
</member>
|
1146
|
+
<member name="M:System.Spatial.GeometryFactory.Polygon">
|
1147
|
+
<summary>Creates a geometric polygon.</summary>
|
1148
|
+
<returns>A geometric polygon factory.</returns>
|
1149
|
+
</member>
|
1150
|
+
<member name="M:System.Spatial.GeometryFactory.Polygon(System.Spatial.CoordinateSystem)">
|
1151
|
+
<summary>Creates a geometric polygon.</summary>
|
1152
|
+
<returns>A geometric polygon factory.</returns>
|
1153
|
+
<param name="coordinateSystem">The coordinate system.</param>
|
1154
|
+
</member>
|
1155
|
+
<member name="T:System.Spatial.GeometryFactory`1">
|
1156
|
+
<summary>The spatial factory.</summary>
|
1157
|
+
<typeparam name="T">The target type.</typeparam>
|
1158
|
+
</member>
|
1159
|
+
<member name="M:System.Spatial.GeometryFactory`1.AddLine(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1160
|
+
<summary>Draws a point in the specified coordinate.</summary>
|
1161
|
+
<param name="x">X or latitude coordinate.</param>
|
1162
|
+
<param name="y">Y or longitude coordinate.</param>
|
1163
|
+
<param name="z">Z coordinate</param>
|
1164
|
+
<param name="m">M coordinate</param>
|
1165
|
+
</member>
|
1166
|
+
<member name="M:System.Spatial.GeometryFactory`1.BeginFigure">
|
1167
|
+
<summary>Begins drawing a figure.</summary>
|
1168
|
+
</member>
|
1169
|
+
<member name="M:System.Spatial.GeometryFactory`1.BeginGeo(System.Spatial.SpatialType)">
|
1170
|
+
<summary>Begins a spatial object.</summary>
|
1171
|
+
<param name="type">The spatial type.</param>
|
1172
|
+
</member>
|
1173
|
+
<member name="M:System.Spatial.GeometryFactory`1.Build">
|
1174
|
+
<summary>Finishes the current geometry.</summary>
|
1175
|
+
<returns>Returns <see cref="{0}" />.</returns>
|
1176
|
+
</member>
|
1177
|
+
<member name="M:System.Spatial.GeometryFactory`1.Collection">
|
1178
|
+
<summary>Starts a new collection.</summary>
|
1179
|
+
<returns>The current instance of geometry factory.</returns>
|
1180
|
+
</member>
|
1181
|
+
<member name="M:System.Spatial.GeometryFactory`1.EndFigure">
|
1182
|
+
<summary>Ends the figure set on the current node.</summary>
|
1183
|
+
</member>
|
1184
|
+
<member name="M:System.Spatial.GeometryFactory`1.EndGeo">
|
1185
|
+
<summary>Ends the current spatial object.</summary>
|
1186
|
+
</member>
|
1187
|
+
<member name="M:System.Spatial.GeometryFactory`1.LineString">
|
1188
|
+
<summary>Starts a new empty line string.</summary>
|
1189
|
+
<returns>The current instance of geometry factory.</returns>
|
1190
|
+
</member>
|
1191
|
+
<member name="M:System.Spatial.GeometryFactory`1.LineString(System.Double,System.Double)">
|
1192
|
+
<summary>Starts a new line string.</summary>
|
1193
|
+
<returns>The current instance of geometry factory.</returns>
|
1194
|
+
<param name="x">The latitude.</param>
|
1195
|
+
<param name="y">The longitude.</param>
|
1196
|
+
</member>
|
1197
|
+
<member name="M:System.Spatial.GeometryFactory`1.LineString(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1198
|
+
<summary>Starts a new line string.</summary>
|
1199
|
+
<returns>The current instance of geometry factory.</returns>
|
1200
|
+
<param name="x">The latitude.</param>
|
1201
|
+
<param name="y">The longitude.</param>
|
1202
|
+
<param name="z">Z</param>
|
1203
|
+
<param name="m">M</param>
|
1204
|
+
</member>
|
1205
|
+
<member name="M:System.Spatial.GeometryFactory`1.LineTo(System.Double,System.Double)">
|
1206
|
+
<summary>Adds a new point in the current line figure.</summary>
|
1207
|
+
<returns>The current instance of geometry factory.</returns>
|
1208
|
+
<param name="x">The latitude.</param>
|
1209
|
+
<param name="y">The longitude.</param>
|
1210
|
+
</member>
|
1211
|
+
<member name="M:System.Spatial.GeometryFactory`1.LineTo(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1212
|
+
<summary>Adds a new point in the current line figure.</summary>
|
1213
|
+
<returns>The current instance of geometry factory.</returns>
|
1214
|
+
<param name="x">The latitude.</param>
|
1215
|
+
<param name="y">The longitude.</param>
|
1216
|
+
<param name="z">Z</param>
|
1217
|
+
<param name="m">M</param>
|
1218
|
+
</member>
|
1219
|
+
<member name="M:System.Spatial.GeometryFactory`1.MultiLineString">
|
1220
|
+
<summary>Starts a new multi-line string.</summary>
|
1221
|
+
<returns>The current instance of geometry factory.</returns>
|
1222
|
+
</member>
|
1223
|
+
<member name="M:System.Spatial.GeometryFactory`1.MultiPoint">
|
1224
|
+
<summary>Starts a new multipoint.</summary>
|
1225
|
+
<returns>The current instance of geometry factory.</returns>
|
1226
|
+
</member>
|
1227
|
+
<member name="M:System.Spatial.GeometryFactory`1.MultiPolygon">
|
1228
|
+
<summary>Starts a new multipolygon.</summary>
|
1229
|
+
<returns>The current instance of geometry factory.</returns>
|
1230
|
+
</member>
|
1231
|
+
<member name="M:System.Spatial.GeometryFactory`1.op_Implicit(System.Spatial.GeometryFactory{`0})~`0">
|
1232
|
+
<returns>Returns <see cref="T:System.Spatial.GeometryFactory`1" />.</returns>
|
1233
|
+
</member>
|
1234
|
+
<member name="M:System.Spatial.GeometryFactory`1.Point">
|
1235
|
+
<summary>Starts a new empty point.</summary>
|
1236
|
+
<returns>The current instance of geometry factory.</returns>
|
1237
|
+
</member>
|
1238
|
+
<member name="M:System.Spatial.GeometryFactory`1.Point(System.Double,System.Double)">
|
1239
|
+
<summary>Starts a new point.</summary>
|
1240
|
+
<returns>The current instance of geometry factory.</returns>
|
1241
|
+
<param name="x">The latitude.</param>
|
1242
|
+
<param name="y">The longitude.</param>
|
1243
|
+
</member>
|
1244
|
+
<member name="M:System.Spatial.GeometryFactory`1.Point(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1245
|
+
<summary>Starts a new point.</summary>
|
1246
|
+
<returns>The current instance of geometry factory.</returns>
|
1247
|
+
<param name="x">The latitude.</param>
|
1248
|
+
<param name="y">The longitude.</param>
|
1249
|
+
<param name="z">Z</param>
|
1250
|
+
<param name="m">M</param>
|
1251
|
+
</member>
|
1252
|
+
<member name="M:System.Spatial.GeometryFactory`1.Polygon">
|
1253
|
+
<summary>Starts a new polygon.</summary>
|
1254
|
+
<returns>The current instance of geometry factory.</returns>
|
1255
|
+
</member>
|
1256
|
+
<member name="M:System.Spatial.GeometryFactory`1.Ring(System.Double,System.Double)">
|
1257
|
+
<summary>Starts a new polygon ring.</summary>
|
1258
|
+
<returns>The current instance of geometry factory.</returns>
|
1259
|
+
<param name="x">The latitude.</param>
|
1260
|
+
<param name="y">The longitude.</param>
|
1261
|
+
</member>
|
1262
|
+
<member name="M:System.Spatial.GeometryFactory`1.Ring(System.Double,System.Double,System.Nullable{System.Double},System.Nullable{System.Double})">
|
1263
|
+
<summary>Starts a new polygon ring.</summary>
|
1264
|
+
<returns>The current instance of geometry factory.</returns>
|
1265
|
+
<param name="x">The latitude.</param>
|
1266
|
+
<param name="y">The longitude.</param>
|
1267
|
+
<param name="z">Z</param>
|
1268
|
+
<param name="m">M</param>
|
1269
|
+
</member>
|
1270
|
+
<member name="T:System.Spatial.GeometryOperationsExtensions">
|
1271
|
+
<summary>The extension methods for the geographic operations.</summary>
|
1272
|
+
</member>
|
1273
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Area(System.Spatial.GeometricSurface)">
|
1274
|
+
<summary>The geometric area.</summary>
|
1275
|
+
<returns>The operation result.</returns>
|
1276
|
+
<param name="operand">The operand.</param>
|
1277
|
+
</member>
|
1278
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Boundary(System.Spatial.Geometry)">
|
1279
|
+
<summary>The geometric boundary.</summary>
|
1280
|
+
<returns>The operation result.</returns>
|
1281
|
+
<param name="operand">The operand.</param>
|
1282
|
+
</member>
|
1283
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Buffer(System.Spatial.Geometry,System.Double,System.Double)">
|
1284
|
+
<summary>The geometric buffer.</summary>
|
1285
|
+
<returns>buffered geometry.</returns>
|
1286
|
+
<param name="operand">The operand.</param>
|
1287
|
+
<param name="distance">The distance to buffer.</param>
|
1288
|
+
<param name="tolerance">The tolerance of the distance.</param>
|
1289
|
+
</member>
|
1290
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Centroid(System.Spatial.GeometricSurface)">
|
1291
|
+
<summary>The geometric centroid.</summary>
|
1292
|
+
<returns>The operation result.</returns>
|
1293
|
+
<param name="operand">The operand.</param>
|
1294
|
+
</member>
|
1295
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Contains(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1296
|
+
<summary>The geometric contains.</summary>
|
1297
|
+
<returns>The operation result.</returns>
|
1298
|
+
<param name="operand1">The operand 1.</param>
|
1299
|
+
<param name="operand2">The operand 2.</param>
|
1300
|
+
</member>
|
1301
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.ConvexHull(System.Spatial.Geometry)">
|
1302
|
+
<summary>The geometric convex hull.</summary>
|
1303
|
+
<returns>The operation result.</returns>
|
1304
|
+
<param name="operand">The operand.</param>
|
1305
|
+
</member>
|
1306
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Crosses(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1307
|
+
<summary>The geometric crosses.</summary>
|
1308
|
+
<returns>The operation result.</returns>
|
1309
|
+
<param name="operand1">The operand 1.</param>
|
1310
|
+
<param name="operand2">The operand 2.</param>
|
1311
|
+
</member>
|
1312
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Difference(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1313
|
+
<summary>The geometric difference.</summary>
|
1314
|
+
<returns>The operation result.</returns>
|
1315
|
+
<param name="operand1">The operand 1.</param>
|
1316
|
+
<param name="operand2">The operand 2.</param>
|
1317
|
+
</member>
|
1318
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Distance(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1319
|
+
<summary>The geometric distance.</summary>
|
1320
|
+
<returns>The operation result.</returns>
|
1321
|
+
<param name="operand1">The operand 1.</param>
|
1322
|
+
<param name="operand2">The operand 2.</param>
|
1323
|
+
</member>
|
1324
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Envelope(System.Spatial.Geometry)">
|
1325
|
+
<summary>The geometric envelope.</summary>
|
1326
|
+
<returns>The operation result.</returns>
|
1327
|
+
<param name="operand">The operand.</param>
|
1328
|
+
</member>
|
1329
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.GeometricEquals(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1330
|
+
<summary>The geometric equals.</summary>
|
1331
|
+
<returns>The operation result.</returns>
|
1332
|
+
<param name="operand1">The operand 1.</param>
|
1333
|
+
<param name="operand2">The operand 2.</param>
|
1334
|
+
</member>
|
1335
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.GetBounds(System.Spatial.Geometry,System.Double@,System.Double@,System.Double@,System.Double@)">
|
1336
|
+
<summary>The geometric get bounds.</summary>
|
1337
|
+
<param name="operand">The operand.</param>
|
1338
|
+
<param name="minX">The minimum X.</param>
|
1339
|
+
<param name="minY">The minimum Y.</param>
|
1340
|
+
<param name="maxX">The maximum X.</param>
|
1341
|
+
<param name="maxY">The maximum Y.</param>
|
1342
|
+
</member>
|
1343
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Intersection(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1344
|
+
<summary>The geometric intersection.</summary>
|
1345
|
+
<returns>The operation result.</returns>
|
1346
|
+
<param name="operand1">The operand 1.</param>
|
1347
|
+
<param name="operand2">The operand 2.</param>
|
1348
|
+
</member>
|
1349
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Intersects(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1350
|
+
<summary>The geometric intersects.</summary>
|
1351
|
+
<returns>The operation result.</returns>
|
1352
|
+
<param name="operand1">The operand 1.</param>
|
1353
|
+
<param name="operand2">The operand 2.</param>
|
1354
|
+
</member>
|
1355
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.IsSimple(System.Spatial.Geometry)">
|
1356
|
+
<summary>The geometric is simple.</summary>
|
1357
|
+
<returns>The operation result.</returns>
|
1358
|
+
<param name="operand">The operand.</param>
|
1359
|
+
</member>
|
1360
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.IsValid(System.Spatial.Geometry)">
|
1361
|
+
<summary>The geometric is valid.</summary>
|
1362
|
+
<returns>The operation result.</returns>
|
1363
|
+
<param name="operand">The operand.</param>
|
1364
|
+
</member>
|
1365
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Length(System.Spatial.GeometricCurve)">
|
1366
|
+
<summary>The geometric length.</summary>
|
1367
|
+
<returns>The operation result.</returns>
|
1368
|
+
<param name="operand">The operand.</param>
|
1369
|
+
</member>
|
1370
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.MakeValid(System.Spatial.Geometry)">
|
1371
|
+
<summary>The geometric make valid.</summary>
|
1372
|
+
<returns>The operation result.</returns>
|
1373
|
+
<param name="operand">The operand.</param>
|
1374
|
+
</member>
|
1375
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Overlaps(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1376
|
+
<summary>The geometric overlaps.</summary>
|
1377
|
+
<returns>The operation result.</returns>
|
1378
|
+
<param name="operand1">The operand 1.</param>
|
1379
|
+
<param name="operand2">The operand 2.</param>
|
1380
|
+
</member>
|
1381
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.PointOnSurface(System.Spatial.GeometricSurface)">
|
1382
|
+
<summary>The geometric point on surface.</summary>
|
1383
|
+
<returns>The operation result.</returns>
|
1384
|
+
<param name="operand">The operand.</param>
|
1385
|
+
</member>
|
1386
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Reduce(System.Spatial.Geometry,System.Double)">
|
1387
|
+
<summary>The geometric reduce.</summary>
|
1388
|
+
<returns>The operation result.</returns>
|
1389
|
+
<param name="operand">The operand.</param>
|
1390
|
+
<param name="tolerance">The tolerance of the operation.</param>
|
1391
|
+
</member>
|
1392
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.SymmetricDifference(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1393
|
+
<summary>The geometric symmetric difference.</summary>
|
1394
|
+
<returns>The operation result.</returns>
|
1395
|
+
<param name="operand1">The operand 1.</param>
|
1396
|
+
<param name="operand2">The operand 2.</param>
|
1397
|
+
</member>
|
1398
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Touches(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1399
|
+
<summary>The geometric touches.</summary>
|
1400
|
+
<returns>The operation result.</returns>
|
1401
|
+
<param name="operand1">The operand 1.</param>
|
1402
|
+
<param name="operand2">The operand 2.</param>
|
1403
|
+
</member>
|
1404
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Union(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1405
|
+
<summary>The geometric union.</summary>
|
1406
|
+
<returns>The operation result.</returns>
|
1407
|
+
<param name="operand1">The operand 1.</param>
|
1408
|
+
<param name="operand2">The operand 2.</param>
|
1409
|
+
</member>
|
1410
|
+
<member name="M:System.Spatial.GeometryOperationsExtensions.Within(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1411
|
+
<summary>The geometric within.</summary>
|
1412
|
+
<returns>The operation result.</returns>
|
1413
|
+
<param name="operand1">The operand 1.</param>
|
1414
|
+
<param name="operand2">The operand 2.</param>
|
1415
|
+
</member>
|
1416
|
+
<member name="T:System.Spatial.GmlFormat">
|
1417
|
+
<summary>The object to move spatial types to and from the GML format.</summary>
|
1418
|
+
</member>
|
1419
|
+
<member name="M:System.Spatial.GmlFormat.#ctor">
|
1420
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.GmlFormat" /> class.</summary>
|
1421
|
+
</member>
|
1422
|
+
<member name="M:System.Spatial.GmlFormat.Create">
|
1423
|
+
<summary>Creates the implementation of the format.</summary>
|
1424
|
+
<returns>Returns the created GmlFormat implementation.</returns>
|
1425
|
+
</member>
|
1426
|
+
<member name="T:System.Spatial.IGeographyProvider">
|
1427
|
+
<summary>Provides access to the constructed geography.</summary>
|
1428
|
+
</member>
|
1429
|
+
<member name="P:System.Spatial.IGeographyProvider.ConstructedGeography">
|
1430
|
+
<summary>Gets the geography object that was constructed.</summary>
|
1431
|
+
</member>
|
1432
|
+
<member name="T:System.Spatial.IGeometryProvider">
|
1433
|
+
<summary>Provides access to the constructed geometry.</summary>
|
1434
|
+
</member>
|
1435
|
+
<member name="P:System.Spatial.IGeometryProvider.ConstructedGeometry">
|
1436
|
+
<summary>Gets the geometry object that was constructed.</summary>
|
1437
|
+
</member>
|
1438
|
+
<member name="T:System.Spatial.IShapeProvider">
|
1439
|
+
<summary>Provides access to the constructed geography or geometry.</summary>
|
1440
|
+
</member>
|
1441
|
+
<member name="T:System.Spatial.ISpatial">
|
1442
|
+
<summary>The spatial interface.</summary>
|
1443
|
+
</member>
|
1444
|
+
<member name="P:System.Spatial.ISpatial.CoordinateSystem">
|
1445
|
+
<summary>The coordinate system.</summary>
|
1446
|
+
</member>
|
1447
|
+
<member name="P:System.Spatial.ISpatial.IsEmpty">
|
1448
|
+
<summary>The is spatial type empty.</summary>
|
1449
|
+
</member>
|
1450
|
+
<member name="T:System.Spatial.ParseErrorException">
|
1451
|
+
<summary>The exception thrown on an unsuccessful parsing of the serialized format. </summary>
|
1452
|
+
</member>
|
1453
|
+
<member name="M:System.Spatial.ParseErrorException.#ctor">
|
1454
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.ParseErrorException" /><see cref="T:System.Spatial.ParseErrorException" /> class.</summary>
|
1455
|
+
</member>
|
1456
|
+
<member name="M:System.Spatial.ParseErrorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
1457
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.ParseErrorException" /> class.</summary>
|
1458
|
+
<param name="info">The instance that holds the serialized object data about the exception being thrown.</param>
|
1459
|
+
<param name="context">The instance that contains contextual information about the source or destination.</param>
|
1460
|
+
</member>
|
1461
|
+
<member name="M:System.Spatial.ParseErrorException.#ctor(System.String)">
|
1462
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.ParseErrorException" /> class.</summary>
|
1463
|
+
<param name="message">The message about the exception.</param>
|
1464
|
+
</member>
|
1465
|
+
<member name="M:System.Spatial.ParseErrorException.#ctor(System.String,System.Exception)">
|
1466
|
+
<summary>Creates a new instance of the <see cref="T:System.Spatial.ParseErrorException" /> class.</summary>
|
1467
|
+
<param name="message">The message about the exception.</param>
|
1468
|
+
<param name="innerException">The exception that preceded this one.</param>
|
1469
|
+
</member>
|
1470
|
+
<member name="T:System.Spatial.SpatialChain">
|
1471
|
+
<summary>One link of a geospatial chain.</summary>
|
1472
|
+
</member>
|
1473
|
+
<member name="M:System.Spatial.SpatialChain.#ctor">
|
1474
|
+
<summary> Initializes a new instance of the <see cref="T:System.Spatial.SpatialChain" /> class. </summary>
|
1475
|
+
</member>
|
1476
|
+
<member name="M:System.Spatial.SpatialChain.#ctor(System.Spatial.GeographyChain,System.Spatial.GeometryChain)">
|
1477
|
+
<summary> Initializes a new instance of the <see cref="T:System.Spatial.SpatialChain" /> class. </summary>
|
1478
|
+
<param name="geographyChain">The geography chain.</param>
|
1479
|
+
<param name="geometryChain">The geometry chain.</param>
|
1480
|
+
</member>
|
1481
|
+
<member name="M:System.Spatial.SpatialChain.ChainTo(System.Spatial.SpatialChain)">
|
1482
|
+
<summary>Adds the next pipeline.</summary>
|
1483
|
+
<returns>The last pipe segment in the chain, usually the one just created.</returns>
|
1484
|
+
<param name="destination">The next pipeline.</param>
|
1485
|
+
</member>
|
1486
|
+
<member name="P:System.Spatial.SpatialChain.GeographyChain">
|
1487
|
+
<summary>Gets the geography.</summary>
|
1488
|
+
</member>
|
1489
|
+
<member name="P:System.Spatial.SpatialChain.GeometryChain">
|
1490
|
+
<summary>Gets the geometry.</summary>
|
1491
|
+
</member>
|
1492
|
+
<member name="M:System.Spatial.SpatialChain.op_Implicit(System.Spatial.SpatialChain)~System.Spatial.GeographyChain">
|
1493
|
+
<summary>The spatial geography chain.</summary>
|
1494
|
+
<returns>Returns <see cref="T:System.Spatial.GeographyChain" />.</returns>
|
1495
|
+
</member>
|
1496
|
+
<member name="M:System.Spatial.SpatialChain.op_Implicit(System.Spatial.SpatialChain)~System.Spatial.GeometryChain">
|
1497
|
+
<summary>The spatial geometry chain.</summary>
|
1498
|
+
<returns>Returns <see cref="T:System.Spatial.GeometryChain" />.</returns>
|
1499
|
+
</member>
|
1500
|
+
<member name="P:System.Spatial.SpatialChain.StartingLink">
|
1501
|
+
<summary>Gets or sets the starting link. </summary>
|
1502
|
+
<returns>The starting link. </returns>
|
1503
|
+
</member>
|
1504
|
+
<member name="T:System.Spatial.SpatialEquality">
|
1505
|
+
<summary>Abstract class so that we can add items later to support new spatial types. </summary>
|
1506
|
+
</member>
|
1507
|
+
<member name="M:System.Spatial.SpatialEquality.#ctor">
|
1508
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.SpatialEquality" /> class.</summary>
|
1509
|
+
</member>
|
1510
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.FullGlobe,System.Spatial.FullGlobe)">
|
1511
|
+
<summary>Determines if the given two instances of full globe are equal. </summary>
|
1512
|
+
<returns>Is true if the two full globe instances are equal, otherwise returns false.</returns>
|
1513
|
+
<param name="left">The first full globe instance.</param>
|
1514
|
+
<param name="right">The second full globe instance.</param>
|
1515
|
+
</member>
|
1516
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographicLineString,System.Spatial.GeographicLineString)">
|
1517
|
+
<summary>Determines if the given two instances of geographic line string are equal. </summary>
|
1518
|
+
<returns>Is true if the two geographic line string instances are equal, otherwise returns false.</returns>
|
1519
|
+
<param name="left">The first geographic line string instance.</param>
|
1520
|
+
<param name="right">The second geographic line string instance.</param>
|
1521
|
+
</member>
|
1522
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographicMultiLineString,System.Spatial.GeographicMultiLineString)">
|
1523
|
+
<summary>Determines if the given two instances of geographic multi-line string are equal. </summary>
|
1524
|
+
<returns>Is true if the two geographic multi-line string instances are equal, otherwise returns false.</returns>
|
1525
|
+
<param name="left">The first geographic multi-line string instance.</param>
|
1526
|
+
<param name="right">The second geographic multi-line string instance.</param>
|
1527
|
+
</member>
|
1528
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographicMultiPoint,System.Spatial.GeographicMultiPoint)">
|
1529
|
+
<summary>Determines if the given two instances of geographic multipoint are equal. </summary>
|
1530
|
+
<returns>Is true if the two geographic multipoint instances are equal, otherwise returns false.</returns>
|
1531
|
+
<param name="left">The first geographic multipoint instance.</param>
|
1532
|
+
<param name="right">The second geographic multipoint instance.</param>
|
1533
|
+
</member>
|
1534
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographicMultiPolygon,System.Spatial.GeographicMultiPolygon)">
|
1535
|
+
<summary>Determines if the given two instances of geographic multipolygon are equal. </summary>
|
1536
|
+
<returns>Is true if the two geographic multipolygon instances are equal, otherwise returns false.</returns>
|
1537
|
+
<param name="left">The first geographic multipolygon instance.</param>
|
1538
|
+
<param name="right">The second geographic multipolygon instance.</param>
|
1539
|
+
</member>
|
1540
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographicPoint,System.Spatial.GeographicPoint)">
|
1541
|
+
<summary> Determines if the given two instances of geographic point are equal. </summary>
|
1542
|
+
<returns>Is true if the two geographic point instances are equal, otherwise returns false.</returns>
|
1543
|
+
<param name="left">The first geographic point instance.</param>
|
1544
|
+
<param name="right">The second geographic point instance.</param>
|
1545
|
+
</member>
|
1546
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographicPolygon,System.Spatial.GeographicPolygon)">
|
1547
|
+
<summary> Determines if the given two instances of geographic polygon are equal. </summary>
|
1548
|
+
<returns>Is true if the two geographic polygon instances are equal, otherwise returns false.</returns>
|
1549
|
+
<param name="left">The first geographic polygon instance.</param>
|
1550
|
+
<param name="right">The second geographic polygon instance.</param>
|
1551
|
+
</member>
|
1552
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeographyCollection,System.Spatial.GeographyCollection)">
|
1553
|
+
<summary>Determines if the given two instances of geographic collection are equal. </summary>
|
1554
|
+
<returns>Is true if the two geographic collection instances are equal, otherwise returns false.</returns>
|
1555
|
+
<param name="left">The first geographic collection instance.</param>
|
1556
|
+
<param name="right">The second geographic collection instance.</param>
|
1557
|
+
</member>
|
1558
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometricLineString,System.Spatial.GeometricLineString)">
|
1559
|
+
<summary>Determines if the given two instances of geometric line string are equal. </summary>
|
1560
|
+
<returns>Is true if the two geometric line string instances are equal, otherwise returns false.</returns>
|
1561
|
+
<param name="left">The first geometric line string instance.</param>
|
1562
|
+
<param name="right">The second geometric line string instance.</param>
|
1563
|
+
</member>
|
1564
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometricMultiLineString,System.Spatial.GeometricMultiLineString)">
|
1565
|
+
<summary>Determines if the given two instances of geometric multi-line string are equal. </summary>
|
1566
|
+
<returns>Is true if the two geometric multi-line string instances are equal, otherwise returns false.</returns>
|
1567
|
+
<param name="left">The first geometric multi-line string instance.</param>
|
1568
|
+
<param name="right">The second geometric multi-line string instance.</param>
|
1569
|
+
</member>
|
1570
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometricMultiPoint,System.Spatial.GeometricMultiPoint)">
|
1571
|
+
<summary>Determines if the given two instances of geometric multipoint are equal. </summary>
|
1572
|
+
<returns>Is true if the two geometric multipoint instances are equal, otherwise returns false.</returns>
|
1573
|
+
<param name="left">The first geometric multipoint instance.</param>
|
1574
|
+
<param name="right">The second geometric multipoint instance.</param>
|
1575
|
+
</member>
|
1576
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometricMultiPolygon,System.Spatial.GeometricMultiPolygon)">
|
1577
|
+
<summary>Determines if the given two instances of geometric multipolygon are equal. </summary>
|
1578
|
+
<returns>Is true if the two geometric multipolygon instances are equal, otherwise returns false.</returns>
|
1579
|
+
<param name="left">The first geometric multipolygon instance.</param>
|
1580
|
+
<param name="right">The second geometric multipolygon instance.</param>
|
1581
|
+
</member>
|
1582
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometricPoint,System.Spatial.GeometricPoint)">
|
1583
|
+
<summary>Determines if the given two instances of geometric point are equal. </summary>
|
1584
|
+
<returns>Is true if the two geometric point instances are equal, otherwise returns false.</returns>
|
1585
|
+
<param name="left">The first geometric point instance.</param>
|
1586
|
+
<param name="right">The second geometric point instance.</param>
|
1587
|
+
</member>
|
1588
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometricPolygon,System.Spatial.GeometricPolygon)">
|
1589
|
+
<summary>Determines if the given two instances of geometric polygon are equal. </summary>
|
1590
|
+
<returns>Is true if the two geometric polygon instances are equal, otherwise returns false.</returns>
|
1591
|
+
<param name="left">The first geometric polygon instance.</param>
|
1592
|
+
<param name="right">The second geometric polygon instance.</param>
|
1593
|
+
</member>
|
1594
|
+
<member name="M:System.Spatial.SpatialEquality.Equals(System.Spatial.GeometryCollection,System.Spatial.GeometryCollection)">
|
1595
|
+
<summary>Determines if the given two instances of geometric collection are equal. </summary>
|
1596
|
+
<returns>Is true if the two geometric collection instances are equal, otherwise returns false.</returns>
|
1597
|
+
<param name="left">The first geometric collection instance.</param>
|
1598
|
+
<param name="right">The second geometric collection instance.</param>
|
1599
|
+
</member>
|
1600
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.FullGlobe)">
|
1601
|
+
<summary>Computes the hash code for the given full globe instance.</summary>
|
1602
|
+
<returns>The hash code for the given full globe instance.</returns>
|
1603
|
+
<param name="obj">The full globe instance.</param>
|
1604
|
+
</member>
|
1605
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographicLineString)">
|
1606
|
+
<summary>Computes the hash code for the given geographic line string instance. </summary>
|
1607
|
+
<returns>The hash code for the given geographic line string instance.</returns>
|
1608
|
+
<param name="obj">The geographic line string instance.</param>
|
1609
|
+
</member>
|
1610
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographicMultiLineString)">
|
1611
|
+
<summary>Computes the hash code for the given geographic multi-line string instance. </summary>
|
1612
|
+
<returns>The hash code for the given geographic multi-line string instance.</returns>
|
1613
|
+
<param name="obj">The geographic multi-line string instance.</param>
|
1614
|
+
</member>
|
1615
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographicMultiPoint)">
|
1616
|
+
<summary>Computes the hash code for the given geographic multipoint instance. </summary>
|
1617
|
+
<returns>The hash code for the given geographic multipoint instance.</returns>
|
1618
|
+
<param name="obj">The given geographic multipoint instance.</param>
|
1619
|
+
</member>
|
1620
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographicMultiPolygon)">
|
1621
|
+
<summary>Computes the hash code for the given geographic multipolygon instance. </summary>
|
1622
|
+
<returns>The hash code for the given geographic multipolygon instance.</returns>
|
1623
|
+
<param name="obj">The geographic multipolygon instance.</param>
|
1624
|
+
</member>
|
1625
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographicPoint)">
|
1626
|
+
<summary>Computes the hash code for the given geographic point instance. </summary>
|
1627
|
+
<returns>The hash code for the given geographic point instance.</returns>
|
1628
|
+
<param name="obj">The geographic point instance.</param>
|
1629
|
+
</member>
|
1630
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographicPolygon)">
|
1631
|
+
<summary>Computes the hash code for the given geographic polygon instance. </summary>
|
1632
|
+
<returns>The hash code for the given geographic polygon instance.</returns>
|
1633
|
+
<param name="obj">The geographic polygon instance.</param>
|
1634
|
+
</member>
|
1635
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeographyCollection)">
|
1636
|
+
<summary>Computes the hash code for the given geographic collection instance. </summary>
|
1637
|
+
<returns>The hash code for the given geographic collection instance.</returns>
|
1638
|
+
<param name="obj">The geographic collection instance.</param>
|
1639
|
+
</member>
|
1640
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometricLineString)">
|
1641
|
+
<summary>Computes the hash code for the given geometric line string instance. </summary>
|
1642
|
+
<returns>The hash code for the given geometric line string instance.</returns>
|
1643
|
+
<param name="obj">The geometric line string instance.</param>
|
1644
|
+
</member>
|
1645
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometricMultiLineString)">
|
1646
|
+
<summary>Computes the hash code for the given geometric multi-line string instance. </summary>
|
1647
|
+
<returns>The hash code for the given geometric multi-line string instance.</returns>
|
1648
|
+
<param name="obj">The geometric multi-line string instance.</param>
|
1649
|
+
</member>
|
1650
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometricMultiPoint)">
|
1651
|
+
<summary>Computes the hash code for the given geometric multipoint instance. </summary>
|
1652
|
+
<returns>The hash code for the given geometric multipoint instance.</returns>
|
1653
|
+
<param name="obj">The geometric multipoint instance.</param>
|
1654
|
+
</member>
|
1655
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometricMultiPolygon)">
|
1656
|
+
<summary>Computes the hash code for the given geometric multipolygon instance. </summary>
|
1657
|
+
<returns>The hash code for the given geometric multipolygon instance.</returns>
|
1658
|
+
<param name="obj">The geometric multipolygon instance.</param>
|
1659
|
+
</member>
|
1660
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometricPoint)">
|
1661
|
+
<summary>Computes the hash code for the given geometric point instance. </summary>
|
1662
|
+
<returns>The hash code for the given geometric point instance.</returns>
|
1663
|
+
<param name="obj">The geometric point instance.</param>
|
1664
|
+
</member>
|
1665
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometricPolygon)">
|
1666
|
+
<summary>Computes the hash code for the given geometric polygon instance. </summary>
|
1667
|
+
<returns>The hash code for the given geometric polygon instance.</returns>
|
1668
|
+
<param name="obj">The geometric polygon instance.</param>
|
1669
|
+
</member>
|
1670
|
+
<member name="M:System.Spatial.SpatialEquality.GetHashCode(System.Spatial.GeometryCollection)">
|
1671
|
+
<summary>Computes the hash code for the given geometric collection instance. </summary>
|
1672
|
+
<returns>The hash code for the given geometric collection instance.</returns>
|
1673
|
+
<param name="obj">The geometric collection instance.</param>
|
1674
|
+
</member>
|
1675
|
+
<member name="T:System.Spatial.SpatialFormat`3">
|
1676
|
+
<summary>The base class for all spatial formats.</summary>
|
1677
|
+
<typeparam name="TParseParameter">The type of reader to be read from.</typeparam>
|
1678
|
+
<typeparam name="TFormatReturn">The type of reader to be read from.</typeparam>
|
1679
|
+
<typeparam name="TWriterTarget">The type of reader to be read from.</typeparam>
|
1680
|
+
</member>
|
1681
|
+
<member name="M:System.Spatial.SpatialFormat`3.#ctor">
|
1682
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.SpatialFormat`3" /> class. </summary>
|
1683
|
+
</member>
|
1684
|
+
<member name="M:System.Spatial.SpatialFormat`3.#ctor(System.Boolean,System.Boolean)">
|
1685
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.SpatialFormat`3" /> class. </summary>
|
1686
|
+
<param name="hasZ">if set to true [has Z].</param>
|
1687
|
+
<param name="hasM">if set to true [has M].</param>
|
1688
|
+
</member>
|
1689
|
+
<member name="M:System.Spatial.SpatialFormat`3.ClearWriterTarget(`2)">
|
1690
|
+
<summary>Clears the writer target in preparation for the next write. </summary>
|
1691
|
+
<param name="target">The writer target that was written to.</param>
|
1692
|
+
</member>
|
1693
|
+
<member name="M:System.Spatial.SpatialFormat`3.CreateParser">
|
1694
|
+
<summary>Creates a parser capable of pulling from the reader and producing to the shape provider.</summary>
|
1695
|
+
<returns>The parser that was created.</returns>
|
1696
|
+
</member>
|
1697
|
+
<member name="M:System.Spatial.SpatialFormat`3.CreateReader(System.Spatial.SpatialChain)">
|
1698
|
+
<summary>Allows the subclass to create the reader.</summary>
|
1699
|
+
<returns>The reader that was created.</returns>
|
1700
|
+
<param name="destination">The place to produce the object.</param>
|
1701
|
+
</member>
|
1702
|
+
<member name="M:System.Spatial.SpatialFormat`3.CreateWriter(`2)">
|
1703
|
+
<summary>Creates the writer. </summary>
|
1704
|
+
<returns>The writer that was created.</returns>
|
1705
|
+
<param name="target">The target.</param>
|
1706
|
+
</member>
|
1707
|
+
<member name="M:System.Spatial.SpatialFormat`3.CreateWriterTarget">
|
1708
|
+
<summary>Allows the subclass to create the target that the writer writes to.</summary>
|
1709
|
+
<returns>Returns <see cref="T:System.Spatial.SpatialChain" />.</returns>
|
1710
|
+
</member>
|
1711
|
+
<member name="M:System.Spatial.SpatialFormat`3.ExtractFormatFromWriterTarget(`2)">
|
1712
|
+
<summary>Gets the written format of the correct type from the writer. </summary>
|
1713
|
+
<returns>Returns <see cref="T:System.Spatial.SpatialChain" />.</returns>
|
1714
|
+
<param name="target">The writer target that was written to.</param>
|
1715
|
+
</member>
|
1716
|
+
<member name="M:System.Spatial.SpatialFormat`3.Format``1(``0)">
|
1717
|
+
<summary>Creates a valid format from the spatial object. </summary>
|
1718
|
+
<returns>Returns <see cref="T:System.Spatial.SpatialChain" />.</returns>
|
1719
|
+
<param name="input">The object that the format is being created for.</param>
|
1720
|
+
<typeparam name="T">The type of object the format is being created for.</typeparam>
|
1721
|
+
</member>
|
1722
|
+
<member name="P:System.Spatial.SpatialFormat`3.HasM">
|
1723
|
+
<summary>Gets a value indicating whether this instance should read/write M. </summary>
|
1724
|
+
<returns>truefalse</returns>
|
1725
|
+
</member>
|
1726
|
+
<member name="P:System.Spatial.SpatialFormat`3.HasZ">
|
1727
|
+
<summary>Gets a value indicating whether this instance should read/write Z. </summary>
|
1728
|
+
<returns>truefalse</returns>
|
1729
|
+
</member>
|
1730
|
+
<member name="M:System.Spatial.SpatialFormat`3.MakeValidatingBuilder">
|
1731
|
+
<summary>Creates the builder that will be called by the parser to build the new type. </summary>
|
1732
|
+
<returns>The builder that was created.</returns>
|
1733
|
+
</member>
|
1734
|
+
<member name="M:System.Spatial.SpatialFormat`3.Parse``1(`0)">
|
1735
|
+
<summary>Parses the input and produces the object.</summary>
|
1736
|
+
<returns>Returns <see cref="T:System.Spatial.Transform`2" />.</returns>
|
1737
|
+
<param name="input">The input to be parsed.</param>
|
1738
|
+
<typeparam name="TResult">The type of object to produce.</typeparam>
|
1739
|
+
</member>
|
1740
|
+
<member name="M:System.Spatial.SpatialFormat`3.Reset">
|
1741
|
+
<summary>Resets the format and underlying objects to the starting state use in case of exception.</summary>
|
1742
|
+
</member>
|
1743
|
+
<member name="M:System.Spatial.SpatialFormat`3.TryParse``1(`0,``0@,System.String@)">
|
1744
|
+
<summary>Tries to parse the input without getting an exception. </summary>
|
1745
|
+
<returns>True if the parse was successful, and false otherwise.</returns>
|
1746
|
+
<param name="input">The input to be parsed.</param>
|
1747
|
+
<param name="result">If the return is true, this will have the object that was produced.</param>
|
1748
|
+
<param name="errorMessage">If the return is false, this will contain the error message.</param>
|
1749
|
+
<typeparam name="TResult">The type of object to produce.</typeparam>
|
1750
|
+
</member>
|
1751
|
+
<member name="T:System.Spatial.SpatialImplementation">
|
1752
|
+
<summary>The class responsible for knowing how to create the geography and geometry builders for a particular implementation of spatial types.</summary>
|
1753
|
+
</member>
|
1754
|
+
<member name="M:System.Spatial.SpatialImplementation.#ctor">
|
1755
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.SpatialImplementation" /> class.</summary>
|
1756
|
+
</member>
|
1757
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateGeographyBuilder">
|
1758
|
+
<summary>Creates a geography builder for this implementation.</summary>
|
1759
|
+
<returns>The geography builder created.</returns>
|
1760
|
+
</member>
|
1761
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateGeoJsonFormat">
|
1762
|
+
<summary>Creates a geo Json format for this implementation.</summary>
|
1763
|
+
<returns>The geo Json format created.</returns>
|
1764
|
+
</member>
|
1765
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateGeometryBuilder">
|
1766
|
+
<summary>Creates a geometry builder for this implementation.</summary>
|
1767
|
+
<returns>The geometry builder created.</returns>
|
1768
|
+
</member>
|
1769
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateGmlFormat">
|
1770
|
+
<summary>Creates a Gml format for this implementation.</summary>
|
1771
|
+
<returns>The Gml format created.</returns>
|
1772
|
+
</member>
|
1773
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateRepresentationEquality">
|
1774
|
+
<summary>Creates a spatial equality instance for doing representation equality. </summary>
|
1775
|
+
<returns>The spatial equality instance created.</returns>
|
1776
|
+
</member>
|
1777
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateValidator">
|
1778
|
+
<summary>Creates a spatial validator.</summary>
|
1779
|
+
<returns>The spatial validator created.</returns>
|
1780
|
+
</member>
|
1781
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateWellKnownBinaryFormat">
|
1782
|
+
<summary>Creates a well-known binary format for this implementation.</summary>
|
1783
|
+
<returns>The well-known binary format created.</returns>
|
1784
|
+
</member>
|
1785
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateWellKnownBinaryFormat(System.Boolean,System.Boolean)">
|
1786
|
+
<summary>Creates a well-known binary format for this implementation.</summary>
|
1787
|
+
<returns>The well-known binary format created.</returns>
|
1788
|
+
<param name="hasZ">Controls the writing of the Z dimension.</param>
|
1789
|
+
<param name="hasM">Controls the writing of the M dimension.</param>
|
1790
|
+
</member>
|
1791
|
+
<member name="M:System.Spatial.SpatialImplementation.CreateWellKnownTextSqlFormat">
|
1792
|
+
<summary>Creates a well-known text sql format for this implementation.</summary>
|
1793
|
+
<returns>The well-known text sql format created.</returns>
|
1794
|
+
</member>
|
1795
|
+
<member name="M:System.Spatial.SpatialImplementation.Register(System.Double,System.Spatial.SpatialImplementation)">
|
1796
|
+
<summary>Used to register an implementation to be used.</summary>
|
1797
|
+
<returns>A disposable that removes the implementation when disposed.</returns>
|
1798
|
+
<param name="priority">The priority of the implementation being registered.</param>
|
1799
|
+
<param name="implementation">The implementation to register.</param>
|
1800
|
+
</member>
|
1801
|
+
<member name="P:System.Spatial.SpatialImplementation.RepresentationEquality">
|
1802
|
+
<summary>Returns spatial equality instance for doing representation equality. </summary>
|
1803
|
+
<returns>Returns spatial equality instance.</returns>
|
1804
|
+
</member>
|
1805
|
+
<member name="T:System.Spatial.SpatialOperations">
|
1806
|
+
<summary>The class responsible for knowing how to perform operations for a particular implementation of spatial types.</summary>
|
1807
|
+
</member>
|
1808
|
+
<member name="M:System.Spatial.SpatialOperations.#ctor">
|
1809
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.SpatialOperations" /> class.</summary>
|
1810
|
+
</member>
|
1811
|
+
<member name="M:System.Spatial.SpatialOperations.Area(System.Spatial.GeographicSurface)">
|
1812
|
+
<summary>The geographic area.</summary>
|
1813
|
+
<returns>The operation result.</returns>
|
1814
|
+
<param name="operand">The operand.</param>
|
1815
|
+
</member>
|
1816
|
+
<member name="M:System.Spatial.SpatialOperations.Area(System.Spatial.GeometricSurface)">
|
1817
|
+
<summary>The geometric area.</summary>
|
1818
|
+
<returns>The operation result.</returns>
|
1819
|
+
<param name="operand">The operand.</param>
|
1820
|
+
</member>
|
1821
|
+
<member name="M:System.Spatial.SpatialOperations.Boundary(System.Spatial.Geography)">
|
1822
|
+
<summary>The geographic boundary.</summary>
|
1823
|
+
<returns>The operation result.</returns>
|
1824
|
+
<param name="operand">The operand.</param>
|
1825
|
+
</member>
|
1826
|
+
<member name="M:System.Spatial.SpatialOperations.Boundary(System.Spatial.Geometry)">
|
1827
|
+
<summary>The geometric boundary.</summary>
|
1828
|
+
<returns>The operation result.</returns>
|
1829
|
+
<param name="operand">The operand.</param>
|
1830
|
+
</member>
|
1831
|
+
<member name="M:System.Spatial.SpatialOperations.Buffer(System.Spatial.Geography,System.Double,System.Double)">
|
1832
|
+
<summary>The geographic buffer.</summary>
|
1833
|
+
<returns>The buffered geography.</returns>
|
1834
|
+
<param name="operand">The operand.</param>
|
1835
|
+
<param name="distance">The distance to buffer.</param>
|
1836
|
+
<param name="tolerance">The tolerance of the distance.</param>
|
1837
|
+
</member>
|
1838
|
+
<member name="M:System.Spatial.SpatialOperations.Buffer(System.Spatial.Geometry,System.Double,System.Double)">
|
1839
|
+
<summary>The geometric buffer.</summary>
|
1840
|
+
<returns>The buffered geometry.</returns>
|
1841
|
+
<param name="operand">The operand.</param>
|
1842
|
+
<param name="distance">The distance to buffer.</param>
|
1843
|
+
<param name="tolerance">The tolerance of the distance.</param>
|
1844
|
+
</member>
|
1845
|
+
<member name="M:System.Spatial.SpatialOperations.Centroid(System.Spatial.GeographicSurface)">
|
1846
|
+
<summary>The geographic centroid.</summary>
|
1847
|
+
<returns>The operation result.</returns>
|
1848
|
+
<param name="operand">The operand.</param>
|
1849
|
+
</member>
|
1850
|
+
<member name="M:System.Spatial.SpatialOperations.Centroid(System.Spatial.GeometricSurface)">
|
1851
|
+
<summary>The geometric centroid.</summary>
|
1852
|
+
<returns>The operation result.</returns>
|
1853
|
+
<param name="operand">The operand.</param>
|
1854
|
+
</member>
|
1855
|
+
<member name="M:System.Spatial.SpatialOperations.Contains(System.Spatial.Geography,System.Spatial.Geography)">
|
1856
|
+
<summary>The geographic contains.</summary>
|
1857
|
+
<returns>The operation result.</returns>
|
1858
|
+
<param name="operand1">The operand 1.</param>
|
1859
|
+
<param name="operand2">The operand 2.</param>
|
1860
|
+
</member>
|
1861
|
+
<member name="M:System.Spatial.SpatialOperations.Contains(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1862
|
+
<summary>The geometric contains.</summary>
|
1863
|
+
<returns>The operation result.</returns>
|
1864
|
+
<param name="operand1">The operand 1.</param>
|
1865
|
+
<param name="operand2">The operand 2.</param>
|
1866
|
+
</member>
|
1867
|
+
<member name="M:System.Spatial.SpatialOperations.ConvexHull(System.Spatial.Geography)">
|
1868
|
+
<summary>The geographic convex hull.</summary>
|
1869
|
+
<returns>The operation result.</returns>
|
1870
|
+
<param name="operand">The operand.</param>
|
1871
|
+
</member>
|
1872
|
+
<member name="M:System.Spatial.SpatialOperations.ConvexHull(System.Spatial.Geometry)">
|
1873
|
+
<summary>The geometric convex hull.</summary>
|
1874
|
+
<returns>The operation result.</returns>
|
1875
|
+
<param name="operand">The operand.</param>
|
1876
|
+
</member>
|
1877
|
+
<member name="M:System.Spatial.SpatialOperations.Crosses(System.Spatial.Geography,System.Spatial.Geography)">
|
1878
|
+
<summary>The geographic crosses.</summary>
|
1879
|
+
<returns>The operation result.</returns>
|
1880
|
+
<param name="operand1">The operand 1.</param>
|
1881
|
+
<param name="operand2">The operand 2.</param>
|
1882
|
+
</member>
|
1883
|
+
<member name="M:System.Spatial.SpatialOperations.Crosses(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1884
|
+
<summary>The geometric crosses.</summary>
|
1885
|
+
<returns>The operation result.</returns>
|
1886
|
+
<param name="operand1">The operand 1.</param>
|
1887
|
+
<param name="operand2">The operand 2.</param>
|
1888
|
+
</member>
|
1889
|
+
<member name="M:System.Spatial.SpatialOperations.Difference(System.Spatial.Geography,System.Spatial.Geography)">
|
1890
|
+
<summary>The geographic difference.</summary>
|
1891
|
+
<returns>The operation result.</returns>
|
1892
|
+
<param name="operand1">The operand 1.</param>
|
1893
|
+
<param name="operand2">The operand 2.</param>
|
1894
|
+
</member>
|
1895
|
+
<member name="M:System.Spatial.SpatialOperations.Difference(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1896
|
+
<summary>The geometric difference.</summary>
|
1897
|
+
<returns>The operation result.</returns>
|
1898
|
+
<param name="operand1">The operand 1.</param>
|
1899
|
+
<param name="operand2">The operand 2.</param>
|
1900
|
+
</member>
|
1901
|
+
<member name="M:System.Spatial.SpatialOperations.Distance(System.Spatial.Geography,System.Spatial.Geography)">
|
1902
|
+
<summary>The geographic distance.</summary>
|
1903
|
+
<returns>The operation result.</returns>
|
1904
|
+
<param name="operand1">The operand 1.</param>
|
1905
|
+
<param name="operand2">The operand 2.</param>
|
1906
|
+
</member>
|
1907
|
+
<member name="M:System.Spatial.SpatialOperations.Distance(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1908
|
+
<summary>The geometric distance.</summary>
|
1909
|
+
<returns>The operation result.</returns>
|
1910
|
+
<param name="operand1">The operand 1.</param>
|
1911
|
+
<param name="operand2">The operand 2.</param>
|
1912
|
+
</member>
|
1913
|
+
<member name="M:System.Spatial.SpatialOperations.Envelope(System.Spatial.Geography)">
|
1914
|
+
<summary>The geographic envelope.</summary>
|
1915
|
+
<returns>The operation result.</returns>
|
1916
|
+
<param name="operand">The operand.</param>
|
1917
|
+
</member>
|
1918
|
+
<member name="M:System.Spatial.SpatialOperations.Envelope(System.Spatial.Geometry)">
|
1919
|
+
<summary>The geometric envelope.</summary>
|
1920
|
+
<returns>The operation result.</returns>
|
1921
|
+
<param name="operand">The operand.</param>
|
1922
|
+
</member>
|
1923
|
+
<member name="M:System.Spatial.SpatialOperations.GeographicEquals(System.Spatial.Geography,System.Spatial.Geography)">
|
1924
|
+
<summary>The geographic equals.</summary>
|
1925
|
+
<returns>The operation result.</returns>
|
1926
|
+
<param name="operand1">The operand 1.</param>
|
1927
|
+
<param name="operand2">The operand 2.</param>
|
1928
|
+
</member>
|
1929
|
+
<member name="M:System.Spatial.SpatialOperations.GeometricEquals(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1930
|
+
<summary>The geometric equals.</summary>
|
1931
|
+
<returns>The operation result.</returns>
|
1932
|
+
<param name="operand1">The operand 1.</param>
|
1933
|
+
<param name="operand2">The operand 2.</param>
|
1934
|
+
</member>
|
1935
|
+
<member name="M:System.Spatial.SpatialOperations.GetBounds(System.Spatial.Geography,System.Double@,System.Double@,System.Double@,System.Double@)">
|
1936
|
+
<summary>The geographic get bounds.</summary>
|
1937
|
+
<param name="operand">The operand.</param>
|
1938
|
+
<param name="minX">The minimum X.</param>
|
1939
|
+
<param name="minY">The minimum Y.</param>
|
1940
|
+
<param name="maxX">The maximum X.</param>
|
1941
|
+
<param name="maxY">The maximum Y.</param>
|
1942
|
+
</member>
|
1943
|
+
<member name="M:System.Spatial.SpatialOperations.GetBounds(System.Spatial.Geometry,System.Double@,System.Double@,System.Double@,System.Double@)">
|
1944
|
+
<summary>The geometric get bounds.</summary>
|
1945
|
+
<param name="operand">The operand.</param>
|
1946
|
+
<param name="minX">The minimum X.</param>
|
1947
|
+
<param name="minY">The minimum Y.</param>
|
1948
|
+
<param name="maxX">The maximum X.</param>
|
1949
|
+
<param name="maxY">The maximum Y.</param>
|
1950
|
+
</member>
|
1951
|
+
<member name="M:System.Spatial.SpatialOperations.Intersection(System.Spatial.Geography,System.Spatial.Geography)">
|
1952
|
+
<summary>The geographic intersection.</summary>
|
1953
|
+
<returns>The operation result.</returns>
|
1954
|
+
<param name="operand1">The operand 1.</param>
|
1955
|
+
<param name="operand2">The operand 2.</param>
|
1956
|
+
</member>
|
1957
|
+
<member name="M:System.Spatial.SpatialOperations.Intersection(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1958
|
+
<summary>The geometric intersection.</summary>
|
1959
|
+
<returns>The operation result.</returns>
|
1960
|
+
<param name="operand1">The operand 1.</param>
|
1961
|
+
<param name="operand2">The operand 2.</param>
|
1962
|
+
</member>
|
1963
|
+
<member name="M:System.Spatial.SpatialOperations.Intersects(System.Spatial.Geography,System.Spatial.Geography)">
|
1964
|
+
<summary>The geographic intersects.</summary>
|
1965
|
+
<returns>The operation result.</returns>
|
1966
|
+
<param name="operand1">The operand 1.</param>
|
1967
|
+
<param name="operand2">The operand 2.</param>
|
1968
|
+
</member>
|
1969
|
+
<member name="M:System.Spatial.SpatialOperations.Intersects(System.Spatial.Geometry,System.Spatial.Geometry)">
|
1970
|
+
<summary>The geometric intersects.</summary>
|
1971
|
+
<returns>The operation result.</returns>
|
1972
|
+
<param name="operand1">The operand 1.</param>
|
1973
|
+
<param name="operand2">The operand 2.</param>
|
1974
|
+
</member>
|
1975
|
+
<member name="M:System.Spatial.SpatialOperations.IsSimple(System.Spatial.Geography)">
|
1976
|
+
<summary>The geographic is simple.</summary>
|
1977
|
+
<returns>The operation result.</returns>
|
1978
|
+
<param name="operand">The operand.</param>
|
1979
|
+
</member>
|
1980
|
+
<member name="M:System.Spatial.SpatialOperations.IsSimple(System.Spatial.Geometry)">
|
1981
|
+
<summary>The geometric is simple.</summary>
|
1982
|
+
<returns>The operation result.</returns>
|
1983
|
+
<param name="operand">The operand.</param>
|
1984
|
+
</member>
|
1985
|
+
<member name="M:System.Spatial.SpatialOperations.IsValid(System.Spatial.Geography)">
|
1986
|
+
<summary>The geographic is valid.</summary>
|
1987
|
+
<returns>The operation result.</returns>
|
1988
|
+
<param name="operand">The operand.</param>
|
1989
|
+
</member>
|
1990
|
+
<member name="M:System.Spatial.SpatialOperations.IsValid(System.Spatial.Geometry)">
|
1991
|
+
<summary>The geometric is valid.</summary>
|
1992
|
+
<returns>The operation result.</returns>
|
1993
|
+
<param name="operand">The operand.</param>
|
1994
|
+
</member>
|
1995
|
+
<member name="M:System.Spatial.SpatialOperations.Length(System.Spatial.GeographicCurve)">
|
1996
|
+
<summary>The geographic length.</summary>
|
1997
|
+
<returns>The operation result.</returns>
|
1998
|
+
<param name="operand">The operand.</param>
|
1999
|
+
</member>
|
2000
|
+
<member name="M:System.Spatial.SpatialOperations.Length(System.Spatial.GeometricCurve)">
|
2001
|
+
<summary>The geometric length.</summary>
|
2002
|
+
<returns>The operation result.</returns>
|
2003
|
+
<param name="operand">The operand.</param>
|
2004
|
+
</member>
|
2005
|
+
<member name="M:System.Spatial.SpatialOperations.MakeValid(System.Spatial.Geography)">
|
2006
|
+
<summary>The geographic make valid.</summary>
|
2007
|
+
<returns>The operation result.</returns>
|
2008
|
+
<param name="operand">The operand.</param>
|
2009
|
+
</member>
|
2010
|
+
<member name="M:System.Spatial.SpatialOperations.MakeValid(System.Spatial.Geometry)">
|
2011
|
+
<summary>The geometric make valid.</summary>
|
2012
|
+
<returns>The operation result.</returns>
|
2013
|
+
<param name="operand">The operand.</param>
|
2014
|
+
</member>
|
2015
|
+
<member name="M:System.Spatial.SpatialOperations.Overlaps(System.Spatial.Geography,System.Spatial.Geography)">
|
2016
|
+
<summary>The geographic overlaps.</summary>
|
2017
|
+
<returns>The operation result.</returns>
|
2018
|
+
<param name="operand1">The operand 1.</param>
|
2019
|
+
<param name="operand2">The operand 2.</param>
|
2020
|
+
</member>
|
2021
|
+
<member name="M:System.Spatial.SpatialOperations.Overlaps(System.Spatial.Geometry,System.Spatial.Geometry)">
|
2022
|
+
<summary>The geometric overlaps.</summary>
|
2023
|
+
<returns>The operation result.</returns>
|
2024
|
+
<param name="operand1">The operand 1.</param>
|
2025
|
+
<param name="operand2">The operand 2.</param>
|
2026
|
+
</member>
|
2027
|
+
<member name="M:System.Spatial.SpatialOperations.PointOnSurface(System.Spatial.GeographicSurface)">
|
2028
|
+
<summary>The geographic point on surface.</summary>
|
2029
|
+
<returns>The operation result.</returns>
|
2030
|
+
<param name="operand">The operand.</param>
|
2031
|
+
</member>
|
2032
|
+
<member name="M:System.Spatial.SpatialOperations.PointOnSurface(System.Spatial.GeometricSurface)">
|
2033
|
+
<summary>The geometric point on surface.</summary>
|
2034
|
+
<returns>The operation result.</returns>
|
2035
|
+
<param name="operand">The operand.</param>
|
2036
|
+
</member>
|
2037
|
+
<member name="M:System.Spatial.SpatialOperations.Reduce(System.Spatial.Geography,System.Double)">
|
2038
|
+
<summary>The geographic reduce.</summary>
|
2039
|
+
<returns>The operation result.</returns>
|
2040
|
+
<param name="operand">The operand.</param>
|
2041
|
+
<param name="tolerance">The tolerance of the operation.</param>
|
2042
|
+
</member>
|
2043
|
+
<member name="M:System.Spatial.SpatialOperations.Reduce(System.Spatial.Geometry,System.Double)">
|
2044
|
+
<summary>The geometric reduce.</summary>
|
2045
|
+
<returns>The operation result.</returns>
|
2046
|
+
<param name="operand">The operand.</param>
|
2047
|
+
<param name="tolerance">The tolerance of the operation.</param>
|
2048
|
+
</member>
|
2049
|
+
<member name="M:System.Spatial.SpatialOperations.Register(System.Double,System.Spatial.SpatialOperations)">
|
2050
|
+
<summary>Used to register spatial operations to be used.</summary>
|
2051
|
+
<returns>A disposable that removes the operations when disposed.</returns>
|
2052
|
+
<param name="priority">The priority of the operations being registered.</param>
|
2053
|
+
<param name="operations">The operations to register.</param>
|
2054
|
+
</member>
|
2055
|
+
<member name="M:System.Spatial.SpatialOperations.SymmetricDifference(System.Spatial.Geography,System.Spatial.Geography)">
|
2056
|
+
<summary>The geographic symmetric difference.</summary>
|
2057
|
+
<returns>The operation result.</returns>
|
2058
|
+
<param name="operand1">The operand 1.</param>
|
2059
|
+
<param name="operand2">The operand 2.</param>
|
2060
|
+
</member>
|
2061
|
+
<member name="M:System.Spatial.SpatialOperations.SymmetricDifference(System.Spatial.Geometry,System.Spatial.Geometry)">
|
2062
|
+
<summary>The geometric symmetric difference.</summary>
|
2063
|
+
<returns>The operation result.</returns>
|
2064
|
+
<param name="operand1">The operand 1.</param>
|
2065
|
+
<param name="operand2">The operand 2.</param>
|
2066
|
+
</member>
|
2067
|
+
<member name="M:System.Spatial.SpatialOperations.Touches(System.Spatial.Geography,System.Spatial.Geography)">
|
2068
|
+
<summary>The geographic touches.</summary>
|
2069
|
+
<returns>The operation result.</returns>
|
2070
|
+
<param name="operand1">The operand 1.</param>
|
2071
|
+
<param name="operand2">The operand 2.</param>
|
2072
|
+
</member>
|
2073
|
+
<member name="M:System.Spatial.SpatialOperations.Touches(System.Spatial.Geometry,System.Spatial.Geometry)">
|
2074
|
+
<summary>The geometric touches.</summary>
|
2075
|
+
<returns>The operation result.</returns>
|
2076
|
+
<param name="operand1">The operand 1.</param>
|
2077
|
+
<param name="operand2">The operand 2.</param>
|
2078
|
+
</member>
|
2079
|
+
<member name="M:System.Spatial.SpatialOperations.Union(System.Spatial.Geography,System.Spatial.Geography)">
|
2080
|
+
<summary>The geographic union.</summary>
|
2081
|
+
<returns>The operation result.</returns>
|
2082
|
+
<param name="operand1">The operand 1.</param>
|
2083
|
+
<param name="operand2">The operand 2.</param>
|
2084
|
+
</member>
|
2085
|
+
<member name="M:System.Spatial.SpatialOperations.Union(System.Spatial.Geometry,System.Spatial.Geometry)">
|
2086
|
+
<summary>The geometric union.</summary>
|
2087
|
+
<returns>The operation result.</returns>
|
2088
|
+
<param name="operand1">The operand 1.</param>
|
2089
|
+
<param name="operand2">The operand 2.</param>
|
2090
|
+
</member>
|
2091
|
+
<member name="M:System.Spatial.SpatialOperations.Within(System.Spatial.Geography,System.Spatial.Geography)">
|
2092
|
+
<summary>The geographic within.</summary>
|
2093
|
+
<returns>The operation result.</returns>
|
2094
|
+
<param name="operand1">The operand 1.</param>
|
2095
|
+
<param name="operand2">The operand 2.</param>
|
2096
|
+
</member>
|
2097
|
+
<member name="M:System.Spatial.SpatialOperations.Within(System.Spatial.Geometry,System.Spatial.Geometry)">
|
2098
|
+
<summary>The geometric within.</summary>
|
2099
|
+
<returns>The operation result.</returns>
|
2100
|
+
<param name="operand1">The operand 1.</param>
|
2101
|
+
<param name="operand2">The operand 2.</param>
|
2102
|
+
</member>
|
2103
|
+
<member name="T:System.Spatial.SpatialReader`1">
|
2104
|
+
<summary>The reader to be used by spatial formats.</summary>
|
2105
|
+
<typeparam name="TSource">The type of source that the reader operates on.</typeparam>
|
2106
|
+
</member>
|
2107
|
+
<member name="M:System.Spatial.SpatialReader`1.#ctor(System.Spatial.SpatialChain)">
|
2108
|
+
<summary> Creates a new instance of the <see cref="T:System.Spatial.SpatialReader`1" /> class.</summary>
|
2109
|
+
<param name="destination">The instance of the pipeline that the reader will message while it is reading.</param>
|
2110
|
+
</member>
|
2111
|
+
<member name="P:System.Spatial.SpatialReader`1.Destination">
|
2112
|
+
<summary>The pipeline that is messaged while the reader is reading.</summary>
|
2113
|
+
</member>
|
2114
|
+
<member name="M:System.Spatial.SpatialReader`1.ReadGeography(`0)">
|
2115
|
+
<summary>Parses some serialized format that represents one or more geographic spatial values, passing the first one down the pipeline. </summary>
|
2116
|
+
<param name="input">The input string.</param>
|
2117
|
+
<exception cref="T:System.Spatial.ParseErrorException">Throws if the input is not valid. In that case, guarantees that it will not pass anything down the pipeline, or will clear the pipeline by passing down a reset.</exception>
|
2118
|
+
</member>
|
2119
|
+
<member name="M:System.Spatial.SpatialReader`1.ReadGeometry(`0)">
|
2120
|
+
<summary>Parses some serialized format that represents one or more geometric spatial values, passing the first one down the pipeline.</summary>
|
2121
|
+
<param name="input">The input string.</param>
|
2122
|
+
<exception cref="T:System.Spatial.ParseErrorException">Throws if the input is not valid. In that case, guarantees that it will not pass anything down the pipeline, or will clear the pipeline by passing down a reset.</exception>
|
2123
|
+
</member>
|
2124
|
+
<member name="M:System.Spatial.SpatialReader`1.Reset">
|
2125
|
+
<summary>Sets the reader and underlying destination back to a clean starting state after an exception.</summary>
|
2126
|
+
</member>
|
2127
|
+
<member name="M:System.Spatial.SpatialReader`1.TryReadGeography(`0,System.String@)">
|
2128
|
+
<summary>Parses some serialized format that represents a geographic spatial value, passing the result down the pipeline.</summary>
|
2129
|
+
<returns>Is true if the read is successful, is false otherwise.</returns>
|
2130
|
+
<param name="input">The input string.</param>
|
2131
|
+
<param name="errorMessage">The error message to report to the developer.</param>
|
2132
|
+
</member>
|
2133
|
+
<member name="M:System.Spatial.SpatialReader`1.TryReadGeometry(`0,System.String@)">
|
2134
|
+
<summary>Parses some serialized format that represents a geometric spatial value, passing the result down the pipeline.</summary>
|
2135
|
+
<returns>Is true if the read is successful, is false otherwise.</returns>
|
2136
|
+
<param name="input">The input string.</param>
|
2137
|
+
<param name="errorMessage">The error message to report to the developer.</param>
|
2138
|
+
</member>
|
2139
|
+
<member name="T:System.Spatial.SpatialType">
|
2140
|
+
<summary>Defines a list of allowed open gis types.</summary>
|
2141
|
+
</member>
|
2142
|
+
<member name="F:System.Spatial.SpatialType.Unknown">
|
2143
|
+
<summary>The unknown type.</summary>
|
2144
|
+
</member>
|
2145
|
+
<member name="F:System.Spatial.SpatialType.Point">
|
2146
|
+
<summary>The point type.</summary>
|
2147
|
+
</member>
|
2148
|
+
<member name="F:System.Spatial.SpatialType.LineString">
|
2149
|
+
<summary>The line string type.</summary>
|
2150
|
+
</member>
|
2151
|
+
<member name="F:System.Spatial.SpatialType.Polygon">
|
2152
|
+
<summary>The polygon type.</summary>
|
2153
|
+
</member>
|
2154
|
+
<member name="F:System.Spatial.SpatialType.MultiPoint">
|
2155
|
+
<summary>The multipoint type.</summary>
|
2156
|
+
</member>
|
2157
|
+
<member name="F:System.Spatial.SpatialType.MultiLineString">
|
2158
|
+
<summary>The multi-line-string type.</summary>
|
2159
|
+
</member>
|
2160
|
+
<member name="F:System.Spatial.SpatialType.MultiPolygon">
|
2161
|
+
<summary>The multipolygon type.</summary>
|
2162
|
+
</member>
|
2163
|
+
<member name="F:System.Spatial.SpatialType.Collection">
|
2164
|
+
<summary>The collection type.</summary>
|
2165
|
+
</member>
|
2166
|
+
<member name="F:System.Spatial.SpatialType.FullGlobe">
|
2167
|
+
<summary>The full globe type.</summary>
|
2168
|
+
</member>
|
2169
|
+
<member name="T:System.Spatial.SpatialTypeExtensions">
|
2170
|
+
<summary>This class provides a place to add extension methods that work with ispatial. </summary>
|
2171
|
+
</member>
|
2172
|
+
<member name="M:System.Spatial.SpatialTypeExtensions.SendTo(System.Spatial.ISpatial,System.Spatial.SpatialChain)">
|
2173
|
+
<summary>Allows the delegation of the call to the proper type (geography or geometric).</summary>
|
2174
|
+
<param name="shape">The instance that will have send to called.</param>
|
2175
|
+
<param name="destination">The pipeline that the instance will be sent to.</param>
|
2176
|
+
</member>
|
2177
|
+
<member name="T:System.Spatial.SpatialValidator">
|
2178
|
+
<summary>The base class for spatial type validator implementations.</summary>
|
2179
|
+
</member>
|
2180
|
+
<member name="M:System.Spatial.SpatialValidator.Create">
|
2181
|
+
<summary>The factory for creating the currently registered spatial validator implementation.</summary>
|
2182
|
+
<returns>The created spatial validator.</returns>
|
2183
|
+
</member>
|
2184
|
+
<member name="T:System.Spatial.Transform`2">
|
2185
|
+
<summary>Holds the start and end of a transformation. Given some operation on the start, something will be produced at the end.</summary>
|
2186
|
+
<typeparam name="TSourceProtocol">The type of the start of the transformation.</typeparam>
|
2187
|
+
<typeparam name="TDestinationProtocol">The type of the start of the transformation.</typeparam>
|
2188
|
+
</member>
|
2189
|
+
<member name="M:System.Spatial.Transform`2.#ctor(`0,`1)">
|
2190
|
+
<summary> Creates a new instance of the <see cref="T:System.Spatial.Transform`2" /> class.</summary>
|
2191
|
+
<param name="start">The instance to use as the start of the transformation.</param>
|
2192
|
+
<param name="end">The instance to use as the end of the transformation.</param>
|
2193
|
+
</member>
|
2194
|
+
<member name="P:System.Spatial.Transform`2.End">
|
2195
|
+
<summary>The end of the transformation.</summary>
|
2196
|
+
<returns>Returns <see cref="T:System.Boolean" />.</returns>
|
2197
|
+
</member>
|
2198
|
+
<member name="M:System.Spatial.Transform`2.Equals(System.Object)">
|
2199
|
+
<summary>Determines the equality of two transforms.</summary>
|
2200
|
+
<returns>Is true if the two transforms are equal, false otherwise.</returns>
|
2201
|
+
<param name="obj">The other transform to compare to.</param>
|
2202
|
+
</member>
|
2203
|
+
<member name="M:System.Spatial.Transform`2.Equals(System.Spatial.Transform{`0,`1})">
|
2204
|
+
<summary>Determines the equality of two transforms.</summary>
|
2205
|
+
<returns>Is true if the two transforms are equal, false otherwise.</returns>
|
2206
|
+
<param name="other">The other transform to compare to.</param>
|
2207
|
+
</member>
|
2208
|
+
<member name="M:System.Spatial.Transform`2.GetHashCode">
|
2209
|
+
<summary>Gets the hash code for this instance.</summary>
|
2210
|
+
<returns>The hash code representing this instance.</returns>
|
2211
|
+
</member>
|
2212
|
+
<member name="M:System.Spatial.Transform`2.op_Equality(System.Spatial.Transform{`0,`1},System.Spatial.Transform{`0,`1})">
|
2213
|
+
<summary>Determines the equality of two transforms.</summary>
|
2214
|
+
<returns>Is true if the two transforms are equal, false otherwise.</returns>
|
2215
|
+
<param name="left">The transform on the left side of the equality operator.</param>
|
2216
|
+
<param name="right">The transform on the right side of the equality operator.</param>
|
2217
|
+
</member>
|
2218
|
+
<member name="M:System.Spatial.Transform`2.op_Inequality(System.Spatial.Transform{`0,`1},System.Spatial.Transform{`0,`1})">
|
2219
|
+
<summary>Determines the equality of two transforms.</summary>
|
2220
|
+
<returns>Is true if the two transforms are equal, false otherwise.</returns>
|
2221
|
+
<param name="left">The transform on the left side of the inequality operator.</param>
|
2222
|
+
<param name="right">The transform on the right side of the inequality operator.</param>
|
2223
|
+
</member>
|
2224
|
+
<member name="P:System.Spatial.Transform`2.Start">
|
2225
|
+
<summary>The start of the transformation.</summary>
|
2226
|
+
<returns>Returns <see cref="T:System.Boolean" />.</returns>
|
2227
|
+
</member>
|
2228
|
+
<member name="T:System.Spatial.WellKnownBinaryData">
|
2229
|
+
<summary>This class is used to hold well-known binary data for use by the well-known binary format and well-known binary reader </summary>
|
2230
|
+
</member>
|
2231
|
+
<member name="M:System.Spatial.WellKnownBinaryData.#ctor(System.Byte[],System.Int32)">
|
2232
|
+
<summary> Creates an instance of the <see cref="T:System.Spatial.WellKnownBinaryData" /> class </summary>
|
2233
|
+
<param name="data">The data to be read.</param>
|
2234
|
+
<param name="srid">The coordinate system ID to be used during the read.</param>
|
2235
|
+
</member>
|
2236
|
+
<member name="P:System.Spatial.WellKnownBinaryData.Data">
|
2237
|
+
<summary>Gets the data to be read.</summary>
|
2238
|
+
<returns>Returns <see cref="T:System.Byte" />.</returns>
|
2239
|
+
</member>
|
2240
|
+
<member name="P:System.Spatial.WellKnownBinaryData.Srid">
|
2241
|
+
<summary>Gets the coordinate system ID to be used during read. </summary>
|
2242
|
+
<returns>The coordinate system ID.</returns>
|
2243
|
+
</member>
|
2244
|
+
<member name="T:System.Spatial.WellKnownBinaryFormat">
|
2245
|
+
<summary>The object to move spatial types to and from the well-known binary format.</summary>
|
2246
|
+
</member>
|
2247
|
+
<member name="M:System.Spatial.WellKnownBinaryFormat.#ctor">
|
2248
|
+
<summary> Initializes a new instance of the <see cref="T:System.Spatial.WellKnownBinaryFormat" /> class. </summary>
|
2249
|
+
</member>
|
2250
|
+
<member name="M:System.Spatial.WellKnownBinaryFormat.#ctor(System.Boolean,System.Boolean)">
|
2251
|
+
<summary> Initializes a new instance of the <see cref="T:System.Spatial.WellKnownBinaryFormat" /> class. </summary>
|
2252
|
+
<param name="hasZ">if set to true [has Z].</param>
|
2253
|
+
<param name="hasM">if set to true [has M].</param>
|
2254
|
+
</member>
|
2255
|
+
<member name="M:System.Spatial.WellKnownBinaryFormat.Create">
|
2256
|
+
<summary>Creates the implementation of the format.</summary>
|
2257
|
+
<returns>Returns the created well-known binary format implementation.</returns>
|
2258
|
+
</member>
|
2259
|
+
<member name="M:System.Spatial.WellKnownBinaryFormat.Create(System.Boolean,System.Boolean)">
|
2260
|
+
<summary>Creates the implementation of the format.</summary>
|
2261
|
+
<returns>Returns the created well-known binary format implementation.</returns>
|
2262
|
+
<param name="hasZ">Controls the writing of the Z dimension.</param>
|
2263
|
+
<param name="hasM">Controls the writing of the M dimension.</param>
|
2264
|
+
</member>
|
2265
|
+
<member name="T:System.Spatial.WellKnownTextSqlFormat">
|
2266
|
+
<summary>The object to move spatial types to and from the well-known text sql format.</summary>
|
2267
|
+
</member>
|
2268
|
+
<member name="M:System.Spatial.WellKnownTextSqlFormat.#ctor">
|
2269
|
+
<summary>Initializes a new instance of the <see cref="T:System.Spatial.WellKnownTextSqlFormat" /> class.</summary>
|
2270
|
+
</member>
|
2271
|
+
<member name="M:System.Spatial.WellKnownTextSqlFormat.Create">
|
2272
|
+
<summary>Creates the implementation of the format.</summary>
|
2273
|
+
<returns>Returns the created well-known text sql format implementation.</returns>
|
2274
|
+
</member>
|
2275
|
+
</members>
|
2276
|
+
</doc>
|