GeoJsonObjectSerializerHelperTCoordinatesSerializeMembersTValue Method |
Serializes the members.
Namespace:
MongoDB.Driver.GeoJsonObjectModel.Serializers
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public 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