| GeoJsonObjectSerializerHelperTCoordinatesSerializeMembersTValue Method  | 
 
            Serializes the members.
            
 
    Namespace: 
   MongoDB.Driver.GeoJsonObjectModel.Serializers
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxpublic void SerializeMembers<TValue>(
	BsonSerializationContext context,
	TValue value,
	Action<BsonSerializationContext, TValue> serializeDerivedMembers
)
where TValue : GeoJsonObject<TCoordinates>
Public Sub SerializeMembers(Of TValue As GeoJsonObject(Of TCoordinates)) ( 
	context As BsonSerializationContext,
	value As TValue,
	serializeDerivedMembers As Action(Of BsonSerializationContext, TValue)
)
member SerializeMembers : 
        context : BsonSerializationContext * 
        value : 'TValue * 
        serializeDerivedMembers : Action<BsonSerializationContext, 'TValue> -> unit  when 'TValue : GeoJsonObject<'TCoordinates>
Parameters
- context
- Type: MongoDB.Bson.SerializationBsonSerializationContext
 The context.
- value
- Type: TValue
 The value.
- serializeDerivedMembers
- Type: SystemActionBsonSerializationContext, TValue
 The delegate to serialize the derived members.
Type Parameters
- TValue
- The type of the value.
 See Also
See Also