DbSpatialServices.GeometryFromBinary Method

Definition

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

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::Spatial::DbGeometry ^ GeometryFromBinary(cli::array <System::Byte> ^ wellKnownBinary);
public abstract System.Data.Spatial.DbGeometry GeometryFromBinary (byte[] wellKnownBinary);
abstract member GeometryFromBinary : byte[] -> System.Data.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).

Exceptions

wellKnownBinary

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::Spatial::DbGeometry ^ GeometryFromBinary(cli::array <System::Byte> ^ wellKnownBinary, int coordinateSystemId);
public abstract System.Data.Spatial.DbGeometry GeometryFromBinary (byte[] wellKnownBinary, int coordinateSystemId);
abstract member GeometryFromBinary : byte[] * int -> System.Data.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).

Exceptions

wellKnownBinary

coordinateSystemId

Applies to