DbSpatialServices.GetEndPoint Method

Definition

Returns the end point of the given value.

Overloads

GetEndPoint(DbGeography)

Returns a DbGeography value that represents the end point of the given DbGeography value, which may be null if the value does not represent a curve.

GetEndPoint(DbGeometry)

Returns a DbGeometry value that represents the end point of the given DbGeometry value, which may be null if the value does not represent a curve.

GetEndPoint(DbGeography)

Returns a DbGeography value that represents the end point of the given DbGeography value, which may be null if the value does not represent a curve.

public:
 abstract System::Data::Spatial::DbGeography ^ GetEndPoint(System::Data::Spatial::DbGeography ^ geographyValue);
public abstract System.Data.Spatial.DbGeography GetEndPoint (System.Data.Spatial.DbGeography geographyValue);
abstract member GetEndPoint : System.Data.Spatial.DbGeography -> System.Data.Spatial.DbGeography
Public MustOverride Function GetEndPoint (geographyValue As DbGeography) As DbGeography

Parameters

geographyValue
DbGeography

The geography value, which need not represent a curve.

Returns

The end point of geographyValue, if it represents a curve; otherwise null.

Exceptions

geographyValue

geographyValue

Applies to

GetEndPoint(DbGeometry)

Returns a DbGeometry value that represents the end point of the given DbGeometry value, which may be null if the value does not represent a curve.

public:
 abstract System::Data::Spatial::DbGeometry ^ GetEndPoint(System::Data::Spatial::DbGeometry ^ geometryValue);
public abstract System.Data.Spatial.DbGeometry GetEndPoint (System.Data.Spatial.DbGeometry geometryValue);
abstract member GetEndPoint : System.Data.Spatial.DbGeometry -> System.Data.Spatial.DbGeometry
Public MustOverride Function GetEndPoint (geometryValue As DbGeometry) As DbGeometry

Parameters

geometryValue
DbGeometry

The geometry value, which need not represent a curve.

Returns

The end point of geometryValue, if it represents a curve; otherwise null.

Exceptions

geometryValue

geometryValue

Applies to