DbSpatialServices.GeometryFromBinary Method

Definition

Overloads

GeometryFromBinary(Byte[])

Creates a new DbGeometry value based on the specified well-known binary value.

GeometryFromBinary(Byte[], Int32)

Creates a new DbGeometry value based on the specified well-known binary value and coordinate system identifier (SRID).

GeometryFromBinary(Byte[])

Creates a new DbGeometry value based on the specified well-known binary value.

public abstract System.Data.Entity.Spatial.DbGeometry GeometryFromBinary (byte[] wellKnownBinary);
abstract member GeometryFromBinary : byte[] -> System.Data.Entity.Spatial.DbGeometry
Public MustOverride Function GeometryFromBinary (wellKnownBinary As Byte()) As DbGeometry

Parameters

wellKnownBinary
Byte[]

A byte array that contains a well-known binary representation of the geometry value.

Returns

A new DbGeometry value as defined by the well-known binary value with the default DbGeometry coordinate system identifier (SRID) ( DefaultCoordinateSystemId ).

Applies to

GeometryFromBinary(Byte[], Int32)

Creates a new DbGeometry value based on the specified well-known binary value and coordinate system identifier (SRID).

public abstract System.Data.Entity.Spatial.DbGeometry GeometryFromBinary (byte[] wellKnownBinary, int coordinateSystemId);
abstract member GeometryFromBinary : byte[] * int -> System.Data.Entity.Spatial.DbGeometry
Public MustOverride Function GeometryFromBinary (wellKnownBinary As Byte(), coordinateSystemId As Integer) As DbGeometry

Parameters

wellKnownBinary
Byte[]

A byte array that contains a well-known binary representation of the geometry value.

coordinateSystemId
Int32

The identifier of the coordinate system that the new DbGeometry value should use.

Returns

A new DbGeometry value as defined by the well-known binary value with the specified coordinate system identifier (SRID) ( DefaultCoordinateSystemId ).

Applies to