Я жду в цикле прогрузку ресурса с минимальным тайаутом и тут бах
C#:
Dictionary<string, string> dictionary;
try
{
dictionary = JsonConvert.DeserializeObject<Dictionary<string, string>>(error);
}
catch
{
dictionary = new Dictionary<string, string>
{
{
"ExceptionType",
""
},
{
"ExceptionMessage",
error
}
};
}
if (dictionary["ExceptionType"] == typeof(TimeoutException).Name)
{
throw new RequestAbortedException
{
_dataString = text
};
}
throw new Exception(dictionary["ExceptionMessage"]);