共用方式為


DbGeography.FromGml 方法

定義

建立新的 。DbGeography 根據指定的 Geography 標記語言 (GML) 值的值。

多載

FromGml(String)

根據指定的地理標記語言 (GML) 值,建立新的 DbGeography 值。

FromGml(String, Int32)

根據指定的地理標記語言 (GML) 值和座標系統識別項 (SRID),建立新的 DbGeography 值。

FromGml(String)

根據指定的地理標記語言 (GML) 值,建立新的 DbGeography 值。

public:
 static System::Data::Spatial::DbGeography ^ FromGml(System::String ^ geographyMarkup);
public static System.Data.Spatial.DbGeography FromGml (string geographyMarkup);
static member FromGml : string -> System.Data.Spatial.DbGeography
Public Shared Function FromGml (geographyMarkup As String) As DbGeography

參數

geographyMarkup
String

包含地理值之地理標記語言 (GML) 表示的字串。

傳回

新的 DbGeography 值,由含有預設地理座標系統識別項 (SRID) (DefaultCoordinateSystemId) 的 GML 值所定義。

例外狀況

geographyMarkup

適用於

FromGml(String, Int32)

根據指定的地理標記語言 (GML) 值和座標系統識別項 (SRID),建立新的 DbGeography 值。

public:
 static System::Data::Spatial::DbGeography ^ FromGml(System::String ^ geographyMarkup, int coordinateSystemId);
public static System.Data.Spatial.DbGeography FromGml (string geographyMarkup, int coordinateSystemId);
static member FromGml : string * int -> System.Data.Spatial.DbGeography
Public Shared Function FromGml (geographyMarkup As String, coordinateSystemId As Integer) As DbGeography

參數

geographyMarkup
String

包含地理值之地理標記語言 (GML) 表示的字串。

coordinateSystemId
Int32

新的 DbGeography 值應該使用的座標系統的識別項。

傳回

新的 DbGeography 值,由含有指定之座標系統識別項的 GML 值所定義。

例外狀況

geographyMarkup

coordinateSystemId

適用於