UtilDebugMiniDumpToMemoryStream Method
Dumps debug information from a process to a
MemoryStream.
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 MemoryStream MiniDumpToMemoryStream(
Process p,
MiniDumpType miniDumpType
)
Public Shared Function MiniDumpToMemoryStream (
p As Process,
miniDumpType As MiniDumpType
) As MemoryStream
Dim p As Process
Dim miniDumpType As MiniDumpType
Dim returnValue As MemoryStream
returnValue = UtilDebug.MiniDumpToMemoryStream(p,
miniDumpType)
public:
static MemoryStream^ MiniDumpToMemoryStream(
Process^ p,
MiniDumpType miniDumpType
)
static member MiniDumpToMemoryStream :
p : Process *
miniDumpType : MiniDumpType -> MemoryStream
No code example is currently available or this language may not be supported.
- p Process
-
The target Process.
- miniDumpType MiniDumpType
-
The type of MiniDump information to be generated.
MemoryStream
A
MemoryStream containing the raw data of the dump file.