C# Class MongoDB.Bson.Serialization.Serializers.BsonDocumentSerializer

Represents a serializer for BsonDocuments.
Inheritance: MongoDB.Bson.Serialization.Serializers.BsonBaseSerializer
显示文件 Open project: egametang/Egametang Class Usage Examples

Public Methods

Method Description
BsonDocumentSerializer ( ) : System

Initializes a new instance of the BsonDocumentSerializer class.

Deserialize ( BsonReader bsonReader, Type nominalType, Type actualType, IBsonSerializationOptions options ) : object

Deserializes an object from a BsonReader.

GetDocumentId ( object document, object &id, Type &idNominalType, IIdGenerator &idGenerator ) : bool

Gets the document Id.

GetMemberSerializationInfo ( string memberName ) : BsonSerializationInfo

Gets the serialization info for a member.

Serialize ( BsonWriter bsonWriter, Type nominalType, object value, IBsonSerializationOptions options ) : void

Serializes an object to a BsonWriter.

SetDocumentId ( object document, object id ) : void

Sets the document Id.

Method Details

BsonDocumentSerializer() public method

Initializes a new instance of the BsonDocumentSerializer class.
public BsonDocumentSerializer ( ) : System
return System

Deserialize() public method

Deserializes an object from a BsonReader.
public Deserialize ( BsonReader bsonReader, Type nominalType, Type actualType, IBsonSerializationOptions options ) : object
bsonReader BsonReader The BsonReader.
nominalType System.Type The nominal type of the object.
actualType System.Type The actual type of the object.
options IBsonSerializationOptions The serialization options.
return object

GetDocumentId() public method

Gets the document Id.
public GetDocumentId ( object document, object &id, Type &idNominalType, IIdGenerator &idGenerator ) : bool
document object The document.
id object The Id.
idNominalType System.Type The nominal type of the Id.
idGenerator IIdGenerator The IdGenerator for the Id type.
return bool

GetMemberSerializationInfo() public method

Gets the serialization info for a member.
public GetMemberSerializationInfo ( string memberName ) : BsonSerializationInfo
memberName string The member name.
return MongoDB.Bson.Serialization.BsonSerializationInfo

Serialize() public method

Serializes an object to a BsonWriter.
public Serialize ( BsonWriter bsonWriter, Type nominalType, object value, IBsonSerializationOptions options ) : void
bsonWriter BsonWriter The BsonWriter.
nominalType System.Type The nominal type.
value object The object.
options IBsonSerializationOptions The serialization options.
return void

SetDocumentId() public method

Sets the document Id.
public SetDocumentId ( object document, object id ) : void
document object The document.
id object The Id.
return void