Beispiel #1
0
 /// <summary>
 /// This method should be called after every time the SerializationCtrl is used to perform
 /// serialization or deserialization. This method will usethe ReactToError method to react
 /// to any errors during the serialization process.
 /// </summary>
 private void ReactToSerializationError()
 {
     foreach (var err in SerializationCtrl.GetCurrentErrors())
     {
         ReactToError(err.GetFormatString(), err.GetFormatArgs());
     }
     SerializationCtrl.ClearCurrentErrors();
 }