Skip to main content
.NET Framework Class Library
ThreadPool..::.GetAvailableThreads Method

Retrieves the difference between the maximum number of thread pool threads returned by the GetMaxThreads method, and the number currently active.

Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Syntax
Public Shared Sub GetAvailableThreads ( _
	<OutAttribute> ByRef workerThreads As Integer, _
	<OutAttribute> ByRef completionPortThreads As Integer _
)
public static void GetAvailableThreads(
	out int workerThreads,
	out int completionPortThreads
)
public:
static void GetAvailableThreads(
	[OutAttribute] int% workerThreads, 
	[OutAttribute] int% completionPortThreads
)
static member GetAvailableThreads : 
        workerThreads:int byref * 
        completionPortThreads:int byref -> unit 

Parameters

workerThreads
Type: System..::.Int32%
The number of available worker threads.
completionPortThreads
Type: System..::.Int32%
The number of available asynchronous I/O threads.
Remarks

When GetAvailableThreads returns, the variable specified by workerThreads contains the number of additional worker threads that can be started, and the variable specified by completionPortThreads contains the number of additional asynchronous I/O threads that can be started.

If there are no available threads, additional thread pool requests remain queued until thread pool threads become available.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.