GeoJsonObjectSerializerHelperTCoordinatesSerializeMembersTValue Method  | 
 
            Serializes the members.
            
 
    Namespace: 
   MongoDB.Driver.GeoJsonObjectModel.Serializers
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
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