SqlGeography.STIntersects Method (SqlGeography)

 

Applies To: SQL Server 2016 Preview

Determines whether the current SqlGeography instance intersects with the specified SqlGeography.

Namespace:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)

Syntax

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlBoolean STIntersects(
    SqlGeography other
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
SqlBoolean STIntersects(
    SqlGeography^ other
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member STIntersects : 
        other:SqlGeography -> SqlBoolean
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Function STIntersects (
    other As SqlGeography
) As SqlBoolean

Parameters

Return Value

Type: System.Data.SqlTypes.SqlBoolean

A SqlBoolean value that indicates if the calling SqlGeography instance intersects another SqlGeography instance. Returns true if there is an intersection. Otherwise, false.

Remarks

This method always returns null if the spatial reference IDs (SRIDs) of the SqlGeography instances do not match.

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top