SqlGeography.IsNull Property

 

Applies To: SQL Server 2016 Preview

Determines whether the SqlGeography instance is null.

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

Syntax

public bool IsNull {
    [SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
    get;
}
public:
property bool IsNull {
    [SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
    virtual bool get() sealed;
}
abstract IsNull : bool with get
override IsNull : bool with get
Public ReadOnly Property IsNull As Boolean

Property Value

Type: System.Boolean

A bool value that specifies whether the SqlGeography instance is null. If true, the instance is null. Otherwise, false.

Implements

INullable.IsNull

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top