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)
44
44
memberMap . SetDefaultValue ( Guid . Empty ) ;
45
45
}
46
46
}
47
+
48
+ public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain )
49
+ {
50
+ throw new NotImplementedException ( ) ;
51
+ }
47
52
}
48
53
49
54
private static void InitializeSerialization ( )
Original file line number Diff line number Diff line change @@ -169,6 +169,11 @@ public void Apply(BsonMemberMap memberMap)
169
169
RunCount ++ ;
170
170
RunOrder = _orderIndexProvider ( ) ;
171
171
}
172
+
173
+ public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain )
174
+ {
175
+ throw new NotImplementedException ( ) ;
176
+ }
172
177
}
173
178
174
179
private class TrackingAfterConvention : IPostProcessingConvention , ITrackRun
@@ -194,6 +199,11 @@ public void PostProcess(BsonClassMap classMap)
194
199
RunCount ++ ;
195
200
RunOrder = _orderIndexProvider ( ) ;
196
201
}
202
+
203
+ public void PostProcess ( BsonClassMap classMap , IBsonSerializationDomain domain )
204
+ {
205
+ throw new NotImplementedException ( ) ;
206
+ }
197
207
}
198
208
}
199
209
}
You can’t perform that action at this time.
0 commit comments