SqlGeography.STMPointFromWKB (Método) (SqlBytes, Int32)
Devuelve una instancia de SqlGeography MultiPoint a partir de la representación Well-Known Binary (WKB) de Open Geospatial Consortium (OGC).
Espacio de nombres: Microsoft.SqlServer.Types
Ensamblado: Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)
Sintaxis
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
public static SqlGeography STMPointFromWKB(
SqlBytes wkbMultiPoint,
int srid
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
static SqlGeography^ STMPointFromWKB(
SqlBytes^ wkbMultiPoint,
int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)>]
static member STMPointFromWKB :
wkbMultiPoint:SqlBytes *
srid:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := True)>
Public Shared Function STMPointFromWKB (
wkbMultiPoint As SqlBytes,
srid As Integer
) As SqlGeography
Parámetros
wkbMultiPoint
Type: System.Data.SqlTypes.SqlBytesRepresentación WKB de la instancia de SqlGeographyMultiPoint que desea devolver.
srid
Type: System.Int32Expresión int que representa el identificador de referencia espacial (SRID) de la instancia de SqlGeographyMultiPoint que desea devolver.
Valor devuelto
Type: Microsoft.SqlServer.Types.SqlGeography
Instancia de SqlGeography construida a partir de la representación WKB especificada.
Comentarios
Este método produce una excepción FormatException si la entrada no tiene el formato correcto.
Vea también
SqlGeography (Clase)
Microsoft.SqlServer.Types (Espacio de nombres)
Volver al principio