UtilDebugMiniDumpToFile(Process, String, 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,
string filepath,
MiniDumpType miniDumpType
)
Public Shared Sub MiniDumpToFile (
p As Process,
filepath As String,
miniDumpType As MiniDumpType
)
Dim p As Process
Dim filepath As String
Dim miniDumpType As MiniDumpType
UtilDebug.MiniDumpToFile(p, filepath,
miniDumpType)
public:
static void MiniDumpToFile(
Process^ p,
String^ filepath,
MiniDumpType miniDumpType
)
static member MiniDumpToFile :
p : Process *
filepath : string *
miniDumpType : MiniDumpType -> unit
No code example is currently available or this language may not be supported.
Parameters
- p Process
-
The target Process.
- filepath String
-
The filepath where to create the .dmp file.
- miniDumpType MiniDumpType
-
The type of MiniDump information to be generated.