SqlGeography.STIntersection Method (SqlGeography)

 

Applies To: SQL Server 2016 Preview

Returns an object representing the points where a SqlGeography instance intersects another SqlGeography instance.

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

Syntax

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

Parameters

Return Value

Type: Microsoft.SqlServer.Types.SqlGeography

A SqlGeography value containing the points where the specified SqlGeography instance intersects the current SqlGeography instance.

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top