Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than dbghelp, prefix the name with the module name and a period.
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct MINIDUMP_EXCEPTION_INFORMATION
{
public uint ThreadId;
public IntPtr ExceptionPointers;
public int ClientPointers;
}
/// <summary>
/// Call back function that will be called when an exception has occured. This function will create
/// a fullmemory dump of the application
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
string assemblyPath = Assembly.GetEntryAssembly().Location;
string dumpFileName = assemblyPath + "_" + DateTime.Now.ToString("dd.MM.yyyy.HH.mm.ss") + ".dmp";
FileStream file = new FileStream(dumpFileName, FileMode.Create);
MINIDUMP_EXCEPTION_INFORMATION info = new MINIDUMP_EXCEPTION_INFORMATION();
info.ClientPointers = 1;
info.ExceptionPointers = Marshal.GetExceptionPointers();
info.ThreadId = GetCurrentThreadId();
// A full memory dump is necessary in the case of a managed application, other wise no information
// regarding the managed code will be available
MiniDumpWriteDump( GetCurrentProcess(), GetCurrentProcessId(), file.SafeFileHandle.DangerousGetHandle(),
MiniDumpWithFullMemory, ref info, IntPtr.Zero, IntPtr.Zero );
file.Close();
string exeName = Path.GetFileName(assemblyPath);
MessageBox.Show( "An Unhanled exception has been detected in the application " + exeName +
" .\r\nException information is saved in " + dumpFileName, "Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct MINIDUMP_EXCEPTION_INFORMATION
{
public uint ThreadId;
public IntPtr ExceptionPointers;
public int ClientPointers;
}
/// <summary>
/// Call back function that will be called when an exception has occured. This function will create
/// a fullmemory dump of the application
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
string assemblyPath = Assembly.GetEntryAssembly().Location;
string dumpFileName = assemblyPath + "_" + DateTime.Now.ToString("dd.MM.yyyy.HH.mm.ss") + ".dmp";
FileStream file = new FileStream(dumpFileName, FileMode.Create);
MINIDUMP_EXCEPTION_INFORMATION info = new MINIDUMP_EXCEPTION_INFORMATION();
info.ClientPointers = 1;
info.ExceptionPointers = Marshal.GetExceptionPointers();
info.ThreadId = GetCurrentThreadId();
// A full memory dump is necessary in the case of a managed application, other wise no information
// regarding the managed code will be available
MiniDumpWriteDump( GetCurrentProcess(), GetCurrentProcessId(), file.SafeFileHandle.DangerousGetHandle(), MiniDumpWithFullMemory, ref info, IntPtr.Zero, IntPtr.Zero );
file.Close();
string exeName = Path.GetFileName(assemblyPath);
MessageBox.Show( "An Unhanled exception has been detected in the application " + exeName + " .\r\nException information is saved in " + dumpFileName,
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
private static readonly int MiniDumpWithFullMemory = 2;
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).