C# Класс MongoDB.Bson.Serialization.Serializers.BitmapSerializer

Represents a serializer for Bitmaps.
Наследование: MongoDB.Bson.Serialization.Serializers.BsonBaseSerializer
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
BitmapSerializer System

Открытые методы

Метод Описание
Deserialize ( MongoDB.Bson.IO.BsonReader bsonReader, Type nominalType, Type actualType, IBsonSerializationOptions options ) : object

Deserializes an Bitmap from a BsonReader.

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

Serializes a Bitmap to a BsonWriter.

Приватные методы

Метод Описание
BitmapSerializer ( ) : System

Описание методов

Deserialize() публичный метод

Deserializes an Bitmap from a BsonReader.
public Deserialize ( MongoDB.Bson.IO.BsonReader bsonReader, Type nominalType, Type actualType, IBsonSerializationOptions options ) : object
bsonReader MongoDB.Bson.IO.BsonReader The BsonReader.
nominalType System.Type The nominal type of the Bitmap.
actualType System.Type The actual type of the Bitmap.
options IBsonSerializationOptions The serialization options.
Результат object

Serialize() публичный метод

Serializes a Bitmap to a BsonWriter.
public Serialize ( BsonWriter bsonWriter, Type nominalType, object value, IBsonSerializationOptions options ) : void
bsonWriter MongoDB.Bson.IO.BsonWriter The BsonWriter.
nominalType System.Type The nominal type.
value object The Bitmap.
options IBsonSerializationOptions The serialization options.
Результат void