Expand Minimize
7 out of 8 rated this helpful - Rate this topic

System.Threading Namespace

The System.Threading namespace provides classes and interfaces that enable multithreaded programming. In addition to classes for synchronizing thread activities and access to data (Mutex, Monitor, Interlocked, AutoResetEvent, and so on), this namespace includes a ThreadPool class that allows you to use a pool of system-supplied threads, and a Timer class that executes callback methods on thread pool threads.

  ClassDescription
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsAbandonedMutexExceptionThe exception that is thrown when one thread acquires a Mutex object that another thread has abandoned by exiting without releasing it.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsAutoResetEventNotifies a waiting thread that an event has occurred. This class cannot be inherited.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsBarrierEnables multiple tasks to cooperatively work on an algorithm in parallel through multiple phases.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsBarrierPostPhaseExceptionThe exception that is thrown when the post-phase action of a Barrier fails
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsCancellationTokenSourceSignals to a CancellationToken that it should be canceled.
Public classCompressedStackProvides methods for setting and capturing the compressed stack on the current thread. This class cannot be inherited.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsCountdownEventRepresents a synchronization primitive that is signaled when its count reaches zero.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsEventWaitHandleRepresents a thread synchronization event.
Public classExecutionContextManages the execution context for the current thread. This class cannot be inherited.
Public classHostExecutionContextEncapsulates and propagates the host execution context across threads.
Public classHostExecutionContextManagerProvides the functionality that allows a common language runtime host to participate in the flow, or migration, of the execution context.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsInterlockedProvides atomic operations for variables that are shared by multiple threads.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsLazyInitializerProvides lazy initialization routines.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsLockRecursionExceptionThe exception that is thrown when recursive entry into a lock is not compatible with the recursion policy for the lock.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsManualResetEventNotifies one or more waiting threads that an event has occurred. This class cannot be inherited.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsManualResetEventSlimProvides a slimmed down version of ManualResetEvent.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsMonitorProvides a mechanism that synchronizes access to objects.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsMutexA synchronization primitive that can also be used for interprocess synchronization.
Public classOverlappedProvides a managed representation of a Win32 OVERLAPPED structure, including methods to transfer information from an Overlapped instance to a NativeOverlapped structure.
Public classReaderWriterLockDefines a lock that supports single writers and multiple readers.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsReaderWriterLockSlimRepresents a lock that is used to manage access to a resource, allowing multiple threads for reading or exclusive access for writing.
Public classRegisteredWaitHandleRepresents a handle that has been registered when calling RegisterWaitForSingleObject. This class cannot be inherited.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsSemaphoreLimits the number of threads that can access a resource or pool of resources concurrently.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsSemaphoreFullExceptionThe exception that is thrown when the Semaphore.Release method is called on a semaphore whose count is already at the maximum.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsSemaphoreSlimA lightweight alternative to Semaphore that limits the number of threads that can access a resource or pool of resources concurrently.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsSynchronizationContextProvides the basic functionality for propagating a synchronization context in various synchronization models.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsSynchronizationLockExceptionThe exception that is thrown when a method requires the caller to own the lock on a given Monitor, and the method is invoked by a caller that does not own that lock.
Public classSupported by Portable Class LibraryThreadCreates and controls a thread, sets its priority, and gets its status.
Public classThreadAbortExceptionThe exception that is thrown when a call is made to the Abort method. This class cannot be inherited.
Public classThreadExceptionEventArgsProvides data for the ThreadException event.
Public classThreadInterruptedExceptionThe exception that is thrown when a Thread is interrupted while it is in a waiting state.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsThreadLocal<T>Provides thread-local storage of data.
Public classSupported by Portable Class LibraryThreadPoolProvides a pool of threads that can be used to execute tasks, post work items, process asynchronous I/O, wait on behalf of other threads, and process timers.
Public classThreadStartExceptionThe exception that is thrown when a failure occurs in a managed thread after the underlying operating system thread has been started, but before the thread is ready to execute user code.
Public classThreadStateExceptionThe exception that is thrown when a Thread is in an invalid ThreadState for the method call.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsTimeoutContains constants that specify infinite time-out intervals. This class cannot be inherited.
Public classSupported by Portable Class LibraryTimerProvides a mechanism for executing a method at specified intervals. This class cannot be inherited.
Public classSupported in .NET for Windows Store appsVolatileContains methods for performing volatile memory operations.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsWaitHandleEncapsulates operating system–specific objects that wait for exclusive access to shared resources.
Public classSupported by Portable Class LibrarySupported in .NET for Windows Store appsWaitHandleCannotBeOpenedExceptionThe exception that is thrown when an attempt is made to open a system mutex or semaphore that does not exist.
  StructureDescription
Public structureAsyncFlowControlProvides the functionality to restore the migration, or flow, of the execution context between threads.
Public structureSupported by Portable Class LibrarySupported in .NET for Windows Store appsCancellationTokenPropagates notification that operations should be canceled.
Public structureSupported by Portable Class LibrarySupported in .NET for Windows Store appsCancellationTokenRegistrationRepresents a callback delegate that has been registered with a CancellationToken.
Public structureLockCookieDefines the lock that implements single-writer/multiple-reader semantics. This is a value type.
Public structureNativeOverlappedProvides an explicit layout that is visible from unmanaged code and that will have the same layout as the Win32 OVERLAPPED structure with additional reserved fields at the end.
Public structureSupported by Portable Class LibrarySupported in .NET for Windows Store appsSpinLockProvides a mutual exclusion lock primitive where a thread trying to acquire the lock waits in a loop repeatedly checking until the lock becomes available.
Public structureSupported by Portable Class LibrarySupported in .NET for Windows Store appsSpinWaitProvides support for spin-based waiting.
  DelegateDescription
Public delegateContextCallbackRepresents a method to be called within a new context.
Public delegateIOCompletionCallbackReceives the error code, number of bytes, and overlapped value type when an I/O operation completes on the thread pool.
Public delegateParameterizedThreadStartRepresents the method that executes on a Thread.
Public delegateSupported by Portable Class LibrarySupported in .NET for Windows Store appsSendOrPostCallbackRepresents a method to be called when a message is to be dispatched to a synchronization context.
Public delegateThreadExceptionEventHandlerRepresents the method that will handle the ThreadException event of an Application.
Public delegateThreadStartRepresents the method that executes on a Thread.
Public delegateSupported by Portable Class LibraryTimerCallbackRepresents the method that handles calls from a Timer.
Public delegateSupported by Portable Class LibraryWaitCallbackRepresents a callback method to be executed by a thread pool thread.
Public delegateWaitOrTimerCallbackRepresents a method to be called when a WaitHandle is signaled or times out.
  EnumerationDescription
Public enumerationApartmentStateSpecifies the apartment state of a Thread.
Public enumerationSupported by Portable Class LibrarySupported in .NET for Windows Store appsEventResetModeIndicates whether an EventWaitHandle is reset automatically or manually after receiving a signal.
Public enumerationSupported by Portable Class LibrarySupported in .NET for Windows Store appsLazyThreadSafetyModeSpecifies how a System.Lazy<T> instance synchronizes access among multiple threads.
Public enumerationSupported by Portable Class LibrarySupported in .NET for Windows Store appsLockRecursionPolicySpecifies whether a lock can be entered multiple times by the same thread.
Public enumerationThreadPrioritySpecifies the scheduling priority of a Thread.
Public enumerationThreadStateSpecifies the execution states of a Thread.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.