DbGeography.LineFromBinary-Methode
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Erstellt einen neuen DbGeography-Zeilenwert auf Grundlage des angegebenen bekannten Binärwerts und der Koordinatensystem-ID (SRID).
Namespace: System.Data.Entity.Spatial
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Shared Function LineFromBinary ( _
lineWellKnownBinary As Byte(), _
coordinateSystemId As Integer _
) As DbGeography
'Usage
Dim lineWellKnownBinary As Byte()
Dim coordinateSystemId As Integer
Dim returnValue As DbGeography
returnValue = DbGeography.LineFromBinary(lineWellKnownBinary, _
coordinateSystemId)
public static DbGeography LineFromBinary(
byte[] lineWellKnownBinary,
int coordinateSystemId
)
public:
static DbGeography^ LineFromBinary(
array<unsigned char>^ lineWellKnownBinary,
int coordinateSystemId
)
static member LineFromBinary :
lineWellKnownBinary:byte[] *
coordinateSystemId:int -> DbGeography
public static function LineFromBinary(
lineWellKnownBinary : byte[],
coordinateSystemId : int
) : DbGeography
Parameter
- lineWellKnownBinary
Typ: System.Byte[]
Ein Bytearray, das eine bekannte binäre Darstellung des Geografiewerts enthält.
- coordinateSystemId
Typ: System.Int32
Der Bezeichner des Koordinatensystems, das der neue DbGeography-Wert verwenden soll.
Rückgabewert
Typ: System.Data.Entity.Spatial.DbGeography
Ein neuer DbGeography-Wert, wie durch den bekannten binären Wert mit der angegebenen Koordinatensystem-ID definiert.