| MongoCollectionGeoNearAs Method (Type, IMongoQuery, Double, Double, Int32) | 
 Note: This API is now obsolete.
            Runs a GeoNear command on this collection.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntax[ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")]
public virtual GeoNearResult GeoNearAs(
	Type documentType,
	IMongoQuery query,
	double x,
	double y,
	int limit
)<ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")>
Public Overridable Function GeoNearAs ( 
	documentType As Type,
	query As IMongoQuery,
	x As Double,
	y As Double,
	limit As Integer
) As GeoNearResult[<ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")>]
abstract GeoNearAs : 
        documentType : Type * 
        query : IMongoQuery * 
        x : float * 
        y : float * 
        limit : int -> GeoNearResult 
[<ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")>]
override GeoNearAs : 
        documentType : Type * 
        query : IMongoQuery * 
        x : float * 
        y : float * 
        limit : int -> GeoNearResult Parameters
- documentType
- Type: SystemType
 The type to deserialize the documents as.
- query
- Type: MongoDB.DriverIMongoQuery
 The query (usually a QueryDocument or constructed using the Query builder).
- x
- Type: SystemDouble
 The x coordinate of the starting location.
- y
- Type: SystemDouble
 The y coordinate of the starting location.
- limit
- Type: SystemInt32
 The maximum number of results returned.
Return Value
Type: 
GeoNearResultA 
GeoNearResultTDocument.
 See Also
See Also