MongoCollectionGeoNearAsTDocument Method (IMongoQuery, Double, Double, Int32, IMongoGeoNearOptions) | 
 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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax[ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")]
public virtual GeoNearResult<TDocument> GeoNearAs<TDocument>(
	IMongoQuery query,
	double x,
	double y,
	int limit,
	IMongoGeoNearOptions options
)
<ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")>
Public Overridable Function GeoNearAs(Of TDocument) ( 
	query As IMongoQuery,
	x As Double,
	y As Double,
	limit As Integer,
	options As IMongoGeoNearOptions
) As GeoNearResult(Of TDocument)[<ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")>]
abstract GeoNearAs : 
        query : IMongoQuery * 
        x : float * 
        y : float * 
        limit : int * 
        options : IMongoGeoNearOptions -> GeoNearResult<'TDocument> 
[<ObsoleteAttribute("Use the overload of GeoNearAs that has a GeoNearArgs parameter instead.")>]
override GeoNearAs : 
        query : IMongoQuery * 
        x : float * 
        y : float * 
        limit : int * 
        options : IMongoGeoNearOptions -> GeoNearResult<'TDocument> Parameters
- 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. - options
 - Type: MongoDB.DriverIMongoGeoNearOptions
The GeoNear command options (usually a GeoNearOptionsDocument or constructed using the GeoNearOptions builder). 
Type Parameters
- TDocument
 - The type to deserialize the documents as.
 
Return Value
Type: 
GeoNearResultTDocumentA 
GeoNearResultTDocument.
See Also