| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* Copyright 2010-2014 MongoDB Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- using System;
- using MongoDB.Bson.IO;
- namespace MongoDB.Bson.Serialization
- {
- /// <summary>
- /// An interface implemented by BSON serializers.
- /// </summary>
- public interface IBsonSerializer
- {
- /// <summary>
- /// Deserializes an object from a BsonReader.
- /// </summary>
- /// <param name="bsonReader">The BsonReader.</param>
- /// <param name="nominalType">The nominal type of the object.</param>
- /// <param name="options">The serialization options.</param>
- /// <returns>An object.</returns>
- object Deserialize(BsonReader bsonReader, Type nominalType, IBsonSerializationOptions options);
- /// <summary>
- /// Deserializes an object from a BsonReader.
- /// </summary>
- /// <param name="bsonReader">The BsonReader.</param>
- /// <param name="nominalType">The nominal type of the object.</param>
- /// <param name="actualType">The actual type of the object.</param>
- /// <param name="options">The serialization options.</param>
- /// <returns>An object.</returns>
- object Deserialize(BsonReader bsonReader, Type nominalType, Type actualType, IBsonSerializationOptions options);
- /// <summary>
- /// Gets the default serialization options for this serializer.
- /// </summary>
- /// <returns>The default serialization options for this serializer.</returns>
- IBsonSerializationOptions GetDefaultSerializationOptions();
- /// <summary>
- /// Serializes an object to a BsonWriter.
- /// </summary>
- /// <param name="bsonWriter">The BsonWriter.</param>
- /// <param name="nominalType">The nominal type.</param>
- /// <param name="value">The object.</param>
- /// <param name="options">The serialization options.</param>
- void Serialize(BsonWriter bsonWriter, Type nominalType, object value, IBsonSerializationOptions options);
- }
- }
|