UtilDebugPrintThreadDebugInfo Method
Prints useful information in the debug output about the current process thread pool for managed threads,
and optionally about the current .NET thread object and/or the current operating system thread object.
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 PrintThreadDebugInfo(
bool includeThreadPoolInfo = true,
bool includeNativeThreadInfo = false
)
<STAThreadAttribute>
Public Shared Sub PrintThreadDebugInfo (
Optional includeThreadPoolInfo As Boolean = true,
Optional includeNativeThreadInfo As Boolean = false
)
Dim includeThreadPoolInfo As Boolean
Dim includeNativeThreadInfo As Boolean
UtilDebug.PrintThreadDebugInfo(includeThreadPoolInfo,
includeNativeThreadInfo)
public:
[STAThreadAttribute]
static void PrintThreadDebugInfo(
bool includeThreadPoolInfo = true,
bool includeNativeThreadInfo = false
)
[<STAThreadAttribute>]
static member PrintThreadDebugInfo :
?includeThreadPoolInfo : bool *
?includeNativeThreadInfo : bool
(* Defaults:
let _includeThreadPoolInfo = defaultArg includeThreadPoolInfo true
let _includeNativeThreadInfo = defaultArg includeNativeThreadInfo false
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- includeThreadPoolInfo Boolean (Optional)
-
If True, includes debug information about the current .NET thread object executing this code.
Default value: True
- includeNativeThreadInfo Boolean (Optional)
-
If True, includes debug information about the current operating system thread object executing this code.
Default value: False