本文整理汇总了C#中System.Threading.Tasks.Task.AddExceptionHandlerExt方法的典型用法代码示例。如果您正苦于以下问题:C# Task.AddExceptionHandlerExt方法的具体用法?C# Task.AddExceptionHandlerExt怎么用?C# Task.AddExceptionHandlerExt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Threading.Tasks.Task
的用法示例。
在下文中一共展示了Task.AddExceptionHandlerExt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
// configurações
Configuracoes.Configurar("ConsoleTests", NexTeckLib.TipoProjeto.Console, false);
ExceptionHandler.Iniciar(true, false, false);
#region primeiro teste: sucesso
ExceptionHandler.ExibirErro(exc, "mensagem ao usuário ai gente!", ExceptionHandler.IntensidadeErro.Grave);
#endregion
#region segundo teste: sucesso
throw exc;
#endregion
// Testes com Tasks //
Task t = new Task(new Action( () => { throw exc; } ));
#region terceiro teste: falha. Causa: precisa disso no arquivo app.config:
// <configuration>
// <runtime>
// <ThrowUnobservedTaskExceptions enabled = "true"/>
// </runtime>
// </configuration>
t.Start();
#endregion
#region quarto teste: falha e sucesso. Causa: a atividade do console termina antes de o ExceptionHandler ser executado dentro do Thread
t.AddExceptionHandlerExt().Start();
// Solução: esperar a atividade da task terminar
t.Wait();
#endregion
}