| GeoJsonPolygonTCoordinates Method (GeoJsonObjectArgsTCoordinates, TCoordinates) | 
 
            Creates a GeoJson Polygon object.
            
 
    Namespace: 
   MongoDB.Driver.GeoJsonObjectModel
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
 Syntax
Syntaxpublic static GeoJsonPolygon<TCoordinates> Polygon<TCoordinates>(
	GeoJsonObjectArgs<TCoordinates> args,
	params TCoordinates[] positions
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function Polygon(Of TCoordinates As GeoJsonCoordinates) ( 
	args As GeoJsonObjectArgs(Of TCoordinates),
	ParamArray positions As TCoordinates()
) As GeoJsonPolygon(Of TCoordinates)
static member Polygon : 
        args : GeoJsonObjectArgs<'TCoordinates> * 
        positions : 'TCoordinates[] -> GeoJsonPolygon<'TCoordinates>  when 'TCoordinates : GeoJsonCoordinates
Parameters
- args
- Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonObjectArgsTCoordinates
 The additional args.
- positions
- Type: TCoordinates
 The positions.
Type Parameters
- TCoordinates
- The type of the coordinates.
Return Value
Type: 
GeoJsonPolygonTCoordinatesA GeoJson Polygon object.
 See Also
See Also