@Mugan you've asked a very interesting question! To answer it, I had to decompile SqlCeLockTimeoutException
. I learned a lot when i tried to help you. thank you.
The problem occured becouse System.Exception
C`tor needs some properties to be deserialized:
[System.Security.SecuritySafeCritical] // auto-generated
protected Exception(SerializationInfo info, StreamingContext context)
{
//some validation
_className = info.GetString("ClassName");
_message = info.GetString("Message");
_data = (IDictionary)(info.GetValueNoThrow("Data",typeof(IDictionary)));
_innerException = (Exception)(info.GetValue("InnerException",typeof(Exception)));
_helpURL = info.GetString("HelpURL");
_stackTraceString = info.GetString("StackTraceString");
_remoteStackTraceString = info.GetString("RemoteStackTraceString");
_remoteStackIndex = info.GetInt32("RemoteStackIndex");
_exceptionMethodString = (String)(info.GetValue("ExceptionMethod",typeof(String)));
HResult = info.GetInt32("HResult");
_source = info.GetString("Source");
//some bla bla....
To solve the above problem I changed the protected C`tor to public and then use it:
var info = new SerializationInfo(typeof (TestableSqlCeLockTimeoutException),
new FormatterConverter());
info.AddValue("ClassName", string.Empty);
info.AddValue("Message", string.Empty);
info.AddValue("InnerException", new ArgumentException());
info.AddValue("HelpURL", string.Empty);
info.AddValue("StackTraceString", string.Empty);
info.AddValue("RemoteStackTraceString", string.Empty);
info.AddValue("RemoteStackIndex", 0);
info.AddValue("ExceptionMethod", string.Empty);
info.AddValue("HResult", 1);
info.AddValue("Source", string.Empty);
new TestableSqlCeLockTimeoutException(info,new StreamingContext());
Then new exception raised this time from SqlCeException
. SqlCeException
Ctor also needs a property __Errors__
:
protected SqlCeException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info == null)
throw new ArgumentNullException("info");
this.Errors = (SqlCeErrorCollection) info.GetValue("__Errors__", typeof (SqlCeErrorCollection));
}
SqlCeErrorCollection
Ctor is internal, therefore I used Reflaction
to create an instance:
BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Instance;
CultureInfo culture = null; // use InvariantCulture or other if you prefer
object instantiatedType =
Activator.CreateInstance(typeof(SqlCeErrorCollection), flags, null, null, culture);
info.AddValue("__Errors__", instantiatedType);
Now every thing works. I end up with a creation method:
private static SqlCeLockTimeoutException CreateSqlCeLockTimeoutExceptionForTest()
{
var info = new SerializationInfo(typeof (TestableSqlCeLockTimeoutException),
new FormatterConverter());
info.AddValue("ClassName", string.Empty);
info.AddValue("Message", string.Empty);
info.AddValue("InnerException", new ArgumentException());
info.AddValue("HelpURL", string.Empty);
info.AddValue("StackTraceString", string.Empty);
info.AddValue("RemoteStackTraceString", string.Empty);
info.AddValue("RemoteStackIndex", 0);
info.AddValue("ExceptionMethod", string.Empty);
info.AddValue("HResult", 1);
info.AddValue("Source", string.Empty);
BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Instance;
CultureInfo culture = null; // use InvariantCulture or other if you prefer
object instantiatedType = Activator.CreateInstance(typeof (SqlCeErrorCollection),
flags, null, null, culture);
info.AddValue("__Errors__", instantiatedType);
return new TestableSqlCeLockTimeoutException(info, new StreamingContext());
}
One more thing you can used Reflaction
to create a new instance of SqlCeLockTimeoutException
instead of the TestableSqlCeLockTimeoutException
:
private static SqlCeLockTimeoutException CreateSqlCeLockTimeoutExceptionForTest()
{
BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Instance;
CultureInfo culture = null; // use InvariantCulture or other if you prefer
object instantiatedType = Activator.CreateInstance(typeof (SqlCeErrorCollection),
flags, null, null, culture);
object result = Activator.CreateInstance(typeof(SqlCeLockTimeoutException),
flags, null, new []{instantiatedType}, culture);
return (SqlCeLockTimeoutException)result;
}