| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* Copyright 2010-2015 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;
- namespace MongoDB.Bson.Serialization
- {
- /// <summary>
- /// Extensions methods for IBsonSerializer.
- /// </summary>
- public static class IBsonSerializerExtensions
- {
- // methods
- /// <summary>
- /// Deserializes a value.
- /// </summary>
- /// <param name="serializer">The serializer.</param>
- /// <param name="context">The deserialization context.</param>
- /// <returns>A deserialized value.</returns>
- public static object Deserialize(this IBsonSerializer serializer, BsonDeserializationContext context)
- {
- var args = new BsonDeserializationArgs { NominalType = serializer.ValueType };
- return serializer.Deserialize(context, args);
- }
- /// <summary>
- /// Deserializes a value.
- /// </summary>
- /// <typeparam name="TValue">The type that this serializer knows how to serialize.</typeparam>
- /// <param name="serializer">The serializer.</param>
- /// <param name="context">The deserialization context.</param>
- /// <returns>A deserialized value.</returns>
- public static TValue Deserialize<TValue>(this IBsonSerializer<TValue> serializer, BsonDeserializationContext context)
- {
- var args = new BsonDeserializationArgs { NominalType = serializer.ValueType };
- return serializer.Deserialize(context, args);
- }
- /// <summary>
- /// Serializes a value.
- /// </summary>
- /// <param name="serializer">The serializer.</param>
- /// <param name="context">The serialization context.</param>
- /// <param name="value">The value.</param>
- public static void Serialize(this IBsonSerializer serializer, BsonSerializationContext context, object value)
- {
- var args = new BsonSerializationArgs { NominalType = serializer.ValueType };
- serializer.Serialize(context, args, value);
- }
- /// <summary>
- /// Serializes a value.
- /// </summary>
- /// <typeparam name="TValue">The type that this serializer knows how to serialize.</typeparam>
- /// <param name="serializer">The serializer.</param>
- /// <param name="context">The serialization context.</param>
- /// <param name="value">The value.</param>
- public static void Serialize<TValue>(this IBsonSerializer<TValue> serializer, BsonSerializationContext context, TValue value)
- {
- var args = new BsonSerializationArgs { NominalType = serializer.ValueType };
- serializer.Serialize(context, args, value);
- }
- }
- }
|