UtilDebugPrintProcessDebugInfo Method

Prints useful information in the debug output about the current running process, and optionally the IO counters and/or the loaded assemblies.

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.
[STAThreadAttribute]
public static void PrintProcessDebugInfo(
	bool includeIoCounters = false,
	bool includeLoadedAssemblies = false
)

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

See Also