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