DbSpatialServices.GetIsClosed メソッド (DbGeography)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定した DbGeography 値が閉じているかどうかを表す null 許容型のブール値を返します。値が曲線を表していない場合は 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
曲線を表す必要のない geography 値。
戻り値
型 : System.Nullable<Boolean>
指定した DbGeography 値が閉じている場合は true。それ以外の場合は false。
例外
例外 | 状態 |
---|---|
ArgumentNullException | geographyValue が null です。 |
ArgumentException | geographyValue は、この空間サービスの実装と互換性がありません。 |