/* Copyright 2010-present 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.Collections.Generic; namespace MongoDB.Bson.Serialization.Conventions { /// /// Convention pack of defaults. /// public class DefaultConventionPack : IConventionPack { // private static fields private static readonly IConventionPack __defaultConventionPack = new DefaultConventionPack(); // private fields private readonly IEnumerable _conventions; // constructors /// /// Initializes a new instance of the class. /// private DefaultConventionPack() { _conventions = new List { new ReadWriteMemberFinderConvention(), new NamedIdMemberConvention(new [] { "Id", "id", "_id" }), new NamedExtraElementsMemberConvention(new [] { "ExtraElements" }), new IgnoreExtraElementsConvention(false), new ImmutableTypeClassMapConvention(), new NamedParameterCreatorMapConvention(), new StringObjectIdIdGeneratorConvention(), // should be before LookupIdGeneratorConvention new LookupIdGeneratorConvention() }; } // public static properties /// /// Gets the instance. /// public static IConventionPack Instance { get { return __defaultConventionPack; } } // public properties /// /// Gets the conventions. /// public IEnumerable Conventions { get { return _conventions; } } } }