UtilDebugMiniDumpToFile(Process, FileInfo, MiniDumpType) Method

Dumps debug information from a process to a local file.

With this, you can dump the entire allocated memory by a external process.

Definition

Namespace: DevCase.Core.Diagnostics.Debugging.Common
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void MiniDumpToFile(
	Process p,
	FileInfo fileToDump,
	MiniDumpType miniDumpType
)

Parameters

p  Process
The target Process.
fileToDump  FileInfo
The FileInfo where to create the .dmp file.
miniDumpType  MiniDumpType
The type of MiniDump information to be generated.

See Also