BsonSerializerSerialize Method (IBsonWriter, Type, Object, ActionBsonSerializationContextBuilder, BsonSerializationArgs) |
Serializes a value.
Namespace:
MongoDB.Bson.Serialization
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public static void Serialize(
IBsonWriter bsonWriter,
Type nominalType,
Object value,
Action<BsonSerializationContextBuilder> configurator = null,
BsonSerializationArgs args = null
)
Public Shared Sub Serialize (
bsonWriter As IBsonWriter,
nominalType As Type,
value As Object,
Optional configurator As Action(Of BsonSerializationContextBuilder) = Nothing,
Optional args As BsonSerializationArgs = Nothing
)
static member Serialize :
bsonWriter : IBsonWriter *
nominalType : Type *
value : Object *
?configurator : Action<BsonSerializationContextBuilder> *
?args : BsonSerializationArgs
(* Defaults:
let _configurator = defaultArg configurator null
let _args = defaultArg args null
*)
-> unit
Parameters
- bsonWriter
- Type: MongoDB.Bson.IOIBsonWriter
The BsonWriter. - nominalType
- Type: SystemType
The nominal type of the object. - value
- Type: SystemObject
The object. - configurator (Optional)
- Type: SystemActionBsonSerializationContextBuilder
The serialization context configurator. - args (Optional)
- Type: MongoDB.Bson.SerializationBsonSerializationArgs
The serialization args.
See Also