DbSpatialServices.GetIsClosed 方法 (DbGeography)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
傳回可為 Null 的布林值,指出指定的 DbGeography 值是否封閉,如果該值不代表曲線,則可能為 null。
命名空間: System.Data.Entity.Spatial
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public MustOverride Function GetIsClosed ( _
geographyValue As DbGeography _
) As Nullable(Of Boolean)
'用途
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim returnValue As Nullable(Of Boolean)
returnValue = instance.GetIsClosed(geographyValue)
public abstract Nullable<bool> GetIsClosed(
DbGeography geographyValue
)
public:
virtual Nullable<bool> GetIsClosed(
DbGeography^ geographyValue
) abstract
abstract GetIsClosed :
geographyValue:DbGeography -> Nullable<bool>
public abstract function GetIsClosed(
geographyValue : DbGeography
) : Nullable<boolean>
參數
- geographyValue
類型:System.Data.Entity.Spatial.DbGeography
地理位置值,不需要代表曲線。
傳回值
類型:System.Nullable<Boolean>
若指定的 DbGeography 值為封閉,則為 true,否則為 false。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | geographyValue 為 null。 |
ArgumentException | geographyValue 與此空間服務實作不相容。 |