SqlSpatialFunctions.BufferWithTolerance Method

Definition

Overloads

BufferWithTolerance(DbGeography, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

Returns a geometric object representing the union of all point values whose distance from a geography instance is less than or equal to a specified value, allowing for a specified tolerance.

BufferWithTolerance(DbGeometry, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

Returns a geometric object representing the union of all point values whose distance from a geometry instance is less than or equal to a specified value, allowing for a specified tolerance.

BufferWithTolerance(DbGeography, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

Returns a geometric object representing the union of all point values whose distance from a geography instance is less than or equal to a specified value, allowing for a specified tolerance.

[System.Data.Entity.DbFunction("SqlServer", "BUFFERWITHTOLERANCE")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="tolerance")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="distance")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="relative")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="geographyValue")]
public static System.Data.Entity.Spatial.DbGeography BufferWithTolerance (System.Data.Entity.Spatial.DbGeography geographyValue, Nullable<double> distance, Nullable<double> tolerance, Nullable<bool> relative);
static member BufferWithTolerance : System.Data.Entity.Spatial.DbGeography * Nullable<double> * Nullable<double> * Nullable<bool> -> System.Data.Entity.Spatial.DbGeography
Public Shared Function BufferWithTolerance (geographyValue As DbGeography, distance As Nullable(Of Double), tolerance As Nullable(Of Double), relative As Nullable(Of Boolean)) As DbGeography

Parameters

geographyValue
DbGeography

The geography value.

distance
Nullable<Double>

The distance.

tolerance
Nullable<Double>

The specified tolerance.

relative
Nullable<Boolean>

Specifying whether the tolerance value is relative or absolute.

Returns

The union of all point values whose distance from a geography instance is less than or equal to a specified value

Attributes

Applies to

BufferWithTolerance(DbGeometry, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

Returns a geometric object representing the union of all point values whose distance from a geometry instance is less than or equal to a specified value, allowing for a specified tolerance.

[System.Data.Entity.DbFunction("SqlServer", "BUFFERWITHTOLERANCE")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="distance")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="geometryValue")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="relative")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="tolerance")]
public static System.Data.Entity.Spatial.DbGeometry BufferWithTolerance (System.Data.Entity.Spatial.DbGeometry geometryValue, Nullable<double> distance, Nullable<double> tolerance, Nullable<bool> relative);
static member BufferWithTolerance : System.Data.Entity.Spatial.DbGeometry * Nullable<double> * Nullable<double> * Nullable<bool> -> System.Data.Entity.Spatial.DbGeometry
Public Shared Function BufferWithTolerance (geometryValue As DbGeometry, distance As Nullable(Of Double), tolerance As Nullable(Of Double), relative As Nullable(Of Boolean)) As DbGeometry

Parameters

geometryValue
DbGeometry

The geometry value.

distance
Nullable<Double>

The distance.

tolerance
Nullable<Double>

The specified tolerance.

relative
Nullable<Boolean>

Specifying whether the tolerance value is relative or absolute.

Returns

The union of all point values whose distance from a geometry instance is less than or equal to a specified value

Attributes

Applies to