你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Geometry.IsValid Method

Definition

Determines if the geometry specified is valid and can be indexed or used in queries by Azure Cosmos DB service.

If a geometry is not valid, it will not be indexed. Also during query time invalid geometries are equivalent to undefined.

public bool IsValid();
member this.IsValid : unit -> bool
Public Function IsValid () As Boolean

Returns

true if geometry is valid. false otherwise.

Examples

This example select all the documents which contain invalid geometries which were not indexed.

var invalidDocuments = documents.Where(document => !document.Location.IsValid());

Remarks

Currently this function supports geometry of type Point and Polygon.

Applies to