| QueryWithinCircle Method (String, Double, Double, Double) | 
 
            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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
 Syntax
Syntaxpublic static IMongoQuery WithinCircle(
	string name,
	double centerX,
	double centerY,
	double radius
)
Public Shared Function WithinCircle ( 
	name As String,
	centerX As Double,
	centerY As Double,
	radius As Double
) As IMongoQuery
static member WithinCircle : 
        name : string * 
        centerX : float * 
        centerY : float * 
        radius : float -> IMongoQuery 
Parameters
- name
- Type: SystemString
 The name of the element to test.
- centerX
- Type: SystemDouble
 The x coordinate of the origin.
- centerY
- Type: SystemDouble
 The y coordinate of the origin.
- radius
- Type: SystemDouble
 The radius of the circle.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also