SqlGeography.STGeomCollFromWKB (Método) (SqlBytes, Int32)
Devuelve una instancia de GeometryCollection a partir de una 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 STGeomCollFromWKB(
SqlBytes wkbGeometryCollection,
int srid
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
static SqlGeography^ STGeomCollFromWKB(
SqlBytes^ wkbGeometryCollection,
int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)>]
static member STGeomCollFromWKB :
wkbGeometryCollection:SqlBytes *
srid:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := True)>
Public Shared Function STGeomCollFromWKB (
wkbGeometryCollection As SqlBytes,
srid As Integer
) As SqlGeography
Parámetros
wkbGeometryCollection
Type: System.Data.SqlTypes.SqlBytesRepresentación WKB de la instancia de GeometryCollection que desea devolver.
srid
Type: System.Int32Expresión int que representa el identificador de referencia espacial (SRID) de la instancia de GeometryCollection que desea devolver.
Valor devuelto
Type: Microsoft.SqlServer.Types.SqlGeography
Valor SqlGeography construido a partir de la colección de Geometry WKB especificada.
Comentarios
El tipo OGC de la SqlGeography instancia devuelta por STGeomCollFromWKB se establece en GeometryCollection, MultiPolygon, MultiLineString o multipunto, dependiendo de la entrada WKB correspondiente.
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