static bool SkipException(Exception e)
{
if (e.HResult == unchecked((int)0x8001010A) || e.HResult == unchecked((int)0x80010001))
{
return true;
}
Console.WriteLine("HResult:=>" + e.HResult.ToString("x"));
Console.WriteLine(e);
return false;
}