@@ -101,7 +101,7 @@ public static BsonDocumentWrapper Create<TNominalType>(TNominalType value) =>
101101 /// <param name="domain"></param>
102102 /// <typeparam name="TNominalType"></typeparam>
103103 /// <returns></returns>
104- public static BsonDocumentWrapper Create < TNominalType > ( TNominalType value , IBsonSerializationDomain domain )
104+ internal static BsonDocumentWrapper Create < TNominalType > ( TNominalType value , IBsonSerializationDomain domain )
105105 {
106106 return Create ( typeof ( TNominalType ) , value , domain ) ;
107107 }
@@ -122,7 +122,7 @@ public static BsonDocumentWrapper Create(Type nominalType, object value) =>
122122 /// <param name="value"></param>
123123 /// <param name="domain"></param>
124124 /// <returns></returns>
125- public static BsonDocumentWrapper Create ( Type nominalType , object value , IBsonSerializationDomain domain )
125+ internal static BsonDocumentWrapper Create ( Type nominalType , object value , IBsonSerializationDomain domain )
126126 {
127127 var serializer = domain . LookupSerializer ( nominalType ) ;
128128 return new BsonDocumentWrapper ( value , serializer ) ;
@@ -145,7 +145,7 @@ public static IEnumerable<BsonDocumentWrapper> CreateMultiple<TNominalType>(IEnu
145145 /// <typeparam name="TNominalType"></typeparam>
146146 /// <returns></returns>
147147 /// <exception cref="ArgumentNullException"></exception>
148- public static IEnumerable < BsonDocumentWrapper > CreateMultiple < TNominalType > ( IEnumerable < TNominalType > values , IBsonSerializationDomain domain )
148+ internal static IEnumerable < BsonDocumentWrapper > CreateMultiple < TNominalType > ( IEnumerable < TNominalType > values , IBsonSerializationDomain domain )
149149 {
150150 if ( values == null )
151151 {
@@ -173,7 +173,7 @@ public static IEnumerable<BsonDocumentWrapper> CreateMultiple(Type nominalType,
173173 /// <param name="domain"></param>
174174 /// <returns></returns>
175175 /// <exception cref="ArgumentNullException"></exception>
176- public static IEnumerable < BsonDocumentWrapper > CreateMultiple ( Type nominalType , IEnumerable values , IBsonSerializationDomain domain )
176+ internal static IEnumerable < BsonDocumentWrapper > CreateMultiple ( Type nominalType , IEnumerable values , IBsonSerializationDomain domain )
177177 {
178178 if ( nominalType == null )
179179 {
0 commit comments