B
Bart
Hi, what is wrong with following code:
try
{
subm.EndInvoke(ar);
}
catch (System.Net.WebException ex)
{
try
{
System.Delegate.Remove(Submission, subm); --> no
exception is thrown, but delegate 'subm' is not removed from 'submission'
}
catch (Exception)
{
throw;
}
}
Thanks
try
{
subm.EndInvoke(ar);
}
catch (System.Net.WebException ex)
{
try
{
System.Delegate.Remove(Submission, subm); --> no
exception is thrown, but delegate 'subm' is not removed from 'submission'
}
catch (Exception)
{
throw;
}
}
Thanks