File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Serialization/Conventions Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,11 @@ public void Apply(BsonMemberMap memberMap)
4444 memberMap . SetDefaultValue ( Guid . Empty ) ;
4545 }
4646 }
47+
48+ public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain )
49+ {
50+ throw new NotImplementedException ( ) ;
51+ }
4752 }
4853
4954 private static void InitializeSerialization ( )
Original file line number Diff line number Diff line change @@ -169,6 +169,11 @@ public void Apply(BsonMemberMap memberMap)
169169 RunCount ++ ;
170170 RunOrder = _orderIndexProvider ( ) ;
171171 }
172+
173+ public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain )
174+ {
175+ throw new NotImplementedException ( ) ;
176+ }
172177 }
173178
174179 private class TrackingAfterConvention : IPostProcessingConvention , ITrackRun
@@ -194,6 +199,11 @@ public void PostProcess(BsonClassMap classMap)
194199 RunCount ++ ;
195200 RunOrder = _orderIndexProvider ( ) ;
196201 }
202+
203+ public void PostProcess ( BsonClassMap classMap , IBsonSerializationDomain domain )
204+ {
205+ throw new NotImplementedException ( ) ;
206+ }
197207 }
198208 }
199209}
You can’t perform that action at this time.
0 commit comments