Metodo DbGeography.PolygonFromBinary
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Crea un nuovo valore poligono DbGeography in base al valore WKB e all'identificatore del sistema di coordinate (SRID) specificati.
Spazio dei nomi: System.Data.Entity.Spatial
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Shared Function PolygonFromBinary ( _
polygonWellKnownBinary As Byte(), _
coordinateSystemId As Integer _
) As DbGeography
'Utilizzo
Dim polygonWellKnownBinary As Byte()
Dim coordinateSystemId As Integer
Dim returnValue As DbGeography
returnValue = DbGeography.PolygonFromBinary(polygonWellKnownBinary, _
coordinateSystemId)
public static DbGeography PolygonFromBinary(
byte[] polygonWellKnownBinary,
int coordinateSystemId
)
public:
static DbGeography^ PolygonFromBinary(
array<unsigned char>^ polygonWellKnownBinary,
int coordinateSystemId
)
static member PolygonFromBinary :
polygonWellKnownBinary:byte[] *
coordinateSystemId:int -> DbGeography
public static function PolygonFromBinary(
polygonWellKnownBinary : byte[],
coordinateSystemId : int
) : DbGeography
Parametri
- polygonWellKnownBinary
Tipo: System.Byte[]
Matrice di byte che contiene una rappresentazione WKB del valore geografico.
- coordinateSystemId
Tipo: System.Int32
Identificatore del sistema di coordinate che deve essere utilizzato dal nuovo valore DbGeography.
Valore restituito
Tipo: System.Data.Entity.Spatial.DbGeography
Nuovo valore DbGeography definito dal valore WKB con l'identificatore del sistema di coordinate specificato.