SqlGeography.GeomFromGml Method (SqlXml, Int32)

 

Applies To: SQL Server 2016 Preview

Constructs a SqlGeography instance given a representation in the SQL Server subset of the Geography Markup Language (GML).

Namespace:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)

Syntax

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public static SqlGeography GeomFromGml(
    SqlXml xml,
    int srid
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
static SqlGeography^ GeomFromGml(
    SqlXml^ xml,
    int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
static member GeomFromGml : 
        xml:SqlXml *
        srid:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Shared Function GeomFromGml (
    xml As SqlXml,
    srid As Integer
) As SqlGeography

Parameters

  • srid
    Type: System.Int32

    An int expression that represents the spatial reference ID (SRID) of the geography instance you wish to return.

Return Value

Type: Microsoft.SqlServer.Types.SqlGeography

A SqlGeography value constructed from the specified GML.

Remarks

This method throws a FormatException if the input is not well-formatted.

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top