Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Threading.ThreadPool.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Threading.ThreadPool</name>
5   </assembly>
6   <members>
7     <member name="T:System.Threading.IThreadPoolWorkItem">
8       <summary>Represents a work item that can be executed by the <see cref="T:System.Threading.ThreadPool" />.</summary>
9     </member>
10     <member name="M:System.Threading.IThreadPoolWorkItem.Execute">
11       <summary>Executes the work item on the thread pool.</summary>
12     </member>
13     <member name="T:System.Threading.RegisteredWaitHandle">
14       <summary>Represents a handle that has been registered when calling <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" />. This class cannot be inherited.</summary>
15     </member>
16     <member name="M:System.Threading.RegisteredWaitHandle.Unregister(System.Threading.WaitHandle)">
17       <summary>Cancels a registered wait operation issued by the <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" /> method.</summary>
18       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to be signaled.</param>
19       <returns>
20         <see langword="true" /> if the function succeeds; otherwise, <see langword="false" />.</returns>
21     </member>
22     <member name="T:System.Threading.ThreadPool">
23       <summary>Provides 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.</summary>
24     </member>
25     <member name="M:System.Threading.ThreadPool.BindHandle(System.IntPtr)">
26       <summary>Binds an operating system handle to the <see cref="T:System.Threading.ThreadPool" />.</summary>
27       <param name="osHandle">An <see cref="T:System.IntPtr" /> that holds the handle. The handle must have been opened for overlapped I/O on the unmanaged side.</param>
28       <returns>
29         <see langword="true" /> if the handle is bound; otherwise, <see langword="false" />.</returns>
30       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
31     </member>
32     <member name="M:System.Threading.ThreadPool.BindHandle(System.Runtime.InteropServices.SafeHandle)">
33       <summary>Binds an operating system handle to the <see cref="T:System.Threading.ThreadPool" />.</summary>
34       <param name="osHandle">A <see cref="T:System.Runtime.InteropServices.SafeHandle" /> that holds the operating system handle. The handle must have been opened for overlapped I/O on the unmanaged side.</param>
35       <returns>
36         <see langword="true" /> if the handle is bound; otherwise, <see langword="false" />.</returns>
37       <exception cref="T:System.ArgumentNullException">
38         <paramref name="osHandle" /> is <see langword="null" />.</exception>
39     </member>
40     <member name="P:System.Threading.ThreadPool.CompletedWorkItemCount">
41       <summary>Gets the number of work items that have been processed so far.</summary>
42       <returns>The number of work items that have been processed so far.</returns>
43     </member>
44     <member name="M:System.Threading.ThreadPool.GetAvailableThreads(System.Int32@,System.Int32@)">
45       <summary>Retrieves the difference between the maximum number of thread pool threads returned by the <see cref="M:System.Threading.ThreadPool.GetMaxThreads(System.Int32@,System.Int32@)" /> method, and the number currently active.</summary>
46       <param name="workerThreads">The number of available worker threads.</param>
47       <param name="completionPortThreads">The number of available asynchronous I/O threads.</param>
48     </member>
49     <member name="M:System.Threading.ThreadPool.GetMaxThreads(System.Int32@,System.Int32@)">
50       <summary>Retrieves the number of requests to the thread pool that can be active concurrently. All requests above that number remain queued until thread pool threads become available.</summary>
51       <param name="workerThreads">The maximum number of worker threads in the thread pool.</param>
52       <param name="completionPortThreads">The maximum number of asynchronous I/O threads in the thread pool.</param>
53     </member>
54     <member name="M:System.Threading.ThreadPool.GetMinThreads(System.Int32@,System.Int32@)">
55       <summary>Retrieves the minimum number of threads the thread pool creates on demand, as new requests are made, before switching to an algorithm for managing thread creation and destruction.</summary>
56       <param name="workerThreads">When this method returns, contains the minimum number of worker threads that the thread pool creates on demand.</param>
57       <param name="completionPortThreads">When this method returns, contains the minimum number of asynchronous I/O threads that the thread pool creates on demand.</param>
58     </member>
59     <member name="P:System.Threading.ThreadPool.PendingWorkItemCount">
60       <summary>Gets the number of work items that are currently queued to be processed.</summary>
61       <returns>The number of work items that are currently queued to be processed.</returns>
62     </member>
63     <member name="M:System.Threading.ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback)">
64       <summary>Queues a method for execution. The method executes when a thread pool thread becomes available.</summary>
65       <param name="callBack">A <see cref="T:System.Threading.WaitCallback" /> that represents the method to be executed.</param>
66       <returns>
67         <see langword="true" /> if the method is successfully queued; <see cref="T:System.NotSupportedException" /> is thrown if the work item could not be queued.</returns>
68       <exception cref="T:System.ArgumentNullException">
69         <paramref name="callBack" /> is <see langword="null" />.</exception>
70       <exception cref="T:System.NotSupportedException">The common language runtime (CLR) is hosted, and the host does not support this action.</exception>
71     </member>
72     <member name="M:System.Threading.ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback,System.Object)">
73       <summary>Queues a method for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.</summary>
74       <param name="callBack">A <see cref="T:System.Threading.WaitCallback" /> representing the method to execute.</param>
75       <param name="state">An object containing data to be used by the method.</param>
76       <returns>
77         <see langword="true" /> if the method is successfully queued; <see cref="T:System.NotSupportedException" /> is thrown if the work item could not be queued.</returns>
78       <exception cref="T:System.NotSupportedException">The common language runtime (CLR) is hosted, and the host does not support this action.</exception>
79       <exception cref="T:System.ArgumentNullException">
80         <paramref name="callBack" /> is <see langword="null" />.</exception>
81     </member>
82     <member name="M:System.Threading.ThreadPool.QueueUserWorkItem``1(System.Action{``0},``0,System.Boolean)">
83       <summary>Queues a method specified by an <see cref="T:System.Action`1" /> delegate for execution, and provides data to be used by the method. The method executes when a thread pool thread becomes available.</summary>
84       <param name="callBack">An <see cref="T:System.Action`1" /> representing the method to execute.</param>
85       <param name="state">An object containing data to be used by the method.</param>
86       <param name="preferLocal">
87         <see langword="true" /> to prefer queueing the work item in a queue close to the current thread; <see langword="false" /> to prefer queueing the work item to the thread pool's shared queue.</param>
88       <typeparam name="TState">The type of elements of <paramref name="state" />.</typeparam>
89       <returns>
90         <see langword="true" /> if the method is successfully queued; <see cref="T:System.NotSupportedException" /> is thrown if the work item could not be queued.
91 .</returns>
92     </member>
93     <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int32,System.Boolean)">
94       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 32-bit signed integer for the time-out in milliseconds.</summary>
95       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
96       <param name="callBack">The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
97       <param name="state">The object that is passed to the delegate.</param>
98       <param name="millisecondsTimeOutInterval">The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses.</param>
99       <param name="executeOnlyOnce">
100         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
101       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> that encapsulates the native handle.</returns>
102       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1.</exception>
103     </member>
104     <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int64,System.Boolean)">
105       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 64-bit signed integer for the time-out in milliseconds.</summary>
106       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
107       <param name="callBack">The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
108       <param name="state">The object passed to the delegate.</param>
109       <param name="millisecondsTimeOutInterval">The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses.</param>
110       <param name="executeOnlyOnce">
111         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
112       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> that encapsulates the native handle.</returns>
113       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1.</exception>
114     </member>
115     <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean)">
116       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a <see cref="T:System.TimeSpan" /> value for the time-out.</summary>
117       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
118       <param name="callBack">The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
119       <param name="state">The object passed to the delegate.</param>
120       <param name="timeout">The time-out represented by a <see cref="T:System.TimeSpan" />. If <paramref name="timeout" /> is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="timeout" /> is -1, the function's time-out interval never elapses.</param>
121       <param name="executeOnlyOnce">
122         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
123       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> that encapsulates the native handle.</returns>
124       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="timeout" /> parameter is less than -1.</exception>
125       <exception cref="T:System.NotSupportedException">The <paramref name="timeout" /> parameter is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
126     </member>
127     <member name="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)">
128       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 32-bit unsigned integer for the time-out in milliseconds.</summary>
129       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
130       <param name="callBack">The <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
131       <param name="state">The object passed to the delegate.</param>
132       <param name="millisecondsTimeOutInterval">The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses.</param>
133       <param name="executeOnlyOnce">
134         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
135       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> that can be used to cancel the registered wait operation.</returns>
136       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1.</exception>
137     </member>
138     <member name="M:System.Threading.ThreadPool.SetMaxThreads(System.Int32,System.Int32)">
139       <summary>Sets the number of requests to the thread pool that can be active concurrently. All requests above that number remain queued until thread pool threads become available.</summary>
140       <param name="workerThreads">The maximum number of worker threads in the thread pool.</param>
141       <param name="completionPortThreads">The maximum number of asynchronous I/O threads in the thread pool.</param>
142       <returns>
143         <see langword="true" /> if the change is successful; otherwise, <see langword="false" />.</returns>
144     </member>
145     <member name="M:System.Threading.ThreadPool.SetMinThreads(System.Int32,System.Int32)">
146       <summary>Sets the minimum number of threads the thread pool creates on demand, as new requests are made, before switching to an algorithm for managing thread creation and destruction.</summary>
147       <param name="workerThreads">The minimum number of worker threads that the thread pool creates on demand.</param>
148       <param name="completionPortThreads">The minimum number of asynchronous I/O threads that the thread pool creates on demand.</param>
149       <returns>
150         <see langword="true" /> if the change is successful; otherwise, <see langword="false" />.</returns>
151     </member>
152     <member name="P:System.Threading.ThreadPool.ThreadCount">
153       <summary>Gets the number of thread pool threads that currently exist.</summary>
154       <returns>The number of thread pool threads that currently exist.</returns>
155     </member>
156     <member name="M:System.Threading.ThreadPool.UnsafeQueueNativeOverlapped(System.Threading.NativeOverlapped*)">
157       <summary>Queues an overlapped I/O operation for execution.</summary>
158       <param name="overlapped">The <see cref="T:System.Threading.NativeOverlapped" /> structure to queue.</param>
159       <returns>
160         <see langword="true" /> if the operation was successfully queued to an I/O completion port; otherwise, <see langword="false" />.</returns>
161     </member>
162     <member name="M:System.Threading.ThreadPool.UnsafeQueueUserWorkItem(System.Threading.IThreadPoolWorkItem,System.Boolean)">
163       <summary>Queues the specified work item object to the thread pool.</summary>
164       <param name="callBack">The work item to invoke when a thread in the thread pool picks up the work item.</param>
165       <param name="preferLocal">
166         <see langword="true" /> to prefer queueing the work item in a queue close to the current thread; <see langword="false" /> to prefer queueing the work item to the thread pool's shared queue.</param>
167       <returns>
168         <see langword="true" /> if the method succeeds; <see cref="T:System.OutOfMemoryException" /> is thrown if the work item could not be queued.</returns>
169       <exception cref="T:System.ArgumentNullException">
170         <paramref name="callback" /> is <see langword="null" />.</exception>
171       <exception cref="T:System.ArgumentOutOfRangeException">The work item is a <see cref="T:System.Threading.Tasks.Task" />.</exception>
172       <exception cref="T:System.OutOfMemoryException">The work item could not be queued.</exception>
173     </member>
174     <member name="M:System.Threading.ThreadPool.UnsafeQueueUserWorkItem(System.Threading.WaitCallback,System.Object)">
175       <summary>Queues the specified delegate to the thread pool, but does not propagate the calling stack to the worker thread.</summary>
176       <param name="callBack">A <see cref="T:System.Threading.WaitCallback" /> that represents the delegate to invoke when a thread in the thread pool picks up the work item.</param>
177       <param name="state">The object that is passed to the delegate when serviced from the thread pool.</param>
178       <returns>
179         <see langword="true" /> if the method succeeds; <see cref="T:System.OutOfMemoryException" /> is thrown if the work item could not be queued.</returns>
180       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
181       <exception cref="T:System.ApplicationException">An out-of-memory condition was encountered.</exception>
182       <exception cref="T:System.OutOfMemoryException">The work item could not be queued.</exception>
183       <exception cref="T:System.ArgumentNullException">
184         <paramref name="callBack" /> is <see langword="null" />.</exception>
185     </member>
186     <member name="M:System.Threading.ThreadPool.UnsafeQueueUserWorkItem``1(System.Action{``0},``0,System.Boolean)">
187       <summary>Queues a method specified by an <see cref="T:System.Action`1" /> delegate for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.</summary>
188       <param name="callBack">A delegate representing the method to execute.</param>
189       <param name="state">An object containing data to be used by the method.</param>
190       <param name="preferLocal">
191         <see langword="true" /> to prefer queueing the work item in a queue close to the current thread; <see langword="false" /> to prefer queueing the work item to the thread pool's shared queue.</param>
192       <typeparam name="TState">The type of elements of <paramref name="state" />.</typeparam>
193       <returns>
194         <see langword="true" /> if the method is successfully queued; <see cref="T:System.NotSupportedException" /> is thrown if the work item could not be queued.</returns>
195       <exception cref="T:System.ArgumentNullException">
196         <paramref name="callback" /> is <see langword="null" />.</exception>
197       <exception cref="T:System.NotSupportedException">The work item could not be queued.</exception>
198     </member>
199     <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int32,System.Boolean)">
200       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, using a 32-bit signed integer for the time-out in milliseconds. This method does not propagate the calling stack to the worker thread.</summary>
201       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
202       <param name="callBack">The delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
203       <param name="state">The object that is passed to the delegate.</param>
204       <param name="millisecondsTimeOutInterval">The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses.</param>
205       <param name="executeOnlyOnce">
206         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
207       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation.</returns>
208       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1.</exception>
209       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
210     </member>
211     <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.Int64,System.Boolean)">
212       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 64-bit signed integer for the time-out in milliseconds. This method does not propagate the calling stack to the worker thread.</summary>
213       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
214       <param name="callBack">The delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
215       <param name="state">The object that is passed to the delegate.</param>
216       <param name="millisecondsTimeOutInterval">The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses.</param>
217       <param name="executeOnlyOnce">
218         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
219       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation.</returns>
220       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="millisecondsTimeOutInterval" /> parameter is less than -1.</exception>
221       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
222     </member>
223     <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean)">
224       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a <see cref="T:System.TimeSpan" /> value for the time-out. This method does not propagate the calling stack to the worker thread.</summary>
225       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
226       <param name="callBack">The delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
227       <param name="state">The object that is passed to the delegate.</param>
228       <param name="timeout">The time-out represented by a <see cref="T:System.TimeSpan" />. If <paramref name="timeout" /> is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="timeout" /> is -1, the function's time-out interval never elapses.</param>
229       <param name="executeOnlyOnce">
230         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
231       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation.</returns>
232       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="timeout" /> parameter is less than -1.</exception>
233       <exception cref="T:System.NotSupportedException">The <paramref name="timeout" /> parameter is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
234       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
235     </member>
236     <member name="M:System.Threading.ThreadPool.UnsafeRegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)">
237       <summary>Registers a delegate to wait for a <see cref="T:System.Threading.WaitHandle" />, specifying a 32-bit unsigned integer for the time-out in milliseconds. This method does not propagate the calling stack to the worker thread.</summary>
238       <param name="waitObject">The <see cref="T:System.Threading.WaitHandle" /> to register. Use a <see cref="T:System.Threading.WaitHandle" /> other than <see cref="T:System.Threading.Mutex" />.</param>
239       <param name="callBack">The delegate to call when the <paramref name="waitObject" /> parameter is signaled.</param>
240       <param name="state">The object that is passed to the delegate.</param>
241       <param name="millisecondsTimeOutInterval">The time-out in milliseconds. If the <paramref name="millisecondsTimeOutInterval" /> parameter is 0 (zero), the function tests the object's state and returns immediately. If <paramref name="millisecondsTimeOutInterval" /> is -1, the function's time-out interval never elapses.</param>
242       <param name="executeOnlyOnce">
243         <see langword="true" /> to indicate that the thread will no longer wait on the <paramref name="waitObject" /> parameter after the delegate has been called; <see langword="false" /> to indicate that the timer is reset every time the wait operation completes until the wait is unregistered.</param>
244       <returns>The <see cref="T:System.Threading.RegisteredWaitHandle" /> object that can be used to cancel the registered wait operation.</returns>
245       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
246     </member>
247     <member name="T:System.Threading.WaitCallback">
248       <summary>Represents a callback method to be executed by a thread pool thread.</summary>
249       <param name="state">An object containing information to be used by the callback method.</param>
250     </member>
251     <member name="T:System.Threading.WaitOrTimerCallback">
252       <summary>Represents a method to be called when a <see cref="T:System.Threading.WaitHandle" /> is signaled or times out.</summary>
253       <param name="state">An object containing information to be used by the callback method each time it executes.</param>
254       <param name="timedOut">
255         <see langword="true" /> if the <see cref="T:System.Threading.WaitHandle" /> timed out; <see langword="false" /> if it was signaled.</param>
256     </member>
257   </members>
258 </doc>