本文整理汇总了C#中System.UnhandledExceptionEventArgs.ExceptionObject属性的典型用法代码示例。如果您正苦于以下问题:C# UnhandledExceptionEventArgs.ExceptionObject属性的具体用法?C# UnhandledExceptionEventArgs.ExceptionObject怎么用?C# UnhandledExceptionEventArgs.ExceptionObject使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。
在下文中一共展示了UnhandledExceptionEventArgs.ExceptionObject属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using System.Security.Permissions;
public class Example
{
[SecurityPermission(SecurityAction.Demand, Flags=SecurityPermissionFlag.ControlAppDomain)]
public static void Main()
{
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += new UnhandledExceptionEventHandler(MyHandler);
try {
throw new Exception("1");
} catch (Exception e) {
Console.WriteLine("Catch clause caught : {0} \n", e.Message);
}
throw new Exception("2");
}
static void MyHandler(object sender, UnhandledExceptionEventArgs args)
{
Exception e = (Exception) args.ExceptionObject;
Console.WriteLine("MyHandler caught : " + e.Message);
Console.WriteLine("Runtime terminating: {0}", args.IsTerminating);
}
}
输出:
Catch clause caught : 1 MyHandler caught : 2 Runtime terminating: True Unhandled Exception: System.Exception: 2 at Example.Main()