DbSpatialServices.AsGml メソッド (DbGeometry)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
この DbGeometry 値の Geography Markup Language (GML) 表現を生成します。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId := "Gml")> _
Public MustOverride Function AsGml ( _
geometryValue As DbGeometry _
) As String
'使用
Dim instance As DbSpatialServices
Dim geometryValue As DbGeometry
Dim returnValue As String
returnValue = instance.AsGml(geometryValue)
[SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")]
public abstract string AsGml(
DbGeometry geometryValue
)
[SuppressMessageAttribute(L"Microsoft.Naming", L"CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = L"Gml")]
public:
virtual String^ AsGml(
DbGeometry^ geometryValue
) abstract
[<SuppressMessageAttribute("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gml")>]
abstract AsGml :
geometryValue:DbGeometry -> string
public abstract function AsGml(
geometryValue : DbGeometry
) : String
パラメーター
- geometryValue
型 : System.Data.Entity.Spatial.DbGeometry
GML を生成する必要がある geometry 値。
戻り値
型 : System.String
この DbGeometry 値の GML 表現を含む文字列。
例外
例外 | 状態 |
---|---|
ArgumentNullException | geometryValue が null です。 |
ArgumentException | geometryValue は、この空間サービスの実装と互換性がありません。 |