主题:请问 SetUnhandledExceptionFilter 在C#中如何调用?
下面是我在网上找到的代码,希望能够截获全局的异常:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace SetUnhandledExceptionFilter
{
public partial class Form1 : Form
{
public delegate Int32 CallBack(ref long a);
CallBack mycall;
[DllImport("kernel32")]
private static extern void RtlMoveMemory(ref byte dst,
ref byte src, Int32 len);
[DllImport("kernel32")]
private static extern Int32 SetUnhandledExceptionFilter(CallBack cb);
public static Int32 newexceptionfilter(ref long a)
{
MessageBox.Show("截获了全局异常!");
return 0;
}
public Form1()
{
InitializeComponent();
mycall = new CallBack(newexceptionfilter);
SetUnhandledExceptionFilter(mycall);
}
private void button1_Click(object sender, EventArgs e)
{
byte a = 1, b = 2;
MessageBox.Show("a=" + a.ToString());
RtlMoveMemory(ref a, ref b, 200);
MessageBox.Show("a=" + a.ToString());
}
}
}
但是运行后并没起到截获异常的效果:
按预想效果,点击 button1 后,应该弹出一个“截获了全局异常!”这样的对话框。
实际情况是:
当代码RtlMoveMemory(ref a, ref b, int c)中c=200时,程序报错“SetUnhandledExceptionFilter .vshost.exe[2504]中发生未处理的win32异常。”
当c=2000时,程序直接退出,没有任何显示(没有预想的“截获了全局异常!”),请问这是什么原因呢?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace SetUnhandledExceptionFilter
{
public partial class Form1 : Form
{
public delegate Int32 CallBack(ref long a);
CallBack mycall;
[DllImport("kernel32")]
private static extern void RtlMoveMemory(ref byte dst,
ref byte src, Int32 len);
[DllImport("kernel32")]
private static extern Int32 SetUnhandledExceptionFilter(CallBack cb);
public static Int32 newexceptionfilter(ref long a)
{
MessageBox.Show("截获了全局异常!");
return 0;
}
public Form1()
{
InitializeComponent();
mycall = new CallBack(newexceptionfilter);
SetUnhandledExceptionFilter(mycall);
}
private void button1_Click(object sender, EventArgs e)
{
byte a = 1, b = 2;
MessageBox.Show("a=" + a.ToString());
RtlMoveMemory(ref a, ref b, 200);
MessageBox.Show("a=" + a.ToString());
}
}
}
但是运行后并没起到截获异常的效果:
按预想效果,点击 button1 后,应该弹出一个“截获了全局异常!”这样的对话框。
实际情况是:
当代码RtlMoveMemory(ref a, ref b, int c)中c=200时,程序报错“SetUnhandledExceptionFilter .vshost.exe[2504]中发生未处理的win32异常。”
当c=2000时,程序直接退出,没有任何显示(没有预想的“截获了全局异常!”),请问这是什么原因呢?