UtilDebugPrintProcessDebugInfo Method
Prints useful information in the debug output about the current running process,
and optionally the IO counters and/or the loaded assemblies.
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.
[STAThreadAttribute]
public static void PrintProcessDebugInfo(
bool includeIoCounters = false,
bool includeLoadedAssemblies = false
)
<STAThreadAttribute>
Public Shared Sub PrintProcessDebugInfo (
Optional includeIoCounters As Boolean = false,
Optional includeLoadedAssemblies As Boolean = false
)
Dim includeIoCounters As Boolean
Dim includeLoadedAssemblies As Boolean
UtilDebug.PrintProcessDebugInfo(includeIoCounters,
includeLoadedAssemblies)
public:
[STAThreadAttribute]
static void PrintProcessDebugInfo(
bool includeIoCounters = false,
bool includeLoadedAssemblies = false
)
[<STAThreadAttribute>]
static member PrintProcessDebugInfo :
?includeIoCounters : bool *
?includeLoadedAssemblies : bool
(* Defaults:
let _includeIoCounters = defaultArg includeIoCounters false
let _includeLoadedAssemblies = defaultArg includeLoadedAssemblies false
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- includeIoCounters Boolean (Optional)
-
If True, includes debug information about the IO counters of the current running process.
Note that obtaining the IO counters is time consuming.
Default value: False
- includeLoadedAssemblies Boolean (Optional)
-
If True, includes debug information about the loaded assemblies by the current running process.
Note that obtaining the loaded assemblies is time consuming.
Default value: False