Click or drag to resize

Query.WithinCircle Method (String, Double, Double, Double, Boolean)

Tests that the value of the named element is within a circle (see $within and $center).

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public static IMongoQuery WithinCircle(
	string name,
	double centerX,
	double centerY,
	double radius,
	bool spherical
)

Parameters

name
Type: System.String
The name of the element to test.
centerX
Type: System.Double
The x coordinate of the origin.
centerY
Type: System.Double
The y coordinate of the origin.
radius
Type: System.Double
The radius of the circle.
spherical
Type: System.Boolean
if set to true [spherical].

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also