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.
Namespace: DevCase.Core.Diagnostics.Debugging.CommonAssembly: 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
)
Public Shared Sub MiniDumpToFile (
p As Process,
fileToDump As FileInfo,
miniDumpType As MiniDumpType
)
Dim p As Process
Dim fileToDump As FileInfo
Dim miniDumpType As MiniDumpType
UtilDebug.MiniDumpToFile(p, fileToDump,
miniDumpType)
public:
static void MiniDumpToFile(
Process^ p,
FileInfo^ fileToDump,
MiniDumpType miniDumpType
)
static member MiniDumpToFile :
p : Process *
fileToDump : FileInfo *
miniDumpType : MiniDumpType -> unit
No code example is currently available or this language may not be supported.
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.