87584346568166f23c77b118ab762b3d5d9c90df
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Threading.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Threading</name>
5   </assembly>
6   <members>
7     <member name="T:System.Threading.AbandonedMutexException">
8       <summary>The exception that is thrown when one thread acquires a <see cref="T:System.Threading.Mutex" /> object that another thread has abandoned by exiting without releasing it.</summary>
9     </member>
10     <member name="M:System.Threading.AbandonedMutexException.#ctor">
11       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with default values.</summary>
12     </member>
13     <member name="M:System.Threading.AbandonedMutexException.#ctor(System.Int32,System.Threading.WaitHandle)">
14       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified index for the abandoned mutex, if applicable, and a <see cref="T:System.Threading.Mutex" /> object that represents the mutex.</summary>
15       <param name="location">The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or -1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods.</param>
16       <param name="handle">A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex.</param>
17     </member>
18     <member name="M:System.Threading.AbandonedMutexException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
19       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with serialized data.</summary>
20       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
21       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination.</param>
22     </member>
23     <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String)">
24       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message.</summary>
25       <param name="message">An error message that explains the reason for the exception.</param>
26     </member>
27     <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String,System.Exception)">
28       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message and inner exception.</summary>
29       <param name="message">An error message that explains the reason for the exception.</param>
30       <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
31     </member>
32     <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String,System.Exception,System.Int32,System.Threading.WaitHandle)">
33       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message, the inner exception, the index for the abandoned mutex, if applicable, and a <see cref="T:System.Threading.Mutex" /> object that represents the mutex.</summary>
34       <param name="message">An error message that explains the reason for the exception.</param>
35       <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
36       <param name="location">The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or -1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods.</param>
37       <param name="handle">A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex.</param>
38     </member>
39     <member name="M:System.Threading.AbandonedMutexException.#ctor(System.String,System.Int32,System.Threading.WaitHandle)">
40       <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified error message, the index of the abandoned mutex, if applicable, and the abandoned mutex.</summary>
41       <param name="message">An error message that explains the reason for the exception.</param>
42       <param name="location">The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or -1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods.</param>
43       <param name="handle">A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex.</param>
44     </member>
45     <member name="P:System.Threading.AbandonedMutexException.Mutex">
46       <summary>Gets the abandoned mutex that caused the exception, if known.</summary>
47       <returns>A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex, or <see langword="null" /> if the abandoned mutex could not be identified.</returns>
48     </member>
49     <member name="P:System.Threading.AbandonedMutexException.MutexIndex">
50       <summary>Gets the index of the abandoned mutex that caused the exception, if known.</summary>
51       <returns>The index, in the array of wait handles passed to the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, of the <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex, or -1 if the index of the abandoned mutex could not be determined.</returns>
52     </member>
53     <member name="T:System.Threading.AsyncFlowControl">
54       <summary>Provides the functionality to restore the migration, or flow, of the execution context between threads.</summary>
55     </member>
56     <member name="M:System.Threading.AsyncFlowControl.Dispose">
57       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.AsyncFlowControl" /> class.</summary>
58       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Threading.AsyncFlowControl" /> structure is not used on the thread where it was created.  
59   
60  -or-  
61   
62  The <see cref="T:System.Threading.AsyncFlowControl" /> structure has already been used to call <see cref="M:System.Threading.AsyncFlowControl.Dispose" /> or <see cref="M:System.Threading.AsyncFlowControl.Undo" />.</exception>
63     </member>
64     <member name="M:System.Threading.AsyncFlowControl.Equals(System.Object)">
65       <summary>Determines whether the specified object is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure.</summary>
66       <param name="obj">An object to compare with the current structure.</param>
67       <returns>
68         <see langword="true" /> if <paramref name="obj" /> is an <see cref="T:System.Threading.AsyncFlowControl" /> structure and is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure; otherwise, <see langword="false" />.</returns>
69     </member>
70     <member name="M:System.Threading.AsyncFlowControl.Equals(System.Threading.AsyncFlowControl)">
71       <summary>Determines whether the specified <see cref="T:System.Threading.AsyncFlowControl" /> structure is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure.</summary>
72       <param name="obj">An <see cref="T:System.Threading.AsyncFlowControl" /> structure to compare with the current structure.</param>
73       <returns>
74         <see langword="true" /> if <paramref name="obj" /> is equal to the current <see cref="T:System.Threading.AsyncFlowControl" /> structure; otherwise, <see langword="false" />.</returns>
75     </member>
76     <member name="M:System.Threading.AsyncFlowControl.GetHashCode">
77       <summary>Gets a hash code for the current <see cref="T:System.Threading.AsyncFlowControl" /> structure.</summary>
78       <returns>A hash code for the current <see cref="T:System.Threading.AsyncFlowControl" /> structure.</returns>
79     </member>
80     <member name="M:System.Threading.AsyncFlowControl.op_Equality(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl)">
81       <summary>Compares two <see cref="T:System.Threading.AsyncFlowControl" /> structures to determine whether they are equal.</summary>
82       <param name="a">An <see cref="T:System.Threading.AsyncFlowControl" /> structure.</param>
83       <param name="b">An <see cref="T:System.Threading.AsyncFlowControl" /> structure.</param>
84       <returns>
85         <see langword="true" /> if the two structures are equal; otherwise, <see langword="false" />.</returns>
86     </member>
87     <member name="M:System.Threading.AsyncFlowControl.op_Inequality(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl)">
88       <summary>Compares two <see cref="T:System.Threading.AsyncFlowControl" /> structures to determine whether they are not equal.</summary>
89       <param name="a">An <see cref="T:System.Threading.AsyncFlowControl" /> structure.</param>
90       <param name="b">An <see cref="T:System.Threading.AsyncFlowControl" /> structure.</param>
91       <returns>
92         <see langword="true" /> if the structures are not equal; otherwise, <see langword="false" />.</returns>
93     </member>
94     <member name="M:System.Threading.AsyncFlowControl.Undo">
95       <summary>Restores the flow of the execution context between threads.</summary>
96       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Threading.AsyncFlowControl" /> structure is not used on the thread where it was created.  
97   
98  -or-  
99   
100  The <see cref="T:System.Threading.AsyncFlowControl" /> structure has already been used to call <see cref="M:System.Threading.AsyncFlowControl.Dispose" /> or <see cref="M:System.Threading.AsyncFlowControl.Undo" />.</exception>
101     </member>
102     <member name="T:System.Threading.AsyncLocal`1">
103       <summary>Represents ambient data that is local to a given asynchronous control flow, such as an asynchronous method.</summary>
104       <typeparam name="T">The type of the ambient data.</typeparam>
105     </member>
106     <member name="M:System.Threading.AsyncLocal`1.#ctor">
107       <summary>Instantiates an <see cref="T:System.Threading.AsyncLocal`1" /> instance that does not receive change notifications.</summary>
108     </member>
109     <member name="M:System.Threading.AsyncLocal`1.#ctor(System.Action{System.Threading.AsyncLocalValueChangedArgs{`0}})">
110       <summary>Instantiates an <see cref="T:System.Threading.AsyncLocal`1" /> local instance that receives change notifications.</summary>
111       <param name="valueChangedHandler">The delegate that is called whenever the current value changes on any thread.</param>
112     </member>
113     <member name="P:System.Threading.AsyncLocal`1.Value">
114       <summary>Gets or sets the value of the ambient data.</summary>
115       <returns>The value of the ambient data. If no value has been set, the returned value is <c>default(T)</c>.</returns>
116     </member>
117     <member name="T:System.Threading.AsyncLocalValueChangedArgs`1">
118       <summary>The class that provides data change information to <see cref="T:System.Threading.AsyncLocal`1" /> instances that register for change notifications.</summary>
119       <typeparam name="T">The type of the data.</typeparam>
120     </member>
121     <member name="P:System.Threading.AsyncLocalValueChangedArgs`1.CurrentValue">
122       <summary>Gets the data's current value.</summary>
123       <returns>The data's current value.</returns>
124     </member>
125     <member name="P:System.Threading.AsyncLocalValueChangedArgs`1.PreviousValue">
126       <summary>Gets the data's previous value.</summary>
127       <returns>The data's previous value.</returns>
128     </member>
129     <member name="P:System.Threading.AsyncLocalValueChangedArgs`1.ThreadContextChanged">
130       <summary>Returns a value that indicates whether the value changes because of a change of execution context.</summary>
131       <returns>
132         <see langword="true" /> if the value changed because of a change of execution context; otherwise, <see langword="false" />.</returns>
133     </member>
134     <member name="T:System.Threading.AutoResetEvent">
135       <summary>Represents a thread synchronization event that, when signaled, resets automatically after releasing a single waiting thread. This class cannot be inherited.</summary>
136     </member>
137     <member name="M:System.Threading.AutoResetEvent.#ctor(System.Boolean)">
138       <summary>Initializes a new instance of the <see cref="T:System.Threading.AutoResetEvent" /> class with a Boolean value indicating whether to set the initial state to signaled.</summary>
139       <param name="initialState">
140         <see langword="true" /> to set the initial state to signaled; <see langword="false" /> to set the initial state to non-signaled.</param>
141     </member>
142     <member name="T:System.Threading.Barrier">
143       <summary>Enables multiple tasks to cooperatively work on an algorithm in parallel through multiple phases.</summary>
144     </member>
145     <member name="M:System.Threading.Barrier.#ctor(System.Int32)">
146       <summary>Initializes a new instance of the <see cref="T:System.Threading.Barrier" /> class.</summary>
147       <param name="participantCount">The number of participating threads.</param>
148       <exception cref="T:System.ArgumentOutOfRangeException">
149         <paramref name="participantCount" /> is less than 0 or greater than 32,767.</exception>
150     </member>
151     <member name="M:System.Threading.Barrier.#ctor(System.Int32,System.Action{System.Threading.Barrier})">
152       <summary>Initializes a new instance of the <see cref="T:System.Threading.Barrier" /> class.</summary>
153       <param name="participantCount">The number of participating threads.</param>
154       <param name="postPhaseAction">The <see cref="T:System.Action`1" /> to be executed after each phase. null (Nothing in Visual Basic) may be passed to indicate no action is taken.</param>
155       <exception cref="T:System.ArgumentOutOfRangeException">
156         <paramref name="participantCount" /> is less than 0 or greater than 32,767.</exception>
157     </member>
158     <member name="M:System.Threading.Barrier.AddParticipant">
159       <summary>Notifies the <see cref="T:System.Threading.Barrier" /> that there will be an additional participant.</summary>
160       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
161       <exception cref="T:System.InvalidOperationException">Adding a participant would cause the barrier's participant count to exceed 32,767.  
162   
163  -or-  
164   
165  The method was invoked from within a post-phase action.</exception>
166       <returns>The phase number of the barrier in which the new participants will first participate.</returns>
167     </member>
168     <member name="M:System.Threading.Barrier.AddParticipants(System.Int32)">
169       <summary>Notifies the <see cref="T:System.Threading.Barrier" /> that there will be additional participants.</summary>
170       <param name="participantCount">The number of additional participants to add to the barrier.</param>
171       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
172       <exception cref="T:System.ArgumentOutOfRangeException">
173         <paramref name="participantCount" /> is less than 0.  
174   
175  -or-  
176   
177  Adding <paramref name="participantCount" /> participants would cause the barrier's participant count to exceed 32,767.</exception>
178       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action.</exception>
179       <returns>The phase number of the barrier in which the new participants will first participate.</returns>
180     </member>
181     <member name="M:System.Threading.Barrier.Dispose">
182       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.Barrier" /> class.</summary>
183       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action.</exception>
184     </member>
185     <member name="M:System.Threading.Barrier.Dispose(System.Boolean)">
186       <summary>Releases the unmanaged resources used by the <see cref="T:System.Threading.Barrier" />, and optionally releases the managed resources.</summary>
187       <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
188     </member>
189     <member name="M:System.Threading.Barrier.RemoveParticipant">
190       <summary>Notifies the <see cref="T:System.Threading.Barrier" /> that there will be one less participant.</summary>
191       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
192       <exception cref="T:System.InvalidOperationException">The barrier already has 0 participants.  
193   
194  -or-  
195   
196  The method was invoked from within a post-phase action.</exception>
197     </member>
198     <member name="M:System.Threading.Barrier.RemoveParticipants(System.Int32)">
199       <summary>Notifies the <see cref="T:System.Threading.Barrier" /> that there will be fewer participants.</summary>
200       <param name="participantCount">The number of additional participants to remove from the barrier.</param>
201       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
202       <exception cref="T:System.ArgumentOutOfRangeException">The total participant count is less than the specified <paramref name="participantCount" /></exception>
203       <exception cref="T:System.InvalidOperationException">The barrier already has 0 participants.  
204   
205  -or-  
206   
207  The method was invoked from within a post-phase action.  
208   
209  -or-  
210   
211  The current participant count is less than the specified participantCount.</exception>
212     </member>
213     <member name="M:System.Threading.Barrier.SignalAndWait">
214       <summary>Signals that a participant has reached the barrier and waits for all other participants to reach the barrier as well.</summary>
215       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
216       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.</exception>
217       <exception cref="T:System.Threading.BarrierPostPhaseException">If an exception is thrown from the post phase action of a Barrier after all participating threads have called SignalAndWait, the exception will be wrapped in a BarrierPostPhaseException and be thrown on all participating threads.</exception>
218     </member>
219     <member name="M:System.Threading.Barrier.SignalAndWait(System.Int32)">
220       <summary>Signals that a participant has reached the barrier and waits for all other participants to reach the barrier as well, using a 32-bit signed integer to measure the timeout.</summary>
221       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely.</param>
222       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
223       <exception cref="T:System.ArgumentOutOfRangeException">
224         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
225       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.</exception>
226       <exception cref="T:System.Threading.BarrierPostPhaseException">If an exception is thrown from the post phase action of a Barrier after all participating threads have called SignalAndWait, the exception will be wrapped in a BarrierPostPhaseException and be thrown on all participating threads.</exception>
227       <returns>
228         <see langword="true" /> if all participants reached the barrier within the specified time; otherwise <see langword="false" />.</returns>
229     </member>
230     <member name="M:System.Threading.Barrier.SignalAndWait(System.Int32,System.Threading.CancellationToken)">
231       <summary>Signals that a participant has reached the barrier and waits for all other participants to reach the barrier as well, using a 32-bit signed integer to measure the timeout, while observing a cancellation token.</summary>
232       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely.</param>
233       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
234       <exception cref="T:System.OperationCanceledException">
235         <paramref name="cancellationToken" /> has been canceled.</exception>
236       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
237       <exception cref="T:System.ArgumentOutOfRangeException">
238         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
239       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.</exception>
240       <returns>
241         <see langword="true" /> if all participants reached the barrier within the specified time; otherwise, <see langword="false" />.</returns>
242     </member>
243     <member name="M:System.Threading.Barrier.SignalAndWait(System.Threading.CancellationToken)">
244       <summary>Signals that a participant has reached the barrier and waits for all other participants to reach the barrier, while observing a cancellation token.</summary>
245       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
246       <exception cref="T:System.OperationCanceledException">
247         <paramref name="cancellationToken" /> has been canceled.</exception>
248       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
249       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.</exception>
250     </member>
251     <member name="M:System.Threading.Barrier.SignalAndWait(System.TimeSpan)">
252       <summary>Signals that a participant has reached the barrier and waits for all other participants to reach the barrier as well, using a <see cref="T:System.TimeSpan" /> object to measure the time interval.</summary>
253       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
254       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
255       <exception cref="T:System.ArgumentOutOfRangeException">
256         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out, or it is greater than 32,767.</exception>
257       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.</exception>
258       <returns>
259         <see langword="true" /> if all other participants reached the barrier; otherwise, <see langword="false" />.</returns>
260     </member>
261     <member name="M:System.Threading.Barrier.SignalAndWait(System.TimeSpan,System.Threading.CancellationToken)">
262       <summary>Signals that a participant has reached the barrier and waits for all other participants to reach the barrier as well, using a <see cref="T:System.TimeSpan" /> object to measure the time interval, while observing a cancellation token.</summary>
263       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
264       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
265       <exception cref="T:System.OperationCanceledException">
266         <paramref name="cancellationToken" /> has been canceled.</exception>
267       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
268       <exception cref="T:System.ArgumentOutOfRangeException">
269         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out.</exception>
270       <exception cref="T:System.InvalidOperationException">The method was invoked from within a post-phase action, the barrier currently has 0 participants, or the barrier is signaled by more threads than are registered as participants.</exception>
271       <returns>
272         <see langword="true" /> if all other participants reached the barrier; otherwise, <see langword="false" />.</returns>
273     </member>
274     <member name="P:System.Threading.Barrier.CurrentPhaseNumber">
275       <summary>Gets the number of the barrier's current phase.</summary>
276       <returns>Returns the number of the barrier's current phase.</returns>
277     </member>
278     <member name="P:System.Threading.Barrier.ParticipantCount">
279       <summary>Gets the total number of participants in the barrier.</summary>
280       <returns>Returns the total number of participants in the barrier.</returns>
281     </member>
282     <member name="P:System.Threading.Barrier.ParticipantsRemaining">
283       <summary>Gets the number of participants in the barrier that haven't yet signaled in the current phase.</summary>
284       <returns>Returns the number of participants in the barrier that haven't yet signaled in the current phase.</returns>
285     </member>
286     <member name="T:System.Threading.BarrierPostPhaseException">
287       <summary>The exception that is thrown when the post-phase action of a <see cref="T:System.Threading.Barrier" /> fails.</summary>
288     </member>
289     <member name="M:System.Threading.BarrierPostPhaseException.#ctor">
290       <summary>Initializes a new instance of the <see cref="T:System.Threading.BarrierPostPhaseException" /> class with a system-supplied message that describes the error.</summary>
291     </member>
292     <member name="M:System.Threading.BarrierPostPhaseException.#ctor(System.Exception)">
293       <summary>Initializes a new instance of the <see cref="T:System.Threading.BarrierPostPhaseException" /> class with the specified inner exception.</summary>
294       <param name="innerException">The exception that is the cause of the current exception.</param>
295     </member>
296     <member name="M:System.Threading.BarrierPostPhaseException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
297       <summary>Initializes a new instance of the <see cref="T:System.Threading.BarrierPostPhaseException" /> class with serialized data.</summary>
298       <param name="info">The object that holds the serialized object data.</param>
299       <param name="context">The contextual information about the source or destination.</param>
300     </member>
301     <member name="M:System.Threading.BarrierPostPhaseException.#ctor(System.String)">
302       <summary>Initializes a new instance of the <see cref="T:System.Threading.BarrierPostPhaseException" /> class with a specified message that describes the error.</summary>
303       <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
304     </member>
305     <member name="M:System.Threading.BarrierPostPhaseException.#ctor(System.String,System.Exception)">
306       <summary>Initializes a new instance of the <see cref="T:System.Threading.BarrierPostPhaseException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
307       <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
308       <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
309     </member>
310     <member name="T:System.Threading.ContextCallback">
311       <summary>Represents a method to be called within a new context.</summary>
312       <param name="state">An object containing information to be used by the callback method each time it executes.</param>
313     </member>
314     <member name="T:System.Threading.CountdownEvent">
315       <summary>Represents a synchronization primitive that is signaled when its count reaches zero.</summary>
316     </member>
317     <member name="M:System.Threading.CountdownEvent.#ctor(System.Int32)">
318       <summary>Initializes a new instance of <see cref="T:System.Threading.CountdownEvent" /> class with the specified count.</summary>
319       <param name="initialCount">The number of signals initially required to set the <see cref="T:System.Threading.CountdownEvent" />.</param>
320       <exception cref="T:System.ArgumentOutOfRangeException">
321         <paramref name="initialCount" /> is less than 0.</exception>
322     </member>
323     <member name="M:System.Threading.CountdownEvent.AddCount">
324       <summary>Increments the <see cref="T:System.Threading.CountdownEvent" />'s current count by one.</summary>
325       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
326       <exception cref="T:System.InvalidOperationException">The current instance is already set.  
327   
328  -or-  
329   
330  <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> is equal to or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
331     </member>
332     <member name="M:System.Threading.CountdownEvent.AddCount(System.Int32)">
333       <summary>Increments the <see cref="T:System.Threading.CountdownEvent" />'s current count by a specified value.</summary>
334       <param name="signalCount">The value by which to increase <see cref="P:System.Threading.CountdownEvent.CurrentCount" />.</param>
335       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
336       <exception cref="T:System.ArgumentOutOfRangeException">
337         <paramref name="signalCount" /> is less than or equal to 0.</exception>
338       <exception cref="T:System.InvalidOperationException">The current instance is already set.  
339   
340  -or-  
341   
342  <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> is equal to or greater than <see cref="F:System.Int32.MaxValue" /> after count is incremented by <paramref name="signalCount" />.</exception>
343     </member>
344     <member name="M:System.Threading.CountdownEvent.Dispose">
345       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.CountdownEvent" /> class.</summary>
346     </member>
347     <member name="M:System.Threading.CountdownEvent.Dispose(System.Boolean)">
348       <summary>Releases the unmanaged resources used by the <see cref="T:System.Threading.CountdownEvent" />, and optionally releases the managed resources.</summary>
349       <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
350     </member>
351     <member name="M:System.Threading.CountdownEvent.Reset">
352       <summary>Resets the <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> to the value of <see cref="P:System.Threading.CountdownEvent.InitialCount" />.</summary>
353       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
354     </member>
355     <member name="M:System.Threading.CountdownEvent.Reset(System.Int32)">
356       <summary>Resets the <see cref="P:System.Threading.CountdownEvent.InitialCount" /> property to a specified value.</summary>
357       <param name="count">The number of signals required to set the <see cref="T:System.Threading.CountdownEvent" />.</param>
358       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
359       <exception cref="T:System.ArgumentOutOfRangeException">
360         <paramref name="count" /> is less than 0.</exception>
361     </member>
362     <member name="M:System.Threading.CountdownEvent.Signal">
363       <summary>Registers a signal with the <see cref="T:System.Threading.CountdownEvent" />, decrementing the value of <see cref="P:System.Threading.CountdownEvent.CurrentCount" />.</summary>
364       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
365       <exception cref="T:System.InvalidOperationException">The current instance is already set.</exception>
366       <returns>
367         <see langword="true" /> if the signal caused the count to reach zero and the event was set; otherwise, <see langword="false" />.</returns>
368     </member>
369     <member name="M:System.Threading.CountdownEvent.Signal(System.Int32)">
370       <summary>Registers multiple signals with the <see cref="T:System.Threading.CountdownEvent" />, decrementing the value of <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> by the specified amount.</summary>
371       <param name="signalCount">The number of signals to register.</param>
372       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
373       <exception cref="T:System.ArgumentOutOfRangeException">
374         <paramref name="signalCount" /> is less than 1.</exception>
375       <exception cref="T:System.InvalidOperationException">The current instance is already set. -or- Or <paramref name="signalCount" /> is greater than <see cref="P:System.Threading.CountdownEvent.CurrentCount" />.</exception>
376       <returns>
377         <see langword="true" /> if the signals caused the count to reach zero and the event was set; otherwise, <see langword="false" />.</returns>
378     </member>
379     <member name="M:System.Threading.CountdownEvent.TryAddCount">
380       <summary>Attempts to increment <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> by one.</summary>
381       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
382       <exception cref="T:System.InvalidOperationException">
383         <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> is equal to <see cref="F:System.Int32.MaxValue" />.</exception>
384       <returns>
385         <see langword="true" /> if the increment succeeded; otherwise, false. If <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> is already at zero, this method will return <see langword="false" />.</returns>
386     </member>
387     <member name="M:System.Threading.CountdownEvent.TryAddCount(System.Int32)">
388       <summary>Attempts to increment <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> by a specified value.</summary>
389       <param name="signalCount">The value by which to increase <see cref="P:System.Threading.CountdownEvent.CurrentCount" />.</param>
390       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
391       <exception cref="T:System.ArgumentOutOfRangeException">
392         <paramref name="signalCount" /> is less than or equal to 0.</exception>
393       <exception cref="T:System.InvalidOperationException">
394         <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> + <paramref name="signalCount" /> is equal to or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
395       <returns>
396         <see langword="true" /> if the increment succeeded; otherwise, false. If <see cref="P:System.Threading.CountdownEvent.CurrentCount" /> is already at zero this will return <see langword="false" />.</returns>
397     </member>
398     <member name="M:System.Threading.CountdownEvent.Wait">
399       <summary>Blocks the current thread until the <see cref="T:System.Threading.CountdownEvent" /> is set.</summary>
400       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
401     </member>
402     <member name="M:System.Threading.CountdownEvent.Wait(System.Int32)">
403       <summary>Blocks the current thread until the <see cref="T:System.Threading.CountdownEvent" /> is set, using a 32-bit signed integer to measure the timeout.</summary>
404       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely.</param>
405       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
406       <exception cref="T:System.ArgumentOutOfRangeException">
407         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
408       <returns>
409         <see langword="true" /> if the <see cref="T:System.Threading.CountdownEvent" /> was set; otherwise, <see langword="false" />.</returns>
410     </member>
411     <member name="M:System.Threading.CountdownEvent.Wait(System.Int32,System.Threading.CancellationToken)">
412       <summary>Blocks the current thread until the <see cref="T:System.Threading.CountdownEvent" /> is set, using a 32-bit signed integer to measure the timeout, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
413       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely.</param>
414       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
415       <exception cref="T:System.OperationCanceledException">
416         <paramref name="cancellationToken" /> has been canceled.</exception>
417       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed. -or- The <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has already been disposed.</exception>
418       <exception cref="T:System.ArgumentOutOfRangeException">
419         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
420       <returns>
421         <see langword="true" /> if the <see cref="T:System.Threading.CountdownEvent" /> was set; otherwise, <see langword="false" />.</returns>
422     </member>
423     <member name="M:System.Threading.CountdownEvent.Wait(System.Threading.CancellationToken)">
424       <summary>Blocks the current thread until the <see cref="T:System.Threading.CountdownEvent" /> is set, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
425       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
426       <exception cref="T:System.OperationCanceledException">
427         <paramref name="cancellationToken" /> has been canceled.</exception>
428       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed. -or- The <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has already been disposed.</exception>
429     </member>
430     <member name="M:System.Threading.CountdownEvent.Wait(System.TimeSpan)">
431       <summary>Blocks the current thread until the <see cref="T:System.Threading.CountdownEvent" /> is set, using a <see cref="T:System.TimeSpan" /> to measure the timeout.</summary>
432       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
433       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
434       <exception cref="T:System.ArgumentOutOfRangeException">
435         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out -or- timeout is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
436       <returns>
437         <see langword="true" /> if the <see cref="T:System.Threading.CountdownEvent" /> was set; otherwise, <see langword="false" />.</returns>
438     </member>
439     <member name="M:System.Threading.CountdownEvent.Wait(System.TimeSpan,System.Threading.CancellationToken)">
440       <summary>Blocks the current thread until the <see cref="T:System.Threading.CountdownEvent" /> is set, using a <see cref="T:System.TimeSpan" /> to measure the timeout, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
441       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
442       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
443       <exception cref="T:System.OperationCanceledException">
444         <paramref name="cancellationToken" /> has been canceled.</exception>
445       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed. -or- The <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has already been disposed.</exception>
446       <exception cref="T:System.ArgumentOutOfRangeException">
447         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out -or- timeout is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
448       <returns>
449         <see langword="true" /> if the <see cref="T:System.Threading.CountdownEvent" /> was set; otherwise, <see langword="false" />.</returns>
450     </member>
451     <member name="P:System.Threading.CountdownEvent.CurrentCount">
452       <summary>Gets the number of remaining signals required to set the event.</summary>
453       <returns>The number of remaining signals required to set the event.</returns>
454     </member>
455     <member name="P:System.Threading.CountdownEvent.InitialCount">
456       <summary>Gets the numbers of signals initially required to set the event.</summary>
457       <returns>The number of signals initially required to set the event.</returns>
458     </member>
459     <member name="P:System.Threading.CountdownEvent.IsSet">
460       <summary>Indicates whether the <see cref="T:System.Threading.CountdownEvent" /> object's current count has reached zero.</summary>
461       <returns>
462         <see langword="true" /> if the current count is zero; otherwise, <see langword="false" />.</returns>
463     </member>
464     <member name="P:System.Threading.CountdownEvent.WaitHandle">
465       <summary>Gets a <see cref="T:System.Threading.WaitHandle" /> that is used to wait for the event to be set.</summary>
466       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
467       <returns>A <see cref="T:System.Threading.WaitHandle" /> that is used to wait for the event to be set.</returns>
468     </member>
469     <member name="T:System.Threading.EventResetMode">
470       <summary>Indicates whether an <see cref="T:System.Threading.EventWaitHandle" /> is reset automatically or manually after receiving a signal.</summary>
471     </member>
472     <member name="F:System.Threading.EventResetMode.AutoReset">
473       <summary>When signaled, the <see cref="T:System.Threading.EventWaitHandle" /> resets automatically after releasing a single thread. If no threads are waiting, the <see cref="T:System.Threading.EventWaitHandle" /> remains signaled until a thread blocks, and resets after releasing the thread.</summary>
474     </member>
475     <member name="F:System.Threading.EventResetMode.ManualReset">
476       <summary>When signaled, the <see cref="T:System.Threading.EventWaitHandle" /> releases all waiting threads and remains signaled until it is manually reset.</summary>
477     </member>
478     <member name="T:System.Threading.EventWaitHandle">
479       <summary>Represents a thread synchronization event.</summary>
480     </member>
481     <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode)">
482       <summary>Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled, and whether it resets automatically or manually.</summary>
483       <param name="initialState">
484         <see langword="true" /> to set the initial state to signaled; <see langword="false" /> to set it to nonsignaled.</param>
485       <param name="mode">One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually.</param>
486       <exception cref="T:System.ArgumentException">The <paramref name="mode" /> enum value was out of legal range.</exception>
487     </member>
488     <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode,System.String)">
489       <summary>Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled if created as a result of this call, whether it resets automatically or manually, and the name of a system synchronization event.</summary>
490       <param name="initialState">
491         <see langword="true" /> to set the initial state to signaled if the named event is created as a result of this call; <see langword="false" /> to set it to nonsignaled.</param>
492       <param name="mode">One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually.</param>
493       <param name="name">The name, if the synchronization object is to be shared with other processes; otherwise, <see langword="null" /> or an empty string. The name is case-sensitive.</param>
494       <exception cref="T:System.IO.IOException">
495         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
496
497 -or-
498
499 There was some other error. The HResult property may provide more information.</exception>
500       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
501       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
502       <exception cref="T:System.UnauthorizedAccessException">The named event exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.FullControl" />.</exception>
503       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name.</exception>
504       <exception cref="T:System.ArgumentException">
505           The <paramref name="mode" /> enum value was out of legal range.
506
507 -or-
508
509 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
510     </member>
511     <member name="M:System.Threading.EventWaitHandle.#ctor(System.Boolean,System.Threading.EventResetMode,System.String,System.Boolean@)">
512       <summary>Initializes a new instance of the <see cref="T:System.Threading.EventWaitHandle" /> class, specifying whether the wait handle is initially signaled if created as a result of this call, whether it resets automatically or manually, the name of a system synchronization event, and a Boolean variable whose value after the call indicates whether the named system event was created.</summary>
513       <param name="initialState">
514         <see langword="true" /> to set the initial state to signaled if the named event is created as a result of this call; <see langword="false" /> to set it to nonsignaled.</param>
515       <param name="mode">One of the <see cref="T:System.Threading.EventResetMode" /> values that determines whether the event resets automatically or manually.</param>
516       <param name="name">The name, if the synchronization object is to be shared with other processes; otherwise, <see langword="null" /> or an empty string. The name is case-sensitive.</param>
517       <param name="createdNew">When this method returns, contains <see langword="true" /> if a local event was created (that is, if <paramref name="name" /> is <see langword="null" /> or an empty string) or if the specified named system event was created; <see langword="false" /> if the specified named system event already existed. This parameter is passed uninitialized.</param>
518       <exception cref="T:System.IO.IOException">
519         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
520
521 -or-
522
523 There was some other error. The HResult property may provide more information.</exception>
524       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
525       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
526       <exception cref="T:System.UnauthorizedAccessException">The named event exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.EventWaitHandleRights.FullControl" />.</exception>
527       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name.</exception>
528       <exception cref="T:System.ArgumentException">
529           The <paramref name="mode" /> enum value was out of legal range.
530
531 -or-
532
533 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
534     </member>
535     <member name="M:System.Threading.EventWaitHandle.OpenExisting(System.String)">
536       <summary>Opens the specified named synchronization event, if it already exists.</summary>
537       <param name="name">The name of the synchronization object to be opened and shared with other processes. The name is case-sensitive.</param>
538       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be opened. It may not exist, or a synchronization object of a different type might have the same name. In some cases, this exception may be thrown for invalid names.</exception>
539       <exception cref="T:System.ArgumentException">
540         <paramref name="name" /> is an empty string.
541
542 -or-
543
544 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
545       <exception cref="T:System.ArgumentNullException">
546         <paramref name="name" /> is <see langword="null" />.</exception>
547       <exception cref="T:System.IO.IOException">
548         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
549
550 -or-
551
552 There was some other error. The HResult property may provide more information.</exception>
553       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
554       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
555       <exception cref="T:System.UnauthorizedAccessException">The named event exists, but the user does not have the security access required to use it.</exception>
556       <returns>An  object that represents the named system event.</returns>
557     </member>
558     <member name="M:System.Threading.EventWaitHandle.Reset">
559       <summary>Sets the state of the event to nonsignaled, causing threads to block.</summary>
560       <exception cref="T:System.ObjectDisposedException">The <see cref="M:System.Threading.WaitHandle.Close" /> method was previously called on this <see cref="T:System.Threading.EventWaitHandle" />.</exception>
561       <returns>
562         <see langword="true" /> if the operation succeeds; otherwise, <see langword="false" />.</returns>
563     </member>
564     <member name="M:System.Threading.EventWaitHandle.Set">
565       <summary>Sets the state of the event to signaled, allowing one or more waiting threads to proceed.</summary>
566       <exception cref="T:System.ObjectDisposedException">The <see cref="M:System.Threading.WaitHandle.Close" /> method was previously called on this <see cref="T:System.Threading.EventWaitHandle" />.</exception>
567       <returns>
568         <see langword="true" /> if the operation succeeds; otherwise, <see langword="false" />.</returns>
569     </member>
570     <member name="M:System.Threading.EventWaitHandle.TryOpenExisting(System.String,System.Threading.EventWaitHandle@)">
571       <summary>Opens the specified named synchronization event, if it already exists, and returns a value that indicates whether the operation succeeded.</summary>
572       <param name="name">The name of the synchronization object to be opened and shared with other processes. The name is case-sensitive.</param>
573       <param name="result">When this method returns, contains a <see cref="T:System.Threading.EventWaitHandle" /> object that represents the named synchronization event if the call succeeded, or <see langword="null" /> if the call failed. This parameter is treated as uninitialized.</param>
574       <exception cref="T:System.ArgumentException">
575         <paramref name="name" /> is an empty string.
576
577 -or-
578
579 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
580       <exception cref="T:System.ArgumentNullException">
581         <paramref name="name" /> is <see langword="null" />.</exception>
582       <exception cref="T:System.IO.IOException">
583         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive. For some invalid names, the method may return <see langword="false" /> instead.
584
585 -or-
586
587 There was some other error. The HResult property may provide more information.</exception>
588       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
589       <exception cref="T:System.UnauthorizedAccessException">The named event exists, but the user does not have the desired security access.</exception>
590       <returns>
591         <see langword="true" /> if the named synchronization event was opened successfully; otherwise, <see langword="false" />. In some cases, <see langword="false" /> may be returned for invalid names.</returns>
592     </member>
593     <member name="T:System.Threading.ExecutionContext">
594       <summary>Manages the execution context for the current thread. This class cannot be inherited.</summary>
595     </member>
596     <member name="M:System.Threading.ExecutionContext.Capture">
597       <summary>Captures the execution context from the current thread.</summary>
598       <returns>An <see cref="T:System.Threading.ExecutionContext" /> object representing the execution context for the current thread.</returns>
599     </member>
600     <member name="M:System.Threading.ExecutionContext.CreateCopy">
601       <summary>Creates a copy of the current execution context.</summary>
602       <exception cref="T:System.InvalidOperationException">This context cannot be copied because it is used. Only newly captured contexts can be copied.</exception>
603       <returns>An <see cref="T:System.Threading.ExecutionContext" /> object representing the current execution context.</returns>
604     </member>
605     <member name="M:System.Threading.ExecutionContext.Dispose">
606       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.ExecutionContext" /> class.</summary>
607     </member>
608     <member name="M:System.Threading.ExecutionContext.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
609       <summary>Sets the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the logical context information needed to recreate an instance of the current execution context.</summary>
610       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to be populated with serialization information.</param>
611       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure representing the destination context of the serialization.</param>
612       <exception cref="T:System.ArgumentNullException">
613         <paramref name="info" /> is <see langword="null" />.</exception>
614     </member>
615     <member name="M:System.Threading.ExecutionContext.IsFlowSuppressed">
616       <summary>Indicates whether the flow of the execution context is currently suppressed.</summary>
617       <returns>
618         <see langword="true" /> if the flow is suppressed; otherwise, <see langword="false" />.</returns>
619     </member>
620     <member name="M:System.Threading.ExecutionContext.Restore(System.Threading.ExecutionContext)">
621       <summary>Restores a captured execution context on to the current thread.</summary>
622       <param name="executionContext">The ExecutionContext to set.</param>
623       <exception cref="T:System.InvalidOperationException">
624         <paramref name="executionContext" /> is <see langword="null" />.</exception>
625     </member>
626     <member name="M:System.Threading.ExecutionContext.RestoreFlow">
627       <summary>Restores the flow of the execution context across asynchronous threads.</summary>
628       <exception cref="T:System.InvalidOperationException">The context flow cannot be restored because it is not being suppressed.</exception>
629     </member>
630     <member name="M:System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object)">
631       <summary>Runs a method in a specified execution context on the current thread.</summary>
632       <param name="executionContext">The <see cref="T:System.Threading.ExecutionContext" /> to set.</param>
633       <param name="callback">A <see cref="T:System.Threading.ContextCallback" /> delegate that represents the method to be run in the provided execution context.</param>
634       <param name="state">The object to pass to the callback method.</param>
635       <exception cref="T:System.InvalidOperationException">
636         <paramref name="executionContext" /> is <see langword="null" />.  
637   
638  -or-  
639   
640  <paramref name="executionContext" /> was not acquired through a capture operation.  
641   
642  -or-  
643   
644  <paramref name="executionContext" /> has already been used as the argument to a <see cref="M:System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object)" /> call.</exception>
645     </member>
646     <member name="M:System.Threading.ExecutionContext.SuppressFlow">
647       <summary>Suppresses the flow of the execution context across asynchronous threads.</summary>
648       <exception cref="T:System.InvalidOperationException">The context flow is already suppressed.</exception>
649       <returns>An <see cref="T:System.Threading.AsyncFlowControl" /> structure for restoring the flow.</returns>
650     </member>
651     <member name="T:System.Threading.HostExecutionContext">
652       <summary>Encapsulates and propagates the host execution context across threads.</summary>
653     </member>
654     <member name="M:System.Threading.HostExecutionContext.#ctor">
655       <summary>Initializes a new instance of the <see cref="T:System.Threading.HostExecutionContext" /> class.</summary>
656     </member>
657     <member name="M:System.Threading.HostExecutionContext.#ctor(System.Object)">
658       <summary>Initializes a new instance of the <see cref="T:System.Threading.HostExecutionContext" /> class using the specified state.</summary>
659       <param name="state">An object representing the host execution context state.</param>
660     </member>
661     <member name="M:System.Threading.HostExecutionContext.CreateCopy">
662       <summary>Creates a copy of the current host execution context.</summary>
663       <returns>A <see cref="T:System.Threading.HostExecutionContext" /> object representing the host context for the current thread.</returns>
664     </member>
665     <member name="M:System.Threading.HostExecutionContext.Dispose">
666       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.HostExecutionContext" /> class.</summary>
667     </member>
668     <member name="M:System.Threading.HostExecutionContext.Dispose(System.Boolean)">
669       <summary>When overridden in a derived class, releases the unmanaged resources used by the <see cref="T:System.Threading.WaitHandle" />, and optionally releases the managed resources.</summary>
670       <param name="disposing">
671         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
672     </member>
673     <member name="P:System.Threading.HostExecutionContext.State">
674       <summary>Gets or sets the state of the host execution context.</summary>
675       <returns>An object representing the host execution context state.</returns>
676     </member>
677     <member name="T:System.Threading.HostExecutionContextManager">
678       <summary>Provides the functionality that allows a common language runtime host to participate in the flow, or migration, of the execution context.</summary>
679     </member>
680     <member name="M:System.Threading.HostExecutionContextManager.#ctor">
681       <summary>Initializes a new instance of the <see cref="T:System.Threading.HostExecutionContextManager" /> class.</summary>
682     </member>
683     <member name="M:System.Threading.HostExecutionContextManager.Capture">
684       <summary>Captures the host execution context from the current thread.</summary>
685       <returns>A <see cref="T:System.Threading.HostExecutionContext" /> object representing the host execution context of the current thread.</returns>
686     </member>
687     <member name="M:System.Threading.HostExecutionContextManager.Revert(System.Object)">
688       <summary>Restores the host execution context to its prior state.</summary>
689       <param name="previousState">The previous context state to revert to.</param>
690       <exception cref="T:System.InvalidOperationException">
691         <paramref name="previousState" /> is <see langword="null" />.  
692   
693  -or-  
694   
695  <paramref name="previousState" /> was not created on the current thread.  
696   
697  -or-  
698   
699  <paramref name="previousState" /> is not the last state for the <see cref="T:System.Threading.HostExecutionContext" />.</exception>
700     </member>
701     <member name="M:System.Threading.HostExecutionContextManager.SetHostExecutionContext(System.Threading.HostExecutionContext)">
702       <summary>Sets the current host execution context to the specified host execution context.</summary>
703       <param name="hostExecutionContext">The <see cref="T:System.Threading.HostExecutionContext" /> to be set.</param>
704       <exception cref="T:System.InvalidOperationException">
705         <paramref name="hostExecutionContext" /> was not acquired through a capture operation.  
706   
707  -or-  
708   
709  <paramref name="hostExecutionContext" /> has been the argument to a previous <see cref="M:System.Threading.HostExecutionContextManager.SetHostExecutionContext(System.Threading.HostExecutionContext)" /> method call.</exception>
710       <returns>An object for restoring the <see cref="T:System.Threading.HostExecutionContext" /> to its previous state.</returns>
711     </member>
712     <member name="T:System.Threading.Interlocked">
713       <summary>Provides atomic operations for variables that are shared by multiple threads.</summary>
714     </member>
715     <member name="M:System.Threading.Interlocked.Add(System.Int32@,System.Int32)">
716       <summary>Adds two 32-bit integers and replaces the first integer with the sum, as an atomic operation.</summary>
717       <param name="location1">A variable containing the first value to be added. The sum of the two values is stored in <paramref name="location1" />.</param>
718       <param name="value">The value to be added to the integer at <paramref name="location1" />.</param>
719       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
720       <returns>The new value that was stored at <paramref name="location1" /> by this operation.</returns>
721     </member>
722     <member name="M:System.Threading.Interlocked.Add(System.Int64@,System.Int64)">
723       <summary>Adds two 64-bit integers and replaces the first integer with the sum, as an atomic operation.</summary>
724       <param name="location1">A variable containing the first value to be added. The sum of the two values is stored in <paramref name="location1" />.</param>
725       <param name="value">The value to be added to the integer at <paramref name="location1" />.</param>
726       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
727       <returns>The new value that was stored at <paramref name="location1" /> by this operation.</returns>
728     </member>
729     <member name="M:System.Threading.Interlocked.Add(System.UInt32@,System.UInt32)">
730       <summary>Adds two 32-bit unsigned integers and replaces the first integer with the sum, as an atomic operation.</summary>
731       <param name="location1">A variable containing the first value to be added. The sum of the two values is stored in <paramref name="location1" />.</param>
732       <param name="value">The value to be added to the integer at <paramref name="location1" />.</param>
733       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
734       <returns>The new value that was stored at <paramref name="location1" /> by this operation.</returns>
735     </member>
736     <member name="M:System.Threading.Interlocked.Add(System.UInt64@,System.UInt64)">
737       <summary>Adds two 64-bit unsigned integers and replaces the first integer with the sum, as an atomic operation.</summary>
738       <param name="location1">A variable containing the first value to be added. The sum of the two values is stored in <paramref name="location1" />.</param>
739       <param name="value">The value to be added to the integer at <paramref name="location1" />.</param>
740       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
741       <returns>The new value that was stored at <paramref name="location1" /> by this operation.</returns>
742     </member>
743     <member name="M:System.Threading.Interlocked.And(System.Int32@,System.Int32)">
744       <summary>Bitwise "ands" two 32-bit signed integers and replaces the first integer with the result, as an atomic operation.</summary>
745       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
746       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
747       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
748       <returns>The original value in <paramref name="location1" />.</returns>
749     </member>
750     <member name="M:System.Threading.Interlocked.And(System.Int64@,System.Int64)">
751       <summary>Bitwise "ands" two 64-bit signed integers and replaces the first integer with the result, as an atomic operation.</summary>
752       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
753       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
754       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
755       <returns>The original value in <paramref name="location1" />.</returns>
756     </member>
757     <member name="M:System.Threading.Interlocked.And(System.UInt32@,System.UInt32)">
758       <summary>Bitwise "ands" two 32-bit unsigned integers and replaces the first integer with the result, as an atomic operation.</summary>
759       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
760       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
761       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
762       <returns>The original value in <paramref name="location1" />.</returns>
763     </member>
764     <member name="M:System.Threading.Interlocked.And(System.UInt64@,System.UInt64)">
765       <summary>Bitwise "ands" two 64-bit unsigned integers and replaces the first integer with the result, as an atomic operation.</summary>
766       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
767       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
768       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
769       <returns>The original value in <paramref name="location1" />.</returns>
770     </member>
771     <member name="M:System.Threading.Interlocked.CompareExchange(System.Double@,System.Double,System.Double)">
772       <summary>Compares two double-precision floating point numbers for equality and, if they are equal, replaces the first value.</summary>
773       <param name="location1">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
774       <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
775       <param name="comparand">The value that is compared to the value at <paramref name="location1" />.</param>
776       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
777       <returns>The original value in <paramref name="location1" />.</returns>
778     </member>
779     <member name="M:System.Threading.Interlocked.CompareExchange(System.Int32@,System.Int32,System.Int32)">
780       <summary>Compares two 32-bit signed integers for equality and, if they are equal, replaces the first value.</summary>
781       <param name="location1">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
782       <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
783       <param name="comparand">The value that is compared to the value at <paramref name="location1" />.</param>
784       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
785       <returns>The original value in <paramref name="location1" />.</returns>
786     </member>
787     <member name="M:System.Threading.Interlocked.CompareExchange(System.Int64@,System.Int64,System.Int64)">
788       <summary>Compares two 64-bit signed integers for equality and, if they are equal, replaces the first value.</summary>
789       <param name="location1">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
790       <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
791       <param name="comparand">The value that is compared to the value at <paramref name="location1" />.</param>
792       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
793       <returns>The original value in <paramref name="location1" />.</returns>
794     </member>
795     <member name="M:System.Threading.Interlocked.CompareExchange(System.IntPtr@,System.IntPtr,System.IntPtr)">
796       <summary>Compares two platform-specific handles or pointers for equality and, if they are equal, replaces the first one.</summary>
797       <param name="location1">The destination <see cref="T:System.IntPtr" />, whose value is compared with the value of <paramref name="comparand" /> and possibly replaced by <paramref name="value" />.</param>
798       <param name="value">The <see cref="T:System.IntPtr" /> that replaces the destination value if the comparison results in equality.</param>
799       <param name="comparand">The <see cref="T:System.IntPtr" /> that is compared to the value at <paramref name="location1" />.</param>
800       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
801       <returns>The original value in <paramref name="location1" />.</returns>
802     </member>
803     <member name="M:System.Threading.Interlocked.CompareExchange(System.Object@,System.Object,System.Object)">
804       <summary>Compares two objects for reference equality and, if they are equal, replaces the first object.</summary>
805       <param name="location1">The destination object that is compared by reference with <paramref name="comparand" /> and possibly replaced.</param>
806       <param name="value">The object that replaces the destination object if the reference comparison results in equality.</param>
807       <param name="comparand">The object that is compared by reference to the object at <paramref name="location1" />.</param>
808       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
809       <returns>The original value in <paramref name="location1" />.</returns>
810     </member>
811     <member name="M:System.Threading.Interlocked.CompareExchange(System.Single@,System.Single,System.Single)">
812       <summary>Compares two single-precision floating point numbers for equality and, if they are equal, replaces the first value.</summary>
813       <param name="location1">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
814       <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
815       <param name="comparand">The value that is compared to the value at <paramref name="location1" />.</param>
816       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
817       <returns>The original value in <paramref name="location1" />.</returns>
818     </member>
819     <member name="M:System.Threading.Interlocked.CompareExchange(System.UInt32@,System.UInt32,System.UInt32)">
820       <summary>Compares two 32-bit unsigned integers for equality and, if they are equal, replaces the first value.</summary>
821       <param name="location1">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
822       <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
823       <param name="comparand">The value that is compared to the value at <paramref name="location1" />.</param>
824       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
825       <returns>The original value in <paramref name="location1" />.</returns>
826     </member>
827     <member name="M:System.Threading.Interlocked.CompareExchange(System.UInt64@,System.UInt64,System.UInt64)">
828       <summary>Compares two 64-bit unsigned integers for equality and, if they are equal, replaces the first value.</summary>
829       <param name="location1">The destination, whose value is compared with <paramref name="comparand" /> and possibly replaced.</param>
830       <param name="value">The value that replaces the destination value if the comparison results in equality.</param>
831       <param name="comparand">The value that is compared to the value at <paramref name="location1" />.</param>
832       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
833       <returns>The original value in <paramref name="location1" />.</returns>
834     </member>
835     <member name="M:System.Threading.Interlocked.CompareExchange``1(``0@,``0,``0)">
836       <summary>Compares two instances of the specified reference type <paramref name="T" /> for reference equality and, if they are equal, replaces the first one.</summary>
837       <param name="location1">The destination, whose value is compared by reference with <paramref name="comparand" /> and possibly replaced. This is a reference parameter (<see langword="ref" /> in C#, <see langword="ByRef" /> in Visual Basic).</param>
838       <param name="value">The value that replaces the destination value if the comparison by reference results in equality.</param>
839       <param name="comparand">The value that is compared by reference to the value at <paramref name="location1" />.</param>
840       <typeparam name="T">The type to be used for <paramref name="location1" />, <paramref name="value" />, and <paramref name="comparand" />. This type must be a reference type.</typeparam>
841       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a null pointer.</exception>
842       <returns>The original value in <paramref name="location1" />.</returns>
843     </member>
844     <member name="M:System.Threading.Interlocked.Decrement(System.Int32@)">
845       <summary>Decrements a specified variable and stores the result, as an atomic operation.</summary>
846       <param name="location">The variable whose value is to be decremented.</param>
847       <exception cref="T:System.ArgumentNullException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
848       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
849       <returns>The decremented value.</returns>
850     </member>
851     <member name="M:System.Threading.Interlocked.Decrement(System.Int64@)">
852       <summary>Decrements the specified variable and stores the result, as an atomic operation.</summary>
853       <param name="location">The variable whose value is to be decremented.</param>
854       <exception cref="T:System.ArgumentNullException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
855       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
856       <returns>The decremented value.</returns>
857     </member>
858     <member name="M:System.Threading.Interlocked.Decrement(System.UInt32@)">
859       <summary>Decrements a specified variable and stores the result, as an atomic operation.</summary>
860       <param name="location">The variable whose value is to be decremented.</param>
861       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
862       <returns>The decremented value.</returns>
863     </member>
864     <member name="M:System.Threading.Interlocked.Decrement(System.UInt64@)">
865       <summary>Decrements a specified variable and stores the result, as an atomic operation.</summary>
866       <param name="location">The variable whose value is to be decremented.</param>
867       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
868       <returns>The decremented value.</returns>
869     </member>
870     <member name="M:System.Threading.Interlocked.Exchange(System.Double@,System.Double)">
871       <summary>Sets a double-precision floating point number to a specified value and returns the original value, as an atomic operation.</summary>
872       <param name="location1">The variable to set to the specified value.</param>
873       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
874       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
875       <returns>The original value of <paramref name="location1" />.</returns>
876     </member>
877     <member name="M:System.Threading.Interlocked.Exchange(System.Int32@,System.Int32)">
878       <summary>Sets a 32-bit signed integer to a specified value and returns the original value, as an atomic operation.</summary>
879       <param name="location1">The variable to set to the specified value.</param>
880       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
881       <exception cref="T:System.ArgumentNullException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
882       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
883       <returns>The original value of <paramref name="location1" />.</returns>
884     </member>
885     <member name="M:System.Threading.Interlocked.Exchange(System.Int64@,System.Int64)">
886       <summary>Sets a 64-bit signed integer to a specified value and returns the original value, as an atomic operation.</summary>
887       <param name="location1">The variable to set to the specified value.</param>
888       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
889       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
890       <returns>The original value of <paramref name="location1" />.</returns>
891     </member>
892     <member name="M:System.Threading.Interlocked.Exchange(System.IntPtr@,System.IntPtr)">
893       <summary>Sets a platform-specific handle or pointer to a specified value and returns the original value, as an atomic operation.</summary>
894       <param name="location1">The variable to set to the specified value.</param>
895       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
896       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
897       <returns>The original value of <paramref name="location1" />.</returns>
898     </member>
899     <member name="M:System.Threading.Interlocked.Exchange(System.Object@,System.Object)">
900       <summary>Sets an object to a specified value and returns a reference to the original object, as an atomic operation.</summary>
901       <param name="location1">The variable to set to the specified value.</param>
902       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
903       <exception cref="T:System.ArgumentNullException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
904       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
905       <returns>The original value of <paramref name="location1" />.</returns>
906     </member>
907     <member name="M:System.Threading.Interlocked.Exchange(System.Single@,System.Single)">
908       <summary>Sets a single-precision floating point number to a specified value and returns the original value, as an atomic operation.</summary>
909       <param name="location1">The variable to set to the specified value.</param>
910       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
911       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
912       <returns>The original value of <paramref name="location1" />.</returns>
913     </member>
914     <member name="M:System.Threading.Interlocked.Exchange(System.UInt32@,System.UInt32)">
915       <summary>Sets a 32-bit unsigned integer to a specified value and returns the original value, as an atomic operation.</summary>
916       <param name="location1">The variable to set to the specified value.</param>
917       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
918       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
919       <returns>The original value of <paramref name="location1" />.</returns>
920     </member>
921     <member name="M:System.Threading.Interlocked.Exchange(System.UInt64@,System.UInt64)">
922       <summary>Sets a 64-bit unsigned integer to a specified value and returns the original value, as an atomic operation.</summary>
923       <param name="location1">The variable to set to the specified value.</param>
924       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
925       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
926       <returns>The original value of <paramref name="location1" />.</returns>
927     </member>
928     <member name="M:System.Threading.Interlocked.Exchange``1(``0@,``0)">
929       <summary>Sets a variable of the specified type <paramref name="T" /> to a specified value and returns the original value, as an atomic operation.</summary>
930       <param name="location1">The variable to set to the specified value. This is a reference parameter (<see langword="ref" /> in C#, <see langword="ByRef" /> in Visual Basic).</param>
931       <param name="value">The value to which the <paramref name="location1" /> parameter is set.</param>
932       <typeparam name="T">The type to be used for <paramref name="location1" /> and <paramref name="value" />. This type must be a reference type.</typeparam>
933       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
934       <returns>The original value of <paramref name="location1" />.</returns>
935     </member>
936     <member name="M:System.Threading.Interlocked.Increment(System.Int32@)">
937       <summary>Increments a specified variable and stores the result, as an atomic operation.</summary>
938       <param name="location">The variable whose value is to be incremented.</param>
939       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
940       <returns>The incremented value.</returns>
941     </member>
942     <member name="M:System.Threading.Interlocked.Increment(System.Int64@)">
943       <summary>Increments a specified variable and stores the result, as an atomic operation.</summary>
944       <param name="location">The variable whose value is to be incremented.</param>
945       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
946       <returns>The incremented value.</returns>
947     </member>
948     <member name="M:System.Threading.Interlocked.Increment(System.UInt32@)">
949       <summary>Increments a specified variable and stores the result, as an atomic operation.</summary>
950       <param name="location">The variable whose value is to be incremented.</param>
951       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
952       <returns>The incremented value.</returns>
953     </member>
954     <member name="M:System.Threading.Interlocked.Increment(System.UInt64@)">
955       <summary>Increments a specified variable and stores the result, as an atomic operation.</summary>
956       <param name="location">The variable whose value is to be incremented.</param>
957       <exception cref="T:System.NullReferenceException">The address of <paramref name="location" /> is a <see langword="null" /> pointer.</exception>
958       <returns>The incremented value.</returns>
959     </member>
960     <member name="M:System.Threading.Interlocked.MemoryBarrier">
961       <summary>Synchronizes memory access as follows: The processor that executes the current thread cannot reorder instructions in such a way that memory accesses before the call to <see cref="M:System.Threading.Interlocked.MemoryBarrier" /> execute after memory accesses that follow the call to <see cref="M:System.Threading.Interlocked.MemoryBarrier" />.</summary>
962     </member>
963     <member name="M:System.Threading.Interlocked.MemoryBarrierProcessWide">
964       <summary>Provides a process-wide memory barrier that ensures that reads and writes from any CPU cannot move across the barrier.</summary>
965     </member>
966     <member name="M:System.Threading.Interlocked.Or(System.Int32@,System.Int32)">
967       <summary>Bitwise "ors" two 32-bit signed integers and replaces the first integer with the result, as an atomic operation.</summary>
968       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
969       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
970       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
971       <returns>The original value in <paramref name="location1" />.</returns>
972     </member>
973     <member name="M:System.Threading.Interlocked.Or(System.Int64@,System.Int64)">
974       <summary>Bitwise "ors" two 64-bit signed integers and replaces the first integer with the result, as an atomic operation.</summary>
975       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
976       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
977       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
978       <returns>The original value in <paramref name="location1" />.</returns>
979     </member>
980     <member name="M:System.Threading.Interlocked.Or(System.UInt32@,System.UInt32)">
981       <summary>Bitwise "ors" two 32-bit unsigned integers and replaces the first integer with the result, as an atomic operation.</summary>
982       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
983       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
984       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
985       <returns>The original value in <paramref name="location1" />.</returns>
986     </member>
987     <member name="M:System.Threading.Interlocked.Or(System.UInt64@,System.UInt64)">
988       <summary>Bitwise "ors" two 64-bit unsigned integers and replaces the first integer with the result, as an atomic operation.</summary>
989       <param name="location1">A variable containing the first value to be combined. The result is stored in <paramref name="location1" />.</param>
990       <param name="value">The value to be combined with the integer at <paramref name="location1" />.</param>
991       <exception cref="T:System.NullReferenceException">The address of <paramref name="location1" /> is a <see langword="null" /> pointer.</exception>
992       <returns>The original value in <paramref name="location1" />.</returns>
993     </member>
994     <member name="M:System.Threading.Interlocked.Read(System.Int64@)">
995       <summary>Returns a 64-bit value, loaded as an atomic operation.</summary>
996       <param name="location">The 64-bit value to be loaded.</param>
997       <returns>The loaded value.</returns>
998     </member>
999     <member name="M:System.Threading.Interlocked.Read(System.UInt64@)">
1000       <summary>Returns a 64-bit unsigned value, loaded as an atomic operation.</summary>
1001       <param name="location">The 64-bit value to be loaded.</param>
1002       <returns>The loaded value.</returns>
1003     </member>
1004     <member name="T:System.Threading.LazyInitializer">
1005       <summary>Provides lazy initialization routines.</summary>
1006     </member>
1007     <member name="M:System.Threading.LazyInitializer.EnsureInitialized``1(``0@)">
1008       <summary>Initializes a target reference type with the type's parameterless constructor if it hasn't already been initialized.</summary>
1009       <param name="target">A reference to initialize if it has not already been initialized. If it is <see langword="null" />, it is considered not initialized; otherwise, it's considered initialized.</param>
1010       <typeparam name="T">The type of the reference to be initialized.</typeparam>
1011       <exception cref="T:System.MemberAccessException">Permissions to access the constructor of type <paramref name="T" /> were missing.</exception>
1012       <exception cref="T:System.MissingMemberException">Type <paramref name="T" /> does not have a parameterless constructor.</exception>
1013       <returns>The initialized object.</returns>
1014     </member>
1015     <member name="M:System.Threading.LazyInitializer.EnsureInitialized``1(``0@,System.Boolean@,System.Object@)">
1016       <summary>Initializes a target reference or value type with its parameterless constructor if it hasn't already been initialized.</summary>
1017       <param name="target">A reference or value of type <c>T</c> to initialize if it hasn't already been initialized.</param>
1018       <param name="initialized">A reference to a Boolean value that determines whether the target has already been initialized.</param>
1019       <param name="syncLock">A reference to an object used as the mutually exclusive lock for initializing <paramref name="target" />. If <paramref name="syncLock" /> is <see langword="null" />, a new object will be instantiated.</param>
1020       <typeparam name="T">The type of the reference to be initialized.</typeparam>
1021       <exception cref="T:System.MemberAccessException">Permissions to access the constructor of type <paramref name="T" /> were missing.</exception>
1022       <exception cref="T:System.MissingMemberException">Type <paramref name="T" /> does not have a parameterless constructor.</exception>
1023       <returns>The initialized object.</returns>
1024     </member>
1025     <member name="M:System.Threading.LazyInitializer.EnsureInitialized``1(``0@,System.Boolean@,System.Object@,System.Func{``0})">
1026       <summary>Initializes a target reference or value type by using a specified function if it hasn't already been initialized.</summary>
1027       <param name="target">A reference or value of type <c>T</c> to initialize if it hasn't already been initialized.</param>
1028       <param name="initialized">A reference to a Boolean value that determines whether the target has already been initialized.</param>
1029       <param name="syncLock">A reference to an object used as the mutually exclusive lock for initializing <paramref name="target" />. If <paramref name="syncLock" /> is <see langword="null" />, a new object will be instantiated.</param>
1030       <param name="valueFactory">The function that is called to initialize the reference or value.</param>
1031       <typeparam name="T">The type of the reference to be initialized.</typeparam>
1032       <exception cref="T:System.MemberAccessException">Permissions to access the constructor of type <paramref name="T" /> were missing.</exception>
1033       <exception cref="T:System.MissingMemberException">Type <paramref name="T" /> does not have a parameterless constructor.</exception>
1034       <returns>The initialized object.</returns>
1035     </member>
1036     <member name="M:System.Threading.LazyInitializer.EnsureInitialized``1(``0@,System.Func{``0})">
1037       <summary>Initializes a target reference type by using a specified function if it hasn't already been initialized.</summary>
1038       <param name="target">The reference to initialize if it hasn't already been initialized.</param>
1039       <param name="valueFactory">The function that is called to initialize the reference.</param>
1040       <typeparam name="T">The type of the reference to be initialized.</typeparam>
1041       <exception cref="T:System.MissingMemberException">Type <paramref name="T" /> does not have a parameterless constructor.</exception>
1042       <exception cref="T:System.InvalidOperationException">
1043         <paramref name="valueFactory" /> returned null (Nothing in Visual Basic).</exception>
1044       <returns>The initialized object.</returns>
1045     </member>
1046     <member name="M:System.Threading.LazyInitializer.EnsureInitialized``1(``0@,System.Object@,System.Func{``0})">
1047       <summary>Initializes a target reference type with a specified function if it has not already been initialized.</summary>
1048       <param name="target">A reference to initialize if it has not already been initialized. If it is <see langword="null" />, it is considered not initialized; otherwise, it's considered initialized.</param>
1049       <param name="syncLock">A reference to an object used as the mutually exclusive lock for initializing
1050             <paramref name="target" />. If <paramref name="syncLock" /> is <see langword="null" />, a new object will be instantiated.</param>
1051       <param name="valueFactory">The method to invoke to initialize <paramref name="target" />.</param>
1052       <typeparam name="T">The type of the reference to be initialized.</typeparam>
1053       <returns>The initialized object.</returns>
1054     </member>
1055     <member name="T:System.Threading.LockCookie">
1056       <summary>Defines the lock that implements single-writer/multiple-reader semantics. This is a value type.</summary>
1057     </member>
1058     <member name="M:System.Threading.LockCookie.Equals(System.Object)">
1059       <summary>Indicates whether a specified object is a <see cref="T:System.Threading.LockCookie" /> and is equal to the current instance.</summary>
1060       <param name="obj">The object to compare to the current instance.</param>
1061       <returns>
1062         <see langword="true" /> if the value of <paramref name="obj" /> is equal to the value of the current instance; otherwise, <see langword="false" />.</returns>
1063     </member>
1064     <member name="M:System.Threading.LockCookie.Equals(System.Threading.LockCookie)">
1065       <summary>Indicates whether the current instance is equal to the specified <see cref="T:System.Threading.LockCookie" />.</summary>
1066       <param name="obj">The <see cref="T:System.Threading.LockCookie" /> to compare to the current instance.</param>
1067       <returns>
1068         <see langword="true" /> if <paramref name="obj" /> is equal to the value of the current instance; otherwise, <see langword="false" />.</returns>
1069     </member>
1070     <member name="M:System.Threading.LockCookie.GetHashCode">
1071       <summary>Returns the hash code for this instance.</summary>
1072       <returns>A 32-bit signed integer hash code.</returns>
1073     </member>
1074     <member name="M:System.Threading.LockCookie.op_Equality(System.Threading.LockCookie,System.Threading.LockCookie)">
1075       <summary>Indicates whether two <see cref="T:System.Threading.LockCookie" /> structures are equal.</summary>
1076       <param name="a">The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="b" />.</param>
1077       <param name="b">The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="a" />.</param>
1078       <returns>
1079         <see langword="true" /> if <paramref name="a" /> is equal to <paramref name="b" />; otherwise, <see langword="false" />.</returns>
1080     </member>
1081     <member name="M:System.Threading.LockCookie.op_Inequality(System.Threading.LockCookie,System.Threading.LockCookie)">
1082       <summary>Indicates whether two <see cref="T:System.Threading.LockCookie" /> structures are not equal.</summary>
1083       <param name="a">The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="b" />.</param>
1084       <param name="b">The <see cref="T:System.Threading.LockCookie" /> to compare to <paramref name="a" />.</param>
1085       <returns>
1086         <see langword="true" /> if <paramref name="a" /> is not equal to <paramref name="b" />; otherwise, <see langword="false" />.</returns>
1087     </member>
1088     <member name="T:System.Threading.LockRecursionException">
1089       <summary>The exception that is thrown when recursive entry into a lock is not compatible with the recursion policy for the lock.</summary>
1090     </member>
1091     <member name="M:System.Threading.LockRecursionException.#ctor">
1092       <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with a system-supplied message that describes the error.</summary>
1093     </member>
1094     <member name="M:System.Threading.LockRecursionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1095       <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with serialized data.</summary>
1096       <param name="info">The object that holds the serialized object data.</param>
1097       <param name="context">The contextual information about the source or destination.</param>
1098     </member>
1099     <member name="M:System.Threading.LockRecursionException.#ctor(System.String)">
1100       <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with a specified message that describes the error.</summary>
1101       <param name="message">The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.</param>
1102     </member>
1103     <member name="M:System.Threading.LockRecursionException.#ctor(System.String,System.Exception)">
1104       <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
1105       <param name="message">The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.</param>
1106       <param name="innerException">The exception that caused the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
1107     </member>
1108     <member name="T:System.Threading.LockRecursionPolicy">
1109       <summary>Specifies whether a lock can be entered multiple times by the same thread.</summary>
1110     </member>
1111     <member name="F:System.Threading.LockRecursionPolicy.NoRecursion">
1112       <summary>If a thread tries to enter a lock recursively, an exception is thrown. Some classes may allow certain recursions when this setting is in effect.</summary>
1113     </member>
1114     <member name="F:System.Threading.LockRecursionPolicy.SupportsRecursion">
1115       <summary>A thread can enter a lock recursively. Some classes may restrict this capability.</summary>
1116     </member>
1117     <member name="T:System.Threading.ManualResetEvent">
1118       <summary>Represents a thread synchronization event that, when signaled, must be reset manually. This class cannot be inherited.</summary>
1119     </member>
1120     <member name="M:System.Threading.ManualResetEvent.#ctor(System.Boolean)">
1121       <summary>Initializes a new instance of the <see cref="T:System.Threading.ManualResetEvent" /> class with a Boolean value indicating whether to set the initial state to signaled.</summary>
1122       <param name="initialState">
1123         <see langword="true" /> to set the initial state signaled; <see langword="false" /> to set the initial state to nonsignaled.</param>
1124     </member>
1125     <member name="T:System.Threading.ManualResetEventSlim">
1126       <summary>Represents a thread synchronization event that, when signaled, must be reset manually. This class is a lightweight alternative to <see cref="T:System.Threading.ManualResetEvent" />.</summary>
1127     </member>
1128     <member name="M:System.Threading.ManualResetEventSlim.#ctor">
1129       <summary>Initializes a new instance of the <see cref="T:System.Threading.ManualResetEventSlim" /> class with an initial state of nonsignaled.</summary>
1130     </member>
1131     <member name="M:System.Threading.ManualResetEventSlim.#ctor(System.Boolean)">
1132       <summary>Initializes a new instance of the <see cref="T:System.Threading.ManualResetEventSlim" /> class with a Boolean value indicating whether to set the initial state to signaled.</summary>
1133       <param name="initialState">true to set the initial state signaled; false to set the initial state to nonsignaled.</param>
1134     </member>
1135     <member name="M:System.Threading.ManualResetEventSlim.#ctor(System.Boolean,System.Int32)">
1136       <summary>Initializes a new instance of the <see cref="T:System.Threading.ManualResetEventSlim" /> class with a Boolean value indicating whether to set the initial state to signaled and a specified spin count.</summary>
1137       <param name="initialState">true to set the initial state to signaled; false to set the initial state to nonsignaled.</param>
1138       <param name="spinCount">The number of spin waits that will occur before falling back to a kernel-based wait operation.</param>
1139       <exception cref="T:System.ArgumentOutOfRangeException">
1140         <paramref name="spinCount" /> is less than 0 or greater than the maximum allowed value.</exception>
1141     </member>
1142     <member name="M:System.Threading.ManualResetEventSlim.Dispose">
1143       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.ManualResetEventSlim" /> class.</summary>
1144     </member>
1145     <member name="M:System.Threading.ManualResetEventSlim.Dispose(System.Boolean)">
1146       <summary>Releases the unmanaged resources used by the <see cref="T:System.Threading.ManualResetEventSlim" />, and optionally releases the managed resources.</summary>
1147       <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
1148     </member>
1149     <member name="M:System.Threading.ManualResetEventSlim.Reset">
1150       <summary>Sets the state of the event to nonsignaled, which causes threads to block.</summary>
1151       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
1152     </member>
1153     <member name="M:System.Threading.ManualResetEventSlim.Set">
1154       <summary>Sets the state of the event to signaled, which allows one or more threads waiting on the event to proceed.</summary>
1155     </member>
1156     <member name="M:System.Threading.ManualResetEventSlim.Wait">
1157       <summary>Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEventSlim" /> is set.</summary>
1158       <exception cref="T:System.InvalidOperationException">The maximum number of waiters has been exceeded.</exception>
1159       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
1160     </member>
1161     <member name="M:System.Threading.ManualResetEventSlim.Wait(System.Int32)">
1162       <summary>Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEventSlim" /> is set, using a 32-bit signed integer to measure the time interval.</summary>
1163       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely.</param>
1164       <exception cref="T:System.ArgumentOutOfRangeException">
1165         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
1166       <exception cref="T:System.InvalidOperationException">The maximum number of waiters has been exceeded.</exception>
1167       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
1168       <returns>
1169         <see langword="true" /> if the <see cref="T:System.Threading.ManualResetEventSlim" /> was set; otherwise, <see langword="false" />.</returns>
1170     </member>
1171     <member name="M:System.Threading.ManualResetEventSlim.Wait(System.Int32,System.Threading.CancellationToken)">
1172       <summary>Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEventSlim" /> is set, using a 32-bit signed integer to measure the time interval, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
1173       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely.</param>
1174       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
1175       <exception cref="T:System.ArgumentOutOfRangeException">
1176         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
1177       <exception cref="T:System.InvalidOperationException">The maximum number of waiters has been exceeded.</exception>
1178       <exception cref="T:System.ObjectDisposedException">The object has already been disposed or the <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has been disposed.</exception>
1179       <exception cref="T:System.OperationCanceledException">
1180         <paramref name="cancellationToken" /> was canceled.</exception>
1181       <returns>
1182         <see langword="true" /> if the <see cref="T:System.Threading.ManualResetEventSlim" /> was set; otherwise, <see langword="false" />.</returns>
1183     </member>
1184     <member name="M:System.Threading.ManualResetEventSlim.Wait(System.Threading.CancellationToken)">
1185       <summary>Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEventSlim" /> receives a signal, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
1186       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
1187       <exception cref="T:System.InvalidOperationException">The maximum number of waiters has been exceeded.</exception>
1188       <exception cref="T:System.OperationCanceledException">
1189         <paramref name="cancellationToken" /> was canceled.</exception>
1190       <exception cref="T:System.ObjectDisposedException">The object has already been disposed or the <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has been disposed.</exception>
1191       <exception cref="T:System.OperationCanceledException">
1192         <paramref name="cancellationToken" /> was
1193             canceled.</exception>
1194     </member>
1195     <member name="M:System.Threading.ManualResetEventSlim.Wait(System.TimeSpan)">
1196       <summary>Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEventSlim" /> is set, using a <see cref="T:System.TimeSpan" /> to measure the time interval.</summary>
1197       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
1198       <exception cref="T:System.ArgumentOutOfRangeException">
1199         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out.  
1200   
1201  -or-  
1202   
1203  The number of milliseconds in <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1204       <exception cref="T:System.InvalidOperationException">The maximum number of waiters has been exceeded.</exception>
1205       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
1206       <returns>
1207         <see langword="true" /> if the <see cref="T:System.Threading.ManualResetEventSlim" /> was set; otherwise, <see langword="false" />.</returns>
1208     </member>
1209     <member name="M:System.Threading.ManualResetEventSlim.Wait(System.TimeSpan,System.Threading.CancellationToken)">
1210       <summary>Blocks the current thread until the current <see cref="T:System.Threading.ManualResetEventSlim" /> is set, using a <see cref="T:System.TimeSpan" /> to measure the time interval, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
1211       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
1212       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
1213       <exception cref="T:System.ArgumentOutOfRangeException">
1214         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out.  
1215   
1216  -or-  
1217   
1218  The number of milliseconds in <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1219       <exception cref="T:System.InvalidOperationException">The maximum number of waiters has been exceeded.</exception>
1220       <exception cref="T:System.ObjectDisposedException">The object has already been disposed or the <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has been disposed.</exception>
1221       <exception cref="T:System.OperationCanceledException">
1222         <paramref name="cancellationToken" /> was canceled.</exception>
1223       <returns>
1224         <see langword="true" /> if the <see cref="T:System.Threading.ManualResetEventSlim" /> was set; otherwise, <see langword="false" />.</returns>
1225     </member>
1226     <member name="P:System.Threading.ManualResetEventSlim.IsSet">
1227       <summary>Gets whether the event is set.</summary>
1228       <returns>true if the event is set; otherwise, false.</returns>
1229     </member>
1230     <member name="P:System.Threading.ManualResetEventSlim.SpinCount">
1231       <summary>Gets the number of spin waits that will occur before falling back to a kernel-based wait operation.</summary>
1232       <returns>Returns the number of spin waits that will occur before falling back to a kernel-based wait operation.</returns>
1233     </member>
1234     <member name="P:System.Threading.ManualResetEventSlim.WaitHandle">
1235       <summary>Gets the underlying <see cref="T:System.Threading.WaitHandle" /> object for this <see cref="T:System.Threading.ManualResetEventSlim" />.</summary>
1236       <returns>The underlying <see cref="T:System.Threading.WaitHandle" /> event object for this <see cref="T:System.Threading.ManualResetEventSlim" />.</returns>
1237     </member>
1238     <member name="T:System.Threading.Monitor">
1239       <summary>Provides a mechanism that synchronizes access to objects.</summary>
1240     </member>
1241     <member name="M:System.Threading.Monitor.Enter(System.Object)">
1242       <summary>Acquires an exclusive lock on the specified object.</summary>
1243       <param name="obj">The object on which to acquire the monitor lock.</param>
1244       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1245     </member>
1246     <member name="M:System.Threading.Monitor.Enter(System.Object,System.Boolean@)">
1247       <summary>Acquires an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.</summary>
1248       <param name="obj">The object on which to wait.</param>
1249       <param name="lockTaken">The result of the attempt to acquire the lock, passed by reference. The input must be <see langword="false" />. The output is <see langword="true" /> if the lock is acquired; otherwise, the output is <see langword="false" />. The output is set even if an exception occurs during the attempt to acquire the lock.  
1250   
1251  Note   If no exception occurs, the output of this method is always <see langword="true" />.</param>
1252       <exception cref="T:System.ArgumentException">The input to <paramref name="lockTaken" /> is <see langword="true" />.</exception>
1253       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1254     </member>
1255     <member name="M:System.Threading.Monitor.Exit(System.Object)">
1256       <summary>Releases an exclusive lock on the specified object.</summary>
1257       <param name="obj">The object on which to release the lock.</param>
1258       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1259       <exception cref="T:System.Threading.SynchronizationLockException">The current thread does not own the lock for the specified object.</exception>
1260     </member>
1261     <member name="M:System.Threading.Monitor.IsEntered(System.Object)">
1262       <summary>Determines whether the current thread holds the lock on the specified object.</summary>
1263       <param name="obj">The object to test.</param>
1264       <exception cref="T:System.ArgumentNullException">
1265         <paramref name="obj" /> is <see langword="null" />.</exception>
1266       <returns>
1267         <see langword="true" /> if the current thread holds the lock on <paramref name="obj" />; otherwise, <see langword="false" />.</returns>
1268     </member>
1269     <member name="M:System.Threading.Monitor.Pulse(System.Object)">
1270       <summary>Notifies a thread in the waiting queue of a change in the locked object's state.</summary>
1271       <param name="obj">The object a thread is waiting for.</param>
1272       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1273       <exception cref="T:System.Threading.SynchronizationLockException">The calling thread does not own the lock for the specified object.</exception>
1274     </member>
1275     <member name="M:System.Threading.Monitor.PulseAll(System.Object)">
1276       <summary>Notifies all waiting threads of a change in the object's state.</summary>
1277       <param name="obj">The object that sends the pulse.</param>
1278       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1279       <exception cref="T:System.Threading.SynchronizationLockException">The calling thread does not own the lock for the specified object.</exception>
1280     </member>
1281     <member name="M:System.Threading.Monitor.TryEnter(System.Object)">
1282       <summary>Attempts to acquire an exclusive lock on the specified object.</summary>
1283       <param name="obj">The object on which to acquire the lock.</param>
1284       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1285       <returns>
1286         <see langword="true" /> if the current thread acquires the lock; otherwise, <see langword="false" />.</returns>
1287     </member>
1288     <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.Boolean@)">
1289       <summary>Attempts to acquire an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.</summary>
1290       <param name="obj">The object on which to acquire the lock.</param>
1291       <param name="lockTaken">The result of the attempt to acquire the lock, passed by reference. The input must be <see langword="false" />. The output is <see langword="true" /> if the lock is acquired; otherwise, the output is <see langword="false" />. The output is set even if an exception occurs during the attempt to acquire the lock.</param>
1292       <exception cref="T:System.ArgumentException">The input to <paramref name="lockTaken" /> is <see langword="true" />.</exception>
1293       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1294     </member>
1295     <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.Int32)">
1296       <summary>Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object.</summary>
1297       <param name="obj">The object on which to acquire the lock.</param>
1298       <param name="millisecondsTimeout">The number of milliseconds to wait for the lock.</param>
1299       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1300       <exception cref="T:System.ArgumentOutOfRangeException">
1301         <paramref name="millisecondsTimeout" /> is negative, and not equal to <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
1302       <returns>
1303         <see langword="true" /> if the current thread acquires the lock; otherwise, <see langword="false" />.</returns>
1304     </member>
1305     <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.Int32,System.Boolean@)">
1306       <summary>Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.</summary>
1307       <param name="obj">The object on which to acquire the lock.</param>
1308       <param name="millisecondsTimeout">The number of milliseconds to wait for the lock.</param>
1309       <param name="lockTaken">The result of the attempt to acquire the lock, passed by reference. The input must be <see langword="false" />. The output is <see langword="true" /> if the lock is acquired; otherwise, the output is <see langword="false" />. The output is set even if an exception occurs during the attempt to acquire the lock.</param>
1310       <exception cref="T:System.ArgumentException">The input to <paramref name="lockTaken" /> is <see langword="true" />.</exception>
1311       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1312       <exception cref="T:System.ArgumentOutOfRangeException">
1313         <paramref name="millisecondsTimeout" /> is negative, and not equal to <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
1314     </member>
1315     <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.TimeSpan)">
1316       <summary>Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object.</summary>
1317       <param name="obj">The object on which to acquire the lock.</param>
1318       <param name="timeout">A <see cref="T:System.TimeSpan" /> representing the amount of time to wait for the lock. A value of -1 millisecond specifies an infinite wait.</param>
1319       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1320       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="timeout" /> in milliseconds is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> (-1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1321       <returns>
1322         <see langword="true" /> if the current thread acquires the lock; otherwise, <see langword="false" />.</returns>
1323     </member>
1324     <member name="M:System.Threading.Monitor.TryEnter(System.Object,System.TimeSpan,System.Boolean@)">
1325       <summary>Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.</summary>
1326       <param name="obj">The object on which to acquire the lock.</param>
1327       <param name="timeout">The amount of time to wait for the lock. A value of -1 millisecond specifies an infinite wait.</param>
1328       <param name="lockTaken">The result of the attempt to acquire the lock, passed by reference. The input must be <see langword="false" />. The output is <see langword="true" /> if the lock is acquired; otherwise, the output is <see langword="false" />. The output is set even if an exception occurs during the attempt to acquire the lock.</param>
1329       <exception cref="T:System.ArgumentException">The input to <paramref name="lockTaken" /> is <see langword="true" />.</exception>
1330       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1331       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="timeout" /> in milliseconds is negative and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> (-1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1332     </member>
1333     <member name="M:System.Threading.Monitor.Wait(System.Object)">
1334       <summary>Releases the lock on an object and blocks the current thread until it reacquires the lock.</summary>
1335       <param name="obj">The object on which to wait.</param>
1336       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1337       <exception cref="T:System.Threading.SynchronizationLockException">The calling thread does not own the lock for the specified object.</exception>
1338       <exception cref="T:System.Threading.ThreadInterruptedException">The thread that invokes <see langword="Wait" /> is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method.</exception>
1339       <returns>
1340         <see langword="true" /> if the call returned because the caller reacquired the lock for the specified object. This method does not return if the lock is not reacquired.</returns>
1341     </member>
1342     <member name="M:System.Threading.Monitor.Wait(System.Object,System.Int32)">
1343       <summary>Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue.</summary>
1344       <param name="obj">The object on which to wait.</param>
1345       <param name="millisecondsTimeout">The number of milliseconds to wait before the thread enters the ready queue.</param>
1346       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1347       <exception cref="T:System.Threading.SynchronizationLockException">The calling thread does not own the lock for the specified object.</exception>
1348       <exception cref="T:System.Threading.ThreadInterruptedException">The thread that invokes <see langword="Wait" /> is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method.</exception>
1349       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="millisecondsTimeout" /> parameter is negative, and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
1350       <returns>
1351         <see langword="true" /> if the lock was reacquired before the specified time elapsed; <see langword="false" /> if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired.</returns>
1352     </member>
1353     <member name="M:System.Threading.Monitor.Wait(System.Object,System.Int32,System.Boolean)">
1354       <summary>Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. This method also specifies whether the synchronization domain for the context (if in a synchronized context) is exited before the wait and reacquired afterward.</summary>
1355       <param name="obj">The object on which to wait.</param>
1356       <param name="millisecondsTimeout">The number of milliseconds to wait before the thread enters the ready queue.</param>
1357       <param name="exitContext">
1358         <see langword="true" /> to exit and reacquire the synchronization domain for the context (if in a synchronized context) before the wait; otherwise, <see langword="false" />.</param>
1359       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1360       <exception cref="T:System.Threading.SynchronizationLockException">
1361         <see langword="Wait" /> is not invoked from within a synchronized block of code.</exception>
1362       <exception cref="T:System.Threading.ThreadInterruptedException">The thread that invokes <see langword="Wait" /> is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method.</exception>
1363       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="millisecondsTimeout" /> parameter is negative, and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
1364       <returns>
1365         <see langword="true" /> if the lock was reacquired before the specified time elapsed; <see langword="false" /> if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired.</returns>
1366     </member>
1367     <member name="M:System.Threading.Monitor.Wait(System.Object,System.TimeSpan)">
1368       <summary>Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue.</summary>
1369       <param name="obj">The object on which to wait.</param>
1370       <param name="timeout">A <see cref="T:System.TimeSpan" /> representing the amount of time to wait before the thread enters the ready queue.</param>
1371       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1372       <exception cref="T:System.Threading.SynchronizationLockException">The calling thread does not own the lock for the specified object.</exception>
1373       <exception cref="T:System.Threading.ThreadInterruptedException">The thread that invokes <see langword="Wait" /> is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method.</exception>
1374       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="timeout" /> parameter in milliseconds is negative and does not represent <see cref="F:System.Threading.Timeout.Infinite" /> (-1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1375       <returns>
1376         <see langword="true" /> if the lock was reacquired before the specified time elapsed; <see langword="false" /> if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired.</returns>
1377     </member>
1378     <member name="M:System.Threading.Monitor.Wait(System.Object,System.TimeSpan,System.Boolean)">
1379       <summary>Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. Optionally exits the synchronization domain for the synchronized context before the wait and reacquires the domain afterward.</summary>
1380       <param name="obj">The object on which to wait.</param>
1381       <param name="timeout">A <see cref="T:System.TimeSpan" /> representing the amount of time to wait before the thread enters the ready queue.</param>
1382       <param name="exitContext">
1383         <see langword="true" /> to exit and reacquire the synchronization domain for the context (if in a synchronized context) before the wait; otherwise, <see langword="false" />.</param>
1384       <exception cref="T:System.ArgumentNullException">The <paramref name="obj" /> parameter is <see langword="null" />.</exception>
1385       <exception cref="T:System.Threading.SynchronizationLockException">
1386         <see langword="Wait" /> is not invoked from within a synchronized block of code.</exception>
1387       <exception cref="T:System.Threading.ThreadInterruptedException">The thread that invokes Wait is later interrupted from the waiting state. This happens when another thread calls this thread's <see cref="M:System.Threading.Thread.Interrupt" /> method.</exception>
1388       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="timeout" /> parameter is negative and does not represent <see cref="F:System.Threading.Timeout.Infinite" /> (-1 millisecond), or is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1389       <returns>
1390         <see langword="true" /> if the lock was reacquired before the specified time elapsed; <see langword="false" /> if the lock was reacquired after the specified time elapsed. The method does not return until the lock is reacquired.</returns>
1391     </member>
1392     <member name="P:System.Threading.Monitor.LockContentionCount">
1393       <summary>Gets the number of times there was contention when trying to take the monitor's lock.</summary>
1394       <returns>The number of times there was contention when trying to take the monitor's lock.</returns>
1395     </member>
1396     <member name="T:System.Threading.Mutex">
1397       <summary>A synchronization primitive that can also be used for interprocess synchronization.</summary>
1398     </member>
1399     <member name="M:System.Threading.Mutex.#ctor">
1400       <summary>Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with default properties.</summary>
1401     </member>
1402     <member name="M:System.Threading.Mutex.#ctor(System.Boolean)">
1403       <summary>Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex.</summary>
1404       <param name="initiallyOwned">
1405         <see langword="true" /> to give the calling thread initial ownership of the mutex; otherwise, <see langword="false" />.</param>
1406     </member>
1407     <member name="M:System.Threading.Mutex.#ctor(System.Boolean,System.String)">
1408       <summary>Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex, and a string that is the name of the mutex.</summary>
1409       <param name="initiallyOwned">
1410         <see langword="true" /> to give the calling thread initial ownership of the named system mutex if the named system mutex is created as a result of this call; otherwise, <see langword="false" />.</param>
1411       <param name="name">The name, if the synchronization object is to be shared with other processes; otherwise, <see langword="null" /> or an empty string. The name is case-sensitive.</param>
1412       <exception cref="T:System.UnauthorizedAccessException">The named mutex exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.MutexRights.FullControl" />.</exception>
1413       <exception cref="T:System.IO.IOException">
1414         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
1415
1416 -or-
1417
1418 There was some other error. The HResult property may provide more information.</exception>
1419       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
1420       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1421       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name.</exception>
1422       <exception cref="T:System.ArgumentException">
1423           .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1424     </member>
1425     <member name="M:System.Threading.Mutex.#ctor(System.Boolean,System.String,System.Boolean@)">
1426       <summary>Initializes a new instance of the <see cref="T:System.Threading.Mutex" /> class with a Boolean value that indicates whether the calling thread should have initial ownership of the mutex, a string that is the name of the mutex, and a Boolean value that, when the method returns, indicates whether the calling thread was granted initial ownership of the mutex.</summary>
1427       <param name="initiallyOwned">
1428         <see langword="true" /> to give the calling thread initial ownership of the named system mutex if the named system mutex is created as a result of this call; otherwise, <see langword="false" />.</param>
1429       <param name="name">The name, if the synchronization object is to be shared with other processes; otherwise, <see langword="null" /> or an empty string. The name is case-sensitive.</param>
1430       <param name="createdNew">When this method returns, contains a Boolean that is <see langword="true" /> if a local mutex was created (that is, if <paramref name="name" /> is <see langword="null" /> or an empty string) or if the specified named system mutex was created; <see langword="false" /> if the specified named system mutex already existed. This parameter is passed uninitialized.</param>
1431       <exception cref="T:System.UnauthorizedAccessException">The named mutex exists and has access control security, but the user does not have <see cref="F:System.Security.AccessControl.MutexRights.FullControl" />.</exception>
1432       <exception cref="T:System.IO.IOException">
1433         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
1434
1435 -or-
1436
1437 There was some other error. The HResult property may provide more information.</exception>
1438       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
1439       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1440       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name.</exception>
1441       <exception cref="T:System.ArgumentException">
1442           .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1443     </member>
1444     <member name="M:System.Threading.Mutex.OpenExisting(System.String)">
1445       <summary>Opens the specified named mutex, if it already exists.</summary>
1446       <param name="name">The name of the synchronization object to be shared with other processes. The name is case-sensitive.</param>
1447       <exception cref="T:System.ArgumentException">
1448         <paramref name="name" /> is an empty string.
1449
1450 -or-
1451
1452 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1453       <exception cref="T:System.ArgumentNullException">
1454         <paramref name="name" /> is <see langword="null" />.</exception>
1455       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name. In some cases, this exception may be thrown for invalid names.</exception>
1456       <exception cref="T:System.IO.IOException">
1457         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
1458
1459 -or-
1460
1461 There was some other error. The HResult property may provide more information.</exception>
1462       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
1463       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1464       <exception cref="T:System.UnauthorizedAccessException">The named mutex exists, but the user does not have the security access required to use it.</exception>
1465       <returns>An object that represents the named system mutex.</returns>
1466     </member>
1467     <member name="M:System.Threading.Mutex.ReleaseMutex">
1468       <summary>Releases the <see cref="T:System.Threading.Mutex" /> once.</summary>
1469       <exception cref="T:System.ApplicationException">The calling thread does not own the mutex.</exception>
1470       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
1471     </member>
1472     <member name="M:System.Threading.Mutex.TryOpenExisting(System.String,System.Threading.Mutex@)">
1473       <summary>Opens the specified named mutex, if it already exists, and returns a value that indicates whether the operation succeeded.</summary>
1474       <param name="name">The name of the synchronization object to be shared with other processes. The name is case-sensitive.</param>
1475       <param name="result">When this method returns, contains a <see cref="T:System.Threading.Mutex" /> object that represents the named mutex if the call succeeded, or <see langword="null" /> if the call failed. This parameter is treated as uninitialized.</param>
1476       <exception cref="T:System.ArgumentException">
1477         <paramref name="name" /> is an empty string.
1478
1479 -or-
1480
1481 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1482       <exception cref="T:System.ArgumentNullException">
1483         <paramref name="name" /> is <see langword="null" />.</exception>
1484       <exception cref="T:System.IO.IOException">
1485         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive. For some invalid names, the method may return <see langword="false" /> instead.
1486
1487 -or-
1488
1489 There was some other error. The HResult property may provide more information.</exception>
1490       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1491       <exception cref="T:System.UnauthorizedAccessException">The named mutex exists, but the user does not have the security access required to use it.</exception>
1492       <returns>
1493         <see langword="true" /> if the named mutex was opened successfully; otherwise, <see langword="false" />. In some cases, <see langword="false" /> may be returned for invalid names.</returns>
1494     </member>
1495     <member name="T:System.Threading.ReaderWriterLock">
1496       <summary>Defines a lock that supports single writers and multiple readers.</summary>
1497     </member>
1498     <member name="M:System.Threading.ReaderWriterLock.#ctor">
1499       <summary>Initializes a new instance of the <see cref="T:System.Threading.ReaderWriterLock" /> class.</summary>
1500     </member>
1501     <member name="M:System.Threading.ReaderWriterLock.AcquireReaderLock(System.Int32)">
1502       <summary>Acquires a reader lock, using an <see cref="T:System.Int32" /> value for the time-out.</summary>
1503       <param name="millisecondsTimeout">The time-out in milliseconds.</param>
1504       <exception cref="T:System.ApplicationException">
1505         <paramref name="millisecondsTimeout" /> expires before the lock request is granted.</exception>
1506     </member>
1507     <member name="M:System.Threading.ReaderWriterLock.AcquireReaderLock(System.TimeSpan)">
1508       <summary>Acquires a reader lock, using a <see cref="T:System.TimeSpan" /> value for the time-out.</summary>
1509       <param name="timeout">A <see langword="TimeSpan" /> specifying the time-out period.</param>
1510       <exception cref="T:System.ApplicationException">
1511         <paramref name="timeout" /> expires before the lock request is granted.</exception>
1512       <exception cref="T:System.ArgumentOutOfRangeException">
1513         <paramref name="timeout" /> specifies a negative value other than -1 milliseconds.</exception>
1514     </member>
1515     <member name="M:System.Threading.ReaderWriterLock.AcquireWriterLock(System.Int32)">
1516       <summary>Acquires the writer lock, using an <see cref="T:System.Int32" /> value for the time-out.</summary>
1517       <param name="millisecondsTimeout">The time-out in milliseconds.</param>
1518       <exception cref="T:System.ApplicationException">
1519         <paramref name="timeout" /> expires before the lock request is granted.</exception>
1520     </member>
1521     <member name="M:System.Threading.ReaderWriterLock.AcquireWriterLock(System.TimeSpan)">
1522       <summary>Acquires the writer lock, using a <see cref="T:System.TimeSpan" /> value for the time-out.</summary>
1523       <param name="timeout">The <see langword="TimeSpan" /> specifying the time-out period.</param>
1524       <exception cref="T:System.ApplicationException">
1525         <paramref name="timeout" /> expires before the lock request is granted.</exception>
1526       <exception cref="T:System.ArgumentOutOfRangeException">
1527         <paramref name="timeout" /> specifies a negative value other than -1 milliseconds.</exception>
1528     </member>
1529     <member name="M:System.Threading.ReaderWriterLock.AnyWritersSince(System.Int32)">
1530       <summary>Indicates whether the writer lock has been granted to any thread since the sequence number was obtained.</summary>
1531       <param name="seqNum">The sequence number.</param>
1532       <returns>
1533         <see langword="true" /> if the writer lock has been granted to any thread since the sequence number was obtained; otherwise, <see langword="false" />.</returns>
1534     </member>
1535     <member name="M:System.Threading.ReaderWriterLock.DowngradeFromWriterLock(System.Threading.LockCookie@)">
1536       <summary>Restores the lock status of the thread to what it was before <see cref="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.Int32)" /> was called.</summary>
1537       <param name="lockCookie">A <see cref="T:System.Threading.LockCookie" /> returned by <see cref="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.Int32)" />.</param>
1538       <exception cref="T:System.ApplicationException">The thread does not have the writer lock.</exception>
1539       <exception cref="T:System.NullReferenceException">The address of <paramref name="lockCookie" /> is a null pointer.</exception>
1540     </member>
1541     <member name="M:System.Threading.ReaderWriterLock.ReleaseLock">
1542       <summary>Releases the lock, regardless of the number of times the thread acquired the lock.</summary>
1543       <returns>A <see cref="T:System.Threading.LockCookie" /> value representing the released lock.</returns>
1544     </member>
1545     <member name="M:System.Threading.ReaderWriterLock.ReleaseReaderLock">
1546       <summary>Decrements the lock count.</summary>
1547       <exception cref="T:System.ApplicationException">The thread does not have any reader or writer locks.</exception>
1548     </member>
1549     <member name="M:System.Threading.ReaderWriterLock.ReleaseWriterLock">
1550       <summary>Decrements the lock count on the writer lock.</summary>
1551       <exception cref="T:System.ApplicationException">The thread does not have the writer lock.</exception>
1552     </member>
1553     <member name="M:System.Threading.ReaderWriterLock.RestoreLock(System.Threading.LockCookie@)">
1554       <summary>Restores the lock status of the thread to what it was before calling <see cref="M:System.Threading.ReaderWriterLock.ReleaseLock" />.</summary>
1555       <param name="lockCookie">A <see cref="T:System.Threading.LockCookie" /> returned by <see cref="M:System.Threading.ReaderWriterLock.ReleaseLock" />.</param>
1556       <exception cref="T:System.NullReferenceException">The address of <paramref name="lockCookie" /> is a null pointer.</exception>
1557     </member>
1558     <member name="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.Int32)">
1559       <summary>Upgrades a reader lock to the writer lock, using an <see cref="T:System.Int32" /> value for the time-out.</summary>
1560       <param name="millisecondsTimeout">The time-out in milliseconds.</param>
1561       <exception cref="T:System.ApplicationException">
1562         <paramref name="millisecondsTimeout" /> expires before the lock request is granted.</exception>
1563       <returns>A <see cref="T:System.Threading.LockCookie" /> value.</returns>
1564     </member>
1565     <member name="M:System.Threading.ReaderWriterLock.UpgradeToWriterLock(System.TimeSpan)">
1566       <summary>Upgrades a reader lock to the writer lock, using a <see langword="TimeSpan" /> value for the time-out.</summary>
1567       <param name="timeout">The <see langword="TimeSpan" /> specifying the time-out period.</param>
1568       <exception cref="T:System.ApplicationException">
1569         <paramref name="timeout" /> expires before the lock request is granted.</exception>
1570       <exception cref="T:System.ArgumentOutOfRangeException">
1571         <paramref name="timeout" /> specifies a negative value other than -1 milliseconds.</exception>
1572       <returns>A <see cref="T:System.Threading.LockCookie" /> value.</returns>
1573     </member>
1574     <member name="P:System.Threading.ReaderWriterLock.IsReaderLockHeld">
1575       <summary>Gets a value indicating whether the current thread holds a reader lock.</summary>
1576       <returns>
1577         <see langword="true" /> if the current thread holds a reader lock; otherwise, <see langword="false" />.</returns>
1578     </member>
1579     <member name="P:System.Threading.ReaderWriterLock.IsWriterLockHeld">
1580       <summary>Gets a value indicating whether the current thread holds the writer lock.</summary>
1581       <returns>
1582         <see langword="true" /> if the current thread holds the writer lock; otherwise, <see langword="false" />.</returns>
1583     </member>
1584     <member name="P:System.Threading.ReaderWriterLock.WriterSeqNum">
1585       <summary>Gets the current sequence number.</summary>
1586       <returns>The current sequence number.</returns>
1587     </member>
1588     <member name="T:System.Threading.ReaderWriterLockSlim">
1589       <summary>Represents a lock that is used to manage access to a resource, allowing multiple threads for reading or exclusive access for writing.</summary>
1590     </member>
1591     <member name="M:System.Threading.ReaderWriterLockSlim.#ctor">
1592       <summary>Initializes a new instance of the <see cref="T:System.Threading.ReaderWriterLockSlim" /> class with default property values.</summary>
1593     </member>
1594     <member name="M:System.Threading.ReaderWriterLockSlim.#ctor(System.Threading.LockRecursionPolicy)">
1595       <summary>Initializes a new instance of the <see cref="T:System.Threading.ReaderWriterLockSlim" /> class, specifying the lock recursion policy.</summary>
1596       <param name="recursionPolicy">One of the enumeration values that specifies the lock recursion policy.</param>
1597     </member>
1598     <member name="M:System.Threading.ReaderWriterLockSlim.Dispose">
1599       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.ReaderWriterLockSlim" /> class.</summary>
1600       <exception cref="T:System.Threading.SynchronizationLockException">
1601         <see cref="P:System.Threading.ReaderWriterLockSlim.WaitingReadCount" /> is greater than zero.  
1602   
1603  -or-  
1604   
1605  <see cref="P:System.Threading.ReaderWriterLockSlim.WaitingUpgradeCount" /> is greater than zero.  
1606   
1607  -or-  
1608   
1609  <see cref="P:System.Threading.ReaderWriterLockSlim.WaitingWriteCount" /> is greater than zero.</exception>
1610     </member>
1611     <member name="M:System.Threading.ReaderWriterLockSlim.EnterReadLock">
1612       <summary>Tries to enter the lock in read mode.</summary>
1613       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" />, and the current thread has attempted to acquire the read lock when it already holds the read lock.  
1614   
1615  -or-  
1616   
1617  The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" />, and the current thread has attempted to acquire the read lock when it already holds the write lock.  
1618   
1619  -or-  
1620   
1621  The recursion number would exceed the capacity of the counter. This limit is so large that applications should never encounter this exception.</exception>
1622       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1623     </member>
1624     <member name="M:System.Threading.ReaderWriterLockSlim.EnterUpgradeableReadLock">
1625       <summary>Tries to enter the lock in upgradeable mode.</summary>
1626       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock in any mode.  
1627   
1628  -or-  
1629   
1630  The current thread has entered read mode, so trying to enter upgradeable mode would create the possibility of a deadlock.  
1631   
1632  -or-  
1633   
1634  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1635       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1636     </member>
1637     <member name="M:System.Threading.ReaderWriterLockSlim.EnterWriteLock">
1638       <summary>Tries to enter the lock in write mode.</summary>
1639       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock in any mode.  
1640   
1641  -or-  
1642   
1643  The current thread has entered read mode and doesn't already own a write lock, so trying to enter the lock in write mode would create the possibility of a deadlock.  
1644   
1645  -or-  
1646   
1647  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1648       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1649     </member>
1650     <member name="M:System.Threading.ReaderWriterLockSlim.ExitReadLock">
1651       <summary>Reduces the recursion count for read mode, and exits read mode if the resulting count is 0 (zero).</summary>
1652       <exception cref="T:System.Threading.SynchronizationLockException">The current thread has not entered the lock in read mode.</exception>
1653     </member>
1654     <member name="M:System.Threading.ReaderWriterLockSlim.ExitUpgradeableReadLock">
1655       <summary>Reduces the recursion count for upgradeable mode, and exits upgradeable mode if the resulting count is 0 (zero).</summary>
1656       <exception cref="T:System.Threading.SynchronizationLockException">The current thread has not entered the lock in upgradeable mode.</exception>
1657     </member>
1658     <member name="M:System.Threading.ReaderWriterLockSlim.ExitWriteLock">
1659       <summary>Reduces the recursion count for write mode, and exits write mode if the resulting count is 0 (zero).</summary>
1660       <exception cref="T:System.Threading.SynchronizationLockException">The current thread has not entered the lock in write mode.</exception>
1661     </member>
1662     <member name="M:System.Threading.ReaderWriterLockSlim.TryEnterReadLock(System.Int32)">
1663       <summary>Tries to enter the lock in read mode, with an optional integer time-out.</summary>
1664       <param name="millisecondsTimeout">The number of milliseconds to wait, or -1 (<see cref="F:System.Threading.Timeout.Infinite" />) to wait indefinitely.</param>
1665       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock.  
1666   
1667  -or-  
1668   
1669  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1670       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="millisecondsTimeout" /> is negative, but it is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> (-1), which is the only negative value allowed.</exception>
1671       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1672       <returns>
1673         <see langword="true" /> if the calling thread entered read mode, otherwise, <see langword="false" />.</returns>
1674     </member>
1675     <member name="M:System.Threading.ReaderWriterLockSlim.TryEnterReadLock(System.TimeSpan)">
1676       <summary>Tries to enter the lock in read mode, with an optional time-out.</summary>
1677       <param name="timeout">The interval to wait, or -1 milliseconds to wait indefinitely.</param>
1678       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock.  
1679   
1680  -or-  
1681   
1682  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1683       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="timeout" /> is negative, but it is not equal to -1 milliseconds, which is the only negative value allowed.  
1684   
1685  -or-  
1686   
1687  The value of <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" /> milliseconds.</exception>
1688       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1689       <returns>
1690         <see langword="true" /> if the calling thread entered read mode, otherwise, <see langword="false" />.</returns>
1691     </member>
1692     <member name="M:System.Threading.ReaderWriterLockSlim.TryEnterUpgradeableReadLock(System.Int32)">
1693       <summary>Tries to enter the lock in upgradeable mode, with an optional time-out.</summary>
1694       <param name="millisecondsTimeout">The number of milliseconds to wait, or -1 (<see cref="F:System.Threading.Timeout.Infinite" />) to wait indefinitely.</param>
1695       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock.  
1696   
1697  -or-  
1698   
1699  The current thread initially entered the lock in read mode, and therefore trying to enter upgradeable mode would create the possibility of a deadlock.  
1700   
1701  -or-  
1702   
1703  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1704       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="millisecondsTimeout" /> is negative, but it is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> (-1), which is the only negative value allowed.</exception>
1705       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1706       <returns>
1707         <see langword="true" /> if the calling thread entered upgradeable mode, otherwise, <see langword="false" />.</returns>
1708     </member>
1709     <member name="M:System.Threading.ReaderWriterLockSlim.TryEnterUpgradeableReadLock(System.TimeSpan)">
1710       <summary>Tries to enter the lock in upgradeable mode, with an optional time-out.</summary>
1711       <param name="timeout">The interval to wait, or -1 milliseconds to wait indefinitely.</param>
1712       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock.  
1713   
1714  -or-  
1715   
1716  The current thread initially entered the lock in read mode, and therefore trying to enter upgradeable mode would create the possibility of a deadlock.  
1717   
1718  -or-  
1719   
1720  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1721       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="timeout" /> is negative, but it is not equal to -1 milliseconds, which is the only negative value allowed.  
1722   
1723  -or-  
1724   
1725  The value of <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" /> milliseconds.</exception>
1726       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1727       <returns>
1728         <see langword="true" /> if the calling thread entered upgradeable mode, otherwise, <see langword="false" />.</returns>
1729     </member>
1730     <member name="M:System.Threading.ReaderWriterLockSlim.TryEnterWriteLock(System.Int32)">
1731       <summary>Tries to enter the lock in write mode, with an optional time-out.</summary>
1732       <param name="millisecondsTimeout">The number of milliseconds to wait, or -1 (<see cref="F:System.Threading.Timeout.Infinite" />) to wait indefinitely.</param>
1733       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock.  
1734   
1735  -or-  
1736   
1737  The current thread initially entered the lock in read mode, and therefore trying to enter write mode would create the possibility of a deadlock.  
1738   
1739  -or-  
1740   
1741  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1742       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="millisecondsTimeout" /> is negative, but it is not equal to <see cref="F:System.Threading.Timeout.Infinite" /> (-1), which is the only negative value allowed.</exception>
1743       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1744       <returns>
1745         <see langword="true" /> if the calling thread entered write mode, otherwise, <see langword="false" />.</returns>
1746     </member>
1747     <member name="M:System.Threading.ReaderWriterLockSlim.TryEnterWriteLock(System.TimeSpan)">
1748       <summary>Tries to enter the lock in write mode, with an optional time-out.</summary>
1749       <param name="timeout">The interval to wait, or -1 milliseconds to wait indefinitely.</param>
1750       <exception cref="T:System.Threading.LockRecursionException">The <see cref="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy" /> property is <see cref="F:System.Threading.LockRecursionPolicy.NoRecursion" /> and the current thread has already entered the lock.  
1751   
1752  -or-  
1753   
1754  The current thread initially entered the lock in read mode, and therefore trying to enter write mode would create the possibility of a deadlock.  
1755   
1756  -or-  
1757   
1758  The recursion number would exceed the capacity of the counter. The limit is so large that applications should never encounter it.</exception>
1759       <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="timeout" /> is negative, but it is not equal to -1 milliseconds, which is the only negative value allowed.  
1760   
1761  -or-  
1762   
1763  The value of <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" /> milliseconds.</exception>
1764       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ReaderWriterLockSlim" /> object has been disposed.</exception>
1765       <returns>
1766         <see langword="true" /> if the calling thread entered write mode, otherwise, <see langword="false" />.</returns>
1767     </member>
1768     <member name="P:System.Threading.ReaderWriterLockSlim.CurrentReadCount">
1769       <summary>Gets the total number of unique threads that have entered the lock in read mode.</summary>
1770       <returns>The number of unique threads that have entered the lock in read mode.</returns>
1771     </member>
1772     <member name="P:System.Threading.ReaderWriterLockSlim.IsReadLockHeld">
1773       <summary>Gets a value that indicates whether the current thread has entered the lock in read mode.</summary>
1774       <returns>
1775         <see langword="true" /> if the current thread has entered read mode; otherwise, <see langword="false" />.</returns>
1776     </member>
1777     <member name="P:System.Threading.ReaderWriterLockSlim.IsUpgradeableReadLockHeld">
1778       <summary>Gets a value that indicates whether the current thread has entered the lock in upgradeable mode.</summary>
1779       <returns>
1780         <see langword="true" /> if the current thread has entered upgradeable mode; otherwise, <see langword="false" />.</returns>
1781     </member>
1782     <member name="P:System.Threading.ReaderWriterLockSlim.IsWriteLockHeld">
1783       <summary>Gets a value that indicates whether the current thread has entered the lock in write mode.</summary>
1784       <returns>
1785         <see langword="true" /> if the current thread has entered write mode; otherwise, <see langword="false" />.</returns>
1786     </member>
1787     <member name="P:System.Threading.ReaderWriterLockSlim.RecursionPolicy">
1788       <summary>Gets a value that indicates the recursion policy for the current <see cref="T:System.Threading.ReaderWriterLockSlim" /> object.</summary>
1789       <returns>One of the enumeration values that specifies the lock recursion policy.</returns>
1790     </member>
1791     <member name="P:System.Threading.ReaderWriterLockSlim.RecursiveReadCount">
1792       <summary>Gets the number of times the current thread has entered the lock in read mode, as an indication of recursion.</summary>
1793       <returns>0 (zero) if the current thread has not entered read mode, 1 if the thread has entered read mode but has not entered it recursively, or n if the thread has entered the lock recursively n - 1 times.</returns>
1794     </member>
1795     <member name="P:System.Threading.ReaderWriterLockSlim.RecursiveUpgradeCount">
1796       <summary>Gets the number of times the current thread has entered the lock in upgradeable mode, as an indication of recursion.</summary>
1797       <returns>0 if the current thread has not entered upgradeable mode, 1 if the thread has entered upgradeable mode but has not entered it recursively, or n if the thread has entered upgradeable mode recursively n - 1 times.</returns>
1798     </member>
1799     <member name="P:System.Threading.ReaderWriterLockSlim.RecursiveWriteCount">
1800       <summary>Gets the number of times the current thread has entered the lock in write mode, as an indication of recursion.</summary>
1801       <returns>0 if the current thread has not entered write mode, 1 if the thread has entered write mode but has not entered it recursively, or n if the thread has entered write mode recursively n - 1 times.</returns>
1802     </member>
1803     <member name="P:System.Threading.ReaderWriterLockSlim.WaitingReadCount">
1804       <summary>Gets the total number of threads that are waiting to enter the lock in read mode.</summary>
1805       <returns>The total number of threads that are waiting to enter read mode.</returns>
1806     </member>
1807     <member name="P:System.Threading.ReaderWriterLockSlim.WaitingUpgradeCount">
1808       <summary>Gets the total number of threads that are waiting to enter the lock in upgradeable mode.</summary>
1809       <returns>The total number of threads that are waiting to enter upgradeable mode.</returns>
1810     </member>
1811     <member name="P:System.Threading.ReaderWriterLockSlim.WaitingWriteCount">
1812       <summary>Gets the total number of threads that are waiting to enter the lock in write mode.</summary>
1813       <returns>The total number of threads that are waiting to enter write mode.</returns>
1814     </member>
1815     <member name="T:System.Threading.Semaphore">
1816       <summary>Limits the number of threads that can access a resource or pool of resources concurrently.</summary>
1817     </member>
1818     <member name="M:System.Threading.Semaphore.#ctor(System.Int32,System.Int32)">
1819       <summary>Initializes a new instance of the <see cref="T:System.Threading.Semaphore" /> class, specifying the initial number of entries and the maximum number of concurrent entries.</summary>
1820       <param name="initialCount">The initial number of requests for the semaphore that can be granted concurrently.</param>
1821       <param name="maximumCount">The maximum number of requests for the semaphore that can be granted concurrently.</param>
1822       <exception cref="T:System.ArgumentException">
1823         <paramref name="initialCount" /> is greater than <paramref name="maximumCount" />.</exception>
1824       <exception cref="T:System.ArgumentOutOfRangeException">
1825         <paramref name="maximumCount" /> is less than 1.  
1826   
1827  -or-  
1828   
1829  <paramref name="initialCount" /> is less than 0.</exception>
1830     </member>
1831     <member name="M:System.Threading.Semaphore.#ctor(System.Int32,System.Int32,System.String)">
1832       <summary>Initializes a new instance of the <see cref="T:System.Threading.Semaphore" /> class, specifying the initial number of entries and the maximum number of concurrent entries, and optionally specifying the name of a system semaphore object.</summary>
1833       <param name="initialCount">The initial number of requests for the semaphore that can be granted concurrently.</param>
1834       <param name="maximumCount">The maximum number of requests for the semaphore that can be granted concurrently.</param>
1835       <param name="name">The name, if the synchronization object is to be shared with other processes; otherwise, <see langword="null" /> or an empty string. The name is case-sensitive.</param>
1836       <exception cref="T:System.ArgumentException">
1837         <paramref name="initialCount" /> is greater than <paramref name="maximumCount" />.
1838
1839 -or-
1840
1841 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1842       <exception cref="T:System.ArgumentOutOfRangeException">
1843         <paramref name="maximumCount" /> is less than 1.  
1844   
1845  -or-  
1846   
1847  <paramref name="initialCount" /> is less than 0.</exception>
1848       <exception cref="T:System.IO.IOException">
1849         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
1850
1851 -or-
1852
1853 There was some other error. The HResult property may provide more information.</exception>
1854       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
1855       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1856       <exception cref="T:System.UnauthorizedAccessException">The named semaphore exists and has access control security, and the user does not have <see cref="F:System.Security.AccessControl.SemaphoreRights.FullControl" />.</exception>
1857       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name.</exception>
1858     </member>
1859     <member name="M:System.Threading.Semaphore.#ctor(System.Int32,System.Int32,System.String,System.Boolean@)">
1860       <summary>Initializes a new instance of the <see cref="T:System.Threading.Semaphore" /> class, specifying the initial number of entries and the maximum number of concurrent entries, optionally specifying the name of a system semaphore object, and specifying a variable that receives a value indicating whether a new system semaphore was created.</summary>
1861       <param name="initialCount">The initial number of requests for the semaphore that can be satisfied concurrently.</param>
1862       <param name="maximumCount">The maximum number of requests for the semaphore that can be satisfied concurrently.</param>
1863       <param name="name">The name, if the synchronization object is to be shared with other processes; otherwise, <see langword="null" /> or an empty string. The name is case-sensitive.</param>
1864       <param name="createdNew">When this method returns, contains <see langword="true" /> if a local semaphore was created (that is, if <paramref name="name" /> is <see langword="null" /> or an empty string) or if the specified named system semaphore was created; <see langword="false" /> if the specified named system semaphore already existed. This parameter is passed uninitialized.</param>
1865       <exception cref="T:System.ArgumentException">
1866         <paramref name="initialCount" /> is greater than <paramref name="maximumCount" />.
1867
1868 -or-
1869
1870 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1871       <exception cref="T:System.ArgumentOutOfRangeException">
1872         <paramref name="maximumCount" /> is less than 1.  
1873   
1874  -or-  
1875   
1876  <paramref name="initialCount" /> is less than 0.</exception>
1877       <exception cref="T:System.IO.IOException">
1878         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
1879
1880 -or-
1881
1882 There was some other error. The HResult property may provide more information.</exception>
1883       <exception cref="T:System.IO.DirectoryNotFoundException">Windows only: <paramref name="name" /> specified an unknown namespace. See Object Names for more information.</exception>
1884       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1885       <exception cref="T:System.UnauthorizedAccessException">The named semaphore exists and has access control security, and the user does not have <see cref="F:System.Security.AccessControl.SemaphoreRights.FullControl" />.</exception>
1886       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name.</exception>
1887     </member>
1888     <member name="M:System.Threading.Semaphore.OpenExisting(System.String)">
1889       <summary>Opens the specified named semaphore, if it already exists.</summary>
1890       <param name="name">The name of the synchronization object to be shared with other processes. The name is case-sensitive.</param>
1891       <exception cref="T:System.ArgumentException">
1892         <paramref name="name" /> is an empty string.
1893
1894 -or-
1895
1896 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1897       <exception cref="T:System.ArgumentNullException">
1898         <paramref name="name" /> is <see langword="null" />.</exception>
1899       <exception cref="T:System.Threading.WaitHandleCannotBeOpenedException">A synchronization object with the provided <paramref name="name" /> cannot be created. A synchronization object of a different type might have the same name. In some cases, this exception may be thrown for invalid names.</exception>
1900       <exception cref="T:System.IO.IOException">
1901         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive.
1902
1903 -or-
1904
1905 There was some other error. The HResult property may provide more information.</exception>
1906       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1907       <exception cref="T:System.UnauthorizedAccessException">The named semaphore exists, but the user does not have the security access required to use it.</exception>
1908       <returns>An object that represents the named system semaphore.</returns>
1909     </member>
1910     <member name="M:System.Threading.Semaphore.Release">
1911       <summary>Exits the semaphore and returns the previous count.</summary>
1912       <exception cref="T:System.Threading.SemaphoreFullException">The semaphore count is already at the maximum value.</exception>
1913       <exception cref="T:System.IO.IOException">A Win32 error occurred with a named semaphore.</exception>
1914       <exception cref="T:System.UnauthorizedAccessException">The current semaphore represents a named system semaphore, but the user does not have <see cref="F:System.Security.AccessControl.SemaphoreRights.Modify" />.  
1915   
1916  -or-  
1917   
1918  The current semaphore represents a named system semaphore, but it was not opened with <see cref="F:System.Security.AccessControl.SemaphoreRights.Modify" />.</exception>
1919       <returns>The count on the semaphore before the <see cref="Overload:System.Threading.Semaphore.Release" /> method was called.</returns>
1920     </member>
1921     <member name="M:System.Threading.Semaphore.Release(System.Int32)">
1922       <summary>Exits the semaphore a specified number of times and returns the previous count.</summary>
1923       <param name="releaseCount">The number of times to exit the semaphore.</param>
1924       <exception cref="T:System.ArgumentOutOfRangeException">
1925         <paramref name="releaseCount" /> is less than 1.</exception>
1926       <exception cref="T:System.Threading.SemaphoreFullException">The semaphore count is already at the maximum value.</exception>
1927       <exception cref="T:System.IO.IOException">A Win32 error occurred with a named semaphore.</exception>
1928       <exception cref="T:System.UnauthorizedAccessException">The current semaphore represents a named system semaphore, but the user does not have <see cref="F:System.Security.AccessControl.SemaphoreRights.Modify" /> rights.  
1929   
1930  -or-  
1931   
1932  The current semaphore represents a named system semaphore, but it was not opened with <see cref="F:System.Security.AccessControl.SemaphoreRights.Modify" /> rights.</exception>
1933       <returns>The count on the semaphore before the <see cref="Overload:System.Threading.Semaphore.Release" /> method was called.</returns>
1934     </member>
1935     <member name="M:System.Threading.Semaphore.TryOpenExisting(System.String,System.Threading.Semaphore@)">
1936       <summary>Opens the specified named semaphore, if it already exists, and returns a value that indicates whether the operation succeeded.</summary>
1937       <param name="name">The name of the synchronization object to be shared with other processes. The name is case-sensitive.</param>
1938       <param name="result">When this method returns, contains a <see cref="T:System.Threading.Semaphore" /> object that represents the named semaphore if the call succeeded, or <see langword="null" /> if the call failed. This parameter is treated as uninitialized.</param>
1939       <exception cref="T:System.ArgumentException">
1940         <paramref name="name" /> is an empty string.
1941
1942 -or-
1943
1944 .NET Framework only: <paramref name="name" /> is longer than MAX_PATH (260 characters).</exception>
1945       <exception cref="T:System.ArgumentNullException">
1946         <paramref name="name" /> is <see langword="null" />.</exception>
1947       <exception cref="T:System.IO.IOException">
1948         <paramref name="name" /> is invalid. This can be for various reasons, including some restrictions that may be placed by the operating system, such as an unknown prefix or invalid characters. Note that the name and common prefixes "Global" and "Local" are case-sensitive. For some invalid names, the method may return <see langword="false" /> instead.
1949
1950 -or-
1951
1952 There was some other error. The HResult property may provide more information.</exception>
1953       <exception cref="T:System.IO.PathTooLongException">The <paramref name="name" /> is too long. Length restrictions may depend on the operating system or configuration.</exception>
1954       <exception cref="T:System.UnauthorizedAccessException">The named semaphore exists, but the user does not have the security access required to use it.</exception>
1955       <returns>
1956         <see langword="true" /> if the named semaphore was opened successfully; otherwise, <see langword="false" />. In some cases, <see langword="false" /> may be returned for invalid names.</returns>
1957     </member>
1958     <member name="T:System.Threading.SemaphoreFullException">
1959       <summary>The exception that is thrown when the <see cref="Overload:System.Threading.Semaphore.Release" /> method is called on a semaphore whose count is already at the maximum.</summary>
1960     </member>
1961     <member name="M:System.Threading.SemaphoreFullException.#ctor">
1962       <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> class with default values.</summary>
1963     </member>
1964     <member name="M:System.Threading.SemaphoreFullException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1965       <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> class with serialized data.</summary>
1966       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
1967       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination.</param>
1968     </member>
1969     <member name="M:System.Threading.SemaphoreFullException.#ctor(System.String)">
1970       <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> class with a specified error message.</summary>
1971       <param name="message">The error message that explains the reason for the exception.</param>
1972     </member>
1973     <member name="M:System.Threading.SemaphoreFullException.#ctor(System.String,System.Exception)">
1974       <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
1975       <param name="message">The error message that explains the reason for the exception.</param>
1976       <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
1977     </member>
1978     <member name="T:System.Threading.SemaphoreSlim">
1979       <summary>Represents a lightweight alternative to <see cref="T:System.Threading.Semaphore" /> that limits the number of threads that can access a resource or pool of resources concurrently.</summary>
1980     </member>
1981     <member name="M:System.Threading.SemaphoreSlim.#ctor(System.Int32)">
1982       <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreSlim" /> class, specifying the initial number of requests that can be granted concurrently.</summary>
1983       <param name="initialCount">The initial number of requests for the semaphore that can be granted concurrently.</param>
1984       <exception cref="T:System.ArgumentOutOfRangeException">
1985         <paramref name="initialCount" /> is less than 0.</exception>
1986     </member>
1987     <member name="M:System.Threading.SemaphoreSlim.#ctor(System.Int32,System.Int32)">
1988       <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreSlim" /> class, specifying the initial and maximum number of requests that can be granted concurrently.</summary>
1989       <param name="initialCount">The initial number of requests for the semaphore that can be granted concurrently.</param>
1990       <param name="maxCount">The maximum number of requests for the semaphore that can be granted concurrently.</param>
1991       <exception cref="T:System.ArgumentOutOfRangeException">
1992         <paramref name="initialCount" /> is less than 0, or <paramref name="initialCount" /> is greater than <paramref name="maxCount" />, or <paramref name="maxCount" /> is equal to or less than 0.</exception>
1993     </member>
1994     <member name="M:System.Threading.SemaphoreSlim.Dispose">
1995       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.SemaphoreSlim" /> class.</summary>
1996     </member>
1997     <member name="M:System.Threading.SemaphoreSlim.Dispose(System.Boolean)">
1998       <summary>Releases the unmanaged resources used by the <see cref="T:System.Threading.SemaphoreSlim" />, and optionally releases the managed resources.</summary>
1999       <param name="disposing">
2000         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
2001     </member>
2002     <member name="M:System.Threading.SemaphoreSlim.Release">
2003       <summary>Releases the <see cref="T:System.Threading.SemaphoreSlim" /> object once.</summary>
2004       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2005       <exception cref="T:System.Threading.SemaphoreFullException">The <see cref="T:System.Threading.SemaphoreSlim" /> has already reached its maximum size.</exception>
2006       <returns>The previous count of the <see cref="T:System.Threading.SemaphoreSlim" />.</returns>
2007     </member>
2008     <member name="M:System.Threading.SemaphoreSlim.Release(System.Int32)">
2009       <summary>Releases the <see cref="T:System.Threading.SemaphoreSlim" /> object a specified number of times.</summary>
2010       <param name="releaseCount">The number of times to exit the semaphore.</param>
2011       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2012       <exception cref="T:System.ArgumentOutOfRangeException">
2013         <paramref name="releaseCount" /> is less than 1.</exception>
2014       <exception cref="T:System.Threading.SemaphoreFullException">The <see cref="T:System.Threading.SemaphoreSlim" /> has already reached its maximum size.</exception>
2015       <returns>The previous count of the <see cref="T:System.Threading.SemaphoreSlim" />.</returns>
2016     </member>
2017     <member name="M:System.Threading.SemaphoreSlim.Wait">
2018       <summary>Blocks the current thread until it can enter the <see cref="T:System.Threading.SemaphoreSlim" />.</summary>
2019       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2020     </member>
2021     <member name="M:System.Threading.SemaphoreSlim.Wait(System.Int32)">
2022       <summary>Blocks the current thread until it can enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a 32-bit signed integer that specifies the timeout.</summary>
2023       <param name="millisecondsTimeout">The number of milliseconds to wait, <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely, or zero to test the state of the wait handle and return immediately.</param>
2024       <exception cref="T:System.ArgumentOutOfRangeException">
2025         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite timeout -or- timeout is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2026       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.SemaphoreSlim" /> has been disposed.</exception>
2027       <returns>
2028         <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />; otherwise, <see langword="false" />.</returns>
2029     </member>
2030     <member name="M:System.Threading.SemaphoreSlim.Wait(System.Int32,System.Threading.CancellationToken)">
2031       <summary>Blocks the current thread until it can enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a 32-bit signed integer that specifies the timeout, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
2032       <param name="millisecondsTimeout">The number of milliseconds to wait, <see cref="F:System.Threading.Timeout.Infinite" />(-1) to wait indefinitely, or zero to test the state of the wait handle and return immediately.</param>
2033       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
2034       <exception cref="T:System.OperationCanceledException">
2035         <paramref name="cancellationToken" /> was canceled.</exception>
2036       <exception cref="T:System.ArgumentOutOfRangeException">
2037         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite timeout.
2038
2039 -or-
2040
2041 <paramref name="millisecondsTimeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2042       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.SemaphoreSlim" /> instance has been disposed, or the <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has been disposed.</exception>
2043       <returns>
2044         <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />; otherwise, <see langword="false" />.</returns>
2045     </member>
2046     <member name="M:System.Threading.SemaphoreSlim.Wait(System.Threading.CancellationToken)">
2047       <summary>Blocks the current thread until it can enter the <see cref="T:System.Threading.SemaphoreSlim" />, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
2048       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> token to observe.</param>
2049       <exception cref="T:System.OperationCanceledException">
2050         <paramref name="cancellationToken" /> was canceled.</exception>
2051       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.  
2052   
2053  -or-  
2054   
2055  The <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has already been disposed.</exception>
2056     </member>
2057     <member name="M:System.Threading.SemaphoreSlim.Wait(System.TimeSpan)">
2058       <summary>Blocks the current thread until it can enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a <see cref="T:System.TimeSpan" /> to specify the timeout.</summary>
2059       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely, or a <see cref="T:System.TimeSpan" /> that represents 0 milliseconds to test the wait handle and return immediately.</param>
2060       <exception cref="T:System.ArgumentOutOfRangeException">
2061         <paramref name="timeout" /> is a negative number other than -1, which represents an infinite timeout.
2062
2063 -or- 
2064
2065 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2066       <exception cref="T:System.ObjectDisposedException">The semaphoreSlim instance has been disposed.</exception>
2067       <returns>
2068         <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />; otherwise, <see langword="false" />.</returns>
2069     </member>
2070     <member name="M:System.Threading.SemaphoreSlim.Wait(System.TimeSpan,System.Threading.CancellationToken)">
2071       <summary>Blocks the current thread until it can enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a <see cref="T:System.TimeSpan" /> that specifies the timeout, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
2072       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely, or a <see cref="T:System.TimeSpan" /> that represents 0 milliseconds to test the wait handle and return immediately.</param>
2073       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
2074       <exception cref="T:System.OperationCanceledException">
2075         <paramref name="cancellationToken" /> was canceled.</exception>
2076       <exception cref="T:System.ArgumentOutOfRangeException">
2077         <paramref name="timeout" /> is a negative number other than -1, which represents an infinite timeout.
2078
2079 -or-.
2080
2081 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2082       <exception cref="T:System.ObjectDisposedException">The semaphoreSlim instance has been disposed.
2083           
2084 -or-
2085
2086 The <see cref="T:System.Threading.CancellationTokenSource" /> that created <paramref name="cancellationToken" /> has already been disposed.</exception>
2087       <returns>
2088         <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />; otherwise, <see langword="false" />.</returns>
2089     </member>
2090     <member name="M:System.Threading.SemaphoreSlim.WaitAsync">
2091       <summary>Asynchronously waits to enter the <see cref="T:System.Threading.SemaphoreSlim" />.</summary>
2092       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.SemaphoreSlim" /> has been disposed.</exception>
2093       <returns>A task that will complete when the semaphore has been entered.</returns>
2094     </member>
2095     <member name="M:System.Threading.SemaphoreSlim.WaitAsync(System.Int32)">
2096       <summary>Asynchronously waits to enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a 32-bit signed integer to measure the time interval.</summary>
2097       <param name="millisecondsTimeout">The number of milliseconds to wait, <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely, or zero to test the state of the wait handle and return immediately.</param>
2098       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2099       <exception cref="T:System.ArgumentOutOfRangeException">
2100         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite timeout.
2101           
2102 -or-
2103           
2104 <paramref name="millisecondsTimeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2105       <returns>A task that will complete with a result of <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />, otherwise with a result of <see langword="false" />.</returns>
2106     </member>
2107     <member name="M:System.Threading.SemaphoreSlim.WaitAsync(System.Int32,System.Threading.CancellationToken)">
2108       <summary>Asynchronously waits to enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a 32-bit signed integer to measure the time interval, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
2109       <param name="millisecondsTimeout">The number of milliseconds to wait, <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely, or zero to test the state of the wait handle and return immediately.</param>
2110       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> to observe.</param>
2111       <exception cref="T:System.ArgumentOutOfRangeException">
2112         <paramref name="millisecondsTimeout" /> is a number other than -1, which represents an infinite timeout.
2113           
2114 -or-
2115
2116 <paramref name="millisecondsTimeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2117       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2118       <exception cref="T:System.OperationCanceledException">
2119         <paramref name="cancellationToken" /> was canceled.</exception>
2120       <returns>A task that will complete with a result of <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />, otherwise with a result of <see langword="false" />.</returns>
2121     </member>
2122     <member name="M:System.Threading.SemaphoreSlim.WaitAsync(System.Threading.CancellationToken)">
2123       <summary>Asynchronously waits to enter the <see cref="T:System.Threading.SemaphoreSlim" />, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
2124       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> token to observe.</param>
2125       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2126       <exception cref="T:System.OperationCanceledException">
2127         <paramref name="cancellationToken" /> was canceled.</exception>
2128       <returns>A task that will complete when the semaphore has been entered.</returns>
2129     </member>
2130     <member name="M:System.Threading.SemaphoreSlim.WaitAsync(System.TimeSpan)">
2131       <summary>Asynchronously waits to enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a <see cref="T:System.TimeSpan" /> to measure the time interval.</summary>
2132       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely, or a <see cref="T:System.TimeSpan" /> that represents 0 milliseconds to test the wait handle and return immediately.</param>
2133       <exception cref="T:System.ObjectDisposedException">The current instance has already been disposed.</exception>
2134       <exception cref="T:System.ArgumentOutOfRangeException">
2135         <paramref name="timeout" /> is a negative number other than -1, which represents an infinite timeout.
2136
2137 -or-
2138           
2139 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2140       <returns>A task that will complete with a result of <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />, otherwise with a result of <see langword="false" />.</returns>
2141     </member>
2142     <member name="M:System.Threading.SemaphoreSlim.WaitAsync(System.TimeSpan,System.Threading.CancellationToken)">
2143       <summary>Asynchronously waits to enter the <see cref="T:System.Threading.SemaphoreSlim" />, using a <see cref="T:System.TimeSpan" /> to measure the time interval, while observing a <see cref="T:System.Threading.CancellationToken" />.</summary>
2144       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely, or a <see cref="T:System.TimeSpan" /> that represents 0 milliseconds to test the wait handle and return immediately.</param>
2145       <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken" /> token to observe.</param>
2146       <exception cref="T:System.ArgumentOutOfRangeException">
2147         <paramref name="timeout" /> is a negative number other than -1, which represents an infinite timeout.
2148           
2149 -or-
2150
2151 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2152       <exception cref="T:System.OperationCanceledException">
2153         <paramref name="cancellationToken" /> was canceled.</exception>
2154       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.SemaphoreSlim" /> has been disposed.</exception>
2155       <returns>A task that will complete with a result of <see langword="true" /> if the current thread successfully entered the <see cref="T:System.Threading.SemaphoreSlim" />, otherwise with a result of <see langword="false" />.</returns>
2156     </member>
2157     <member name="P:System.Threading.SemaphoreSlim.AvailableWaitHandle">
2158       <summary>Returns a <see cref="T:System.Threading.WaitHandle" /> that can be used to wait on the semaphore.</summary>
2159       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.SemaphoreSlim" /> has been disposed.</exception>
2160       <returns>A <see cref="T:System.Threading.WaitHandle" /> that can be used to wait on the semaphore.</returns>
2161     </member>
2162     <member name="P:System.Threading.SemaphoreSlim.CurrentCount">
2163       <summary>Gets the number of remaining threads that can enter the <see cref="T:System.Threading.SemaphoreSlim" /> object.</summary>
2164       <returns>The number of remaining threads that can enter the semaphore.</returns>
2165     </member>
2166     <member name="T:System.Threading.SendOrPostCallback">
2167       <summary>Represents a method to be called when a message is to be dispatched to a synchronization context.</summary>
2168       <param name="state">The object passed to the delegate.</param>
2169     </member>
2170     <member name="T:System.Threading.SpinLock">
2171       <summary>Provides a mutual exclusion lock primitive where a thread trying to acquire the lock waits in a loop repeatedly checking until the lock becomes available.</summary>
2172     </member>
2173     <member name="M:System.Threading.SpinLock.#ctor(System.Boolean)">
2174       <summary>Initializes a new instance of the <see cref="T:System.Threading.SpinLock" /> structure with the option to track thread IDs to improve debugging.</summary>
2175       <param name="enableThreadOwnerTracking">Whether to capture and use thread IDs for debugging purposes.</param>
2176     </member>
2177     <member name="M:System.Threading.SpinLock.Enter(System.Boolean@)">
2178       <summary>Acquires the lock in a reliable manner, such that even if an exception occurs within the method call, <paramref name="lockTaken" /> can be examined reliably to determine whether the lock was acquired.</summary>
2179       <param name="lockTaken">True if the lock is acquired; otherwise, false. <paramref name="lockTaken" /> must be initialized to false prior to calling this method.</param>
2180       <exception cref="T:System.ArgumentException">The <paramref name="lockTaken" /> argument must be initialized to false prior to calling Enter.</exception>
2181       <exception cref="T:System.Threading.LockRecursionException">Thread ownership tracking is enabled, and the current thread has already acquired this lock.</exception>
2182     </member>
2183     <member name="M:System.Threading.SpinLock.Exit">
2184       <summary>Releases the lock.</summary>
2185       <exception cref="T:System.Threading.SynchronizationLockException">Thread ownership tracking is enabled, and the current thread is not the owner of this lock.</exception>
2186     </member>
2187     <member name="M:System.Threading.SpinLock.Exit(System.Boolean)">
2188       <summary>Releases the lock.</summary>
2189       <param name="useMemoryBarrier">A Boolean value that indicates whether a memory fence should be issued in order to immediately publish the exit operation to other threads.</param>
2190       <exception cref="T:System.Threading.SynchronizationLockException">Thread ownership tracking is enabled, and the current thread is not the owner of this lock.</exception>
2191     </member>
2192     <member name="M:System.Threading.SpinLock.TryEnter(System.Boolean@)">
2193       <summary>Attempts to acquire the lock in a reliable manner, such that even if an exception occurs within the method call, <paramref name="lockTaken" /> can be examined reliably to determine whether the lock was acquired.</summary>
2194       <param name="lockTaken">True if the lock is acquired; otherwise, false. <paramref name="lockTaken" /> must be initialized to false prior to calling this method.</param>
2195       <exception cref="T:System.ArgumentException">The <paramref name="lockTaken" /> argument must be initialized to false prior to calling TryEnter.</exception>
2196       <exception cref="T:System.Threading.LockRecursionException">Thread ownership tracking is enabled, and the current thread has already acquired this lock.</exception>
2197     </member>
2198     <member name="M:System.Threading.SpinLock.TryEnter(System.Int32,System.Boolean@)">
2199       <summary>Attempts to acquire the lock in a reliable manner, such that even if an exception occurs within the method call, <paramref name="lockTaken" /> can be examined reliably to determine whether the lock was acquired.</summary>
2200       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely.</param>
2201       <param name="lockTaken">True if the lock is acquired; otherwise, false. <paramref name="lockTaken" /> must be initialized to false prior to calling this method.</param>
2202       <exception cref="T:System.ArgumentOutOfRangeException">
2203         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
2204       <exception cref="T:System.ArgumentException">The <paramref name="lockTaken" /> argument must be initialized to false prior to calling TryEnter.</exception>
2205       <exception cref="T:System.Threading.LockRecursionException">Thread ownership tracking is enabled, and the current thread has already acquired this lock.</exception>
2206     </member>
2207     <member name="M:System.Threading.SpinLock.TryEnter(System.TimeSpan,System.Boolean@)">
2208       <summary>Attempts to acquire the lock in a reliable manner, such that even if an exception occurs within the method call, <paramref name="lockTaken" /> can be examined reliably to determine whether the lock was acquired.</summary>
2209       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a <see cref="T:System.TimeSpan" /> that represents -1 milliseconds to wait indefinitely.</param>
2210       <param name="lockTaken">True if the lock is acquired; otherwise, false. <paramref name="lockTaken" /> must be initialized to false prior to calling this method.</param>
2211       <exception cref="T:System.ArgumentOutOfRangeException">
2212         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out -or- timeout is greater than <see cref="F:System.Int32.MaxValue" /> milliseconds.</exception>
2213       <exception cref="T:System.ArgumentException">The <paramref name="lockTaken" /> argument must be initialized to false prior to calling TryEnter.</exception>
2214       <exception cref="T:System.Threading.LockRecursionException">Thread ownership tracking is enabled, and the current thread has already acquired this lock.</exception>
2215     </member>
2216     <member name="P:System.Threading.SpinLock.IsHeld">
2217       <summary>Gets whether the lock is currently held by any thread.</summary>
2218       <returns>true if the lock is currently held by any thread; otherwise false.</returns>
2219     </member>
2220     <member name="P:System.Threading.SpinLock.IsHeldByCurrentThread">
2221       <summary>Gets whether the lock is held by the current thread.</summary>
2222       <exception cref="T:System.InvalidOperationException">Thread ownership tracking is disabled.</exception>
2223       <returns>true if the lock is held by the current thread; otherwise false.</returns>
2224     </member>
2225     <member name="P:System.Threading.SpinLock.IsThreadOwnerTrackingEnabled">
2226       <summary>Gets whether thread ownership tracking is enabled for this instance.</summary>
2227       <returns>true if thread ownership tracking is enabled for this instance; otherwise false.</returns>
2228     </member>
2229     <member name="T:System.Threading.SpinWait">
2230       <summary>Provides support for spin-based waiting.</summary>
2231     </member>
2232     <member name="M:System.Threading.SpinWait.Reset">
2233       <summary>Resets the spin counter.</summary>
2234     </member>
2235     <member name="M:System.Threading.SpinWait.SpinOnce">
2236       <summary>Performs a single spin.</summary>
2237     </member>
2238     <member name="M:System.Threading.SpinWait.SpinOnce(System.Int32)">
2239       <summary>Performs a single spin and calls <see cref="M:System.Threading.Thread.Sleep(System.Int32)" /> after a minimum spin count.</summary>
2240       <param name="sleep1Threshold">A minimum spin count after which <see langword="Thread.Sleep(1)" /> may be used. A value of -1 disables the use of <see langword="Thread.Sleep(1)" />.</param>
2241       <exception cref="T:System.ArgumentOutOfRangeException">
2242         <paramref name="sleep1Threshold" /> is less than -1.</exception>
2243     </member>
2244     <member name="M:System.Threading.SpinWait.SpinUntil(System.Func{System.Boolean})">
2245       <summary>Spins until the specified condition is satisfied.</summary>
2246       <param name="condition">A delegate to be executed over and over until it returns true.</param>
2247       <exception cref="T:System.ArgumentNullException">The <paramref name="condition" /> argument is null.</exception>
2248     </member>
2249     <member name="M:System.Threading.SpinWait.SpinUntil(System.Func{System.Boolean},System.Int32)">
2250       <summary>Spins until the specified condition is satisfied or until the specified timeout is expired.</summary>
2251       <param name="condition">A delegate to be executed over and over until it returns true.</param>
2252       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely.</param>
2253       <exception cref="T:System.ArgumentNullException">The <paramref name="condition" /> argument is null.</exception>
2254       <exception cref="T:System.ArgumentOutOfRangeException">
2255         <paramref name="millisecondsTimeout" /> is a negative number other than -1, which represents an infinite time-out.</exception>
2256       <returns>
2257         <see langword="true" /> if the condition is satisfied within the timeout; otherwise, false.</returns>
2258     </member>
2259     <member name="M:System.Threading.SpinWait.SpinUntil(System.Func{System.Boolean},System.TimeSpan)">
2260       <summary>Spins until the specified condition is satisfied or until the specified timeout is expired.</summary>
2261       <param name="condition">A delegate to be executed over and over until it returns true.</param>
2262       <param name="timeout">A <see cref="T:System.TimeSpan" /> that represents the number of milliseconds to wait, or a TimeSpan that represents -1 milliseconds to wait indefinitely.</param>
2263       <exception cref="T:System.ArgumentNullException">The <paramref name="condition" /> argument is null.</exception>
2264       <exception cref="T:System.ArgumentOutOfRangeException">
2265         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out -or- timeout is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
2266       <returns>
2267         <see langword="true" /> if the condition is satisfied within the timeout; otherwise, false.</returns>
2268     </member>
2269     <member name="P:System.Threading.SpinWait.Count">
2270       <summary>Gets the number of times <see cref="M:System.Threading.SpinWait.SpinOnce" /> has been called on this instance.</summary>
2271       <returns>Returns an integer that represents the number of times <see cref="M:System.Threading.SpinWait.SpinOnce" /> has been called on this instance.</returns>
2272     </member>
2273     <member name="P:System.Threading.SpinWait.NextSpinWillYield">
2274       <summary>Gets whether the next call to <see cref="M:System.Threading.SpinWait.SpinOnce" /> will yield the processor, triggering a forced context switch.</summary>
2275       <returns>Whether the next call to <see cref="M:System.Threading.SpinWait.SpinOnce" /> will yield the processor, triggering a forced context switch.</returns>
2276     </member>
2277     <member name="T:System.Threading.SynchronizationContext">
2278       <summary>Provides the basic functionality for propagating a synchronization context in various synchronization models.</summary>
2279     </member>
2280     <member name="M:System.Threading.SynchronizationContext.#ctor">
2281       <summary>Creates a new instance of the <see cref="T:System.Threading.SynchronizationContext" /> class.</summary>
2282     </member>
2283     <member name="M:System.Threading.SynchronizationContext.CreateCopy">
2284       <summary>When overridden in a derived class, creates a copy of the synchronization context.</summary>
2285       <returns>A new <see cref="T:System.Threading.SynchronizationContext" /> object.</returns>
2286     </member>
2287     <member name="M:System.Threading.SynchronizationContext.IsWaitNotificationRequired">
2288       <summary>Determines if wait notification is required.</summary>
2289       <returns>
2290         <see langword="true" /> if wait notification is required; otherwise, <see langword="false" />.</returns>
2291     </member>
2292     <member name="M:System.Threading.SynchronizationContext.OperationCompleted">
2293       <summary>When overridden in a derived class, responds to the notification that an operation has completed.</summary>
2294     </member>
2295     <member name="M:System.Threading.SynchronizationContext.OperationStarted">
2296       <summary>When overridden in a derived class, responds to the notification that an operation has started.</summary>
2297     </member>
2298     <member name="M:System.Threading.SynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)">
2299       <summary>When overridden in a derived class, dispatches an asynchronous message to a synchronization context.</summary>
2300       <param name="d">The <see cref="T:System.Threading.SendOrPostCallback" /> delegate to call.</param>
2301       <param name="state">The object passed to the delegate.</param>
2302     </member>
2303     <member name="M:System.Threading.SynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)">
2304       <summary>When overridden in a derived class, dispatches a synchronous message to a synchronization context.</summary>
2305       <param name="d">The <see cref="T:System.Threading.SendOrPostCallback" /> delegate to call.</param>
2306       <param name="state">The object passed to the delegate.</param>
2307       <exception cref="T:System.NotSupportedException">The method was called in a Windows Store app. The implementation of <see cref="T:System.Threading.SynchronizationContext" /> for Windows Store apps does not support the <see cref="M:System.Threading.SynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)" /> method.</exception>
2308     </member>
2309     <member name="M:System.Threading.SynchronizationContext.SetSynchronizationContext(System.Threading.SynchronizationContext)">
2310       <summary>Sets the current synchronization context.</summary>
2311       <param name="syncContext">The <see cref="T:System.Threading.SynchronizationContext" /> object to be set.</param>
2312     </member>
2313     <member name="M:System.Threading.SynchronizationContext.SetWaitNotificationRequired">
2314       <summary>Sets notification that wait notification is required and prepares the callback method so it can be called more reliably when a wait occurs.</summary>
2315     </member>
2316     <member name="M:System.Threading.SynchronizationContext.Wait(System.IntPtr[],System.Boolean,System.Int32)">
2317       <summary>Waits for any or all the elements in the specified array to receive a signal.</summary>
2318       <param name="waitHandles">An array of type <see cref="T:System.IntPtr" /> that contains the native operating system handles.</param>
2319       <param name="waitAll">
2320         <see langword="true" /> to wait for all handles; <see langword="false" /> to wait for any handle.</param>
2321       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely.</param>
2322       <exception cref="T:System.ArgumentNullException">
2323         <paramref name="waitHandles" /> is null.</exception>
2324       <returns>The array index of the object that satisfied the wait.</returns>
2325     </member>
2326     <member name="M:System.Threading.SynchronizationContext.WaitHelper(System.IntPtr[],System.Boolean,System.Int32)">
2327       <summary>Helper function that waits for any or all the elements in the specified array to receive a signal.</summary>
2328       <param name="waitHandles">An array of type <see cref="T:System.IntPtr" /> that contains the native operating system handles.</param>
2329       <param name="waitAll">
2330         <see langword="true" /> to wait for all handles;  <see langword="false" /> to wait for any handle.</param>
2331       <param name="millisecondsTimeout">The number of milliseconds to wait, or <see cref="F:System.Threading.Timeout.Infinite" /> (-1) to wait indefinitely.</param>
2332       <returns>The array index of the object that satisfied the wait.</returns>
2333     </member>
2334     <member name="P:System.Threading.SynchronizationContext.Current">
2335       <summary>Gets the synchronization context for the current thread.</summary>
2336       <returns>A <see cref="T:System.Threading.SynchronizationContext" /> object representing the current synchronization context.</returns>
2337     </member>
2338     <member name="T:System.Threading.SynchronizationLockException">
2339       <summary>The 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.</summary>
2340     </member>
2341     <member name="M:System.Threading.SynchronizationLockException.#ctor">
2342       <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with default properties.</summary>
2343     </member>
2344     <member name="M:System.Threading.SynchronizationLockException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2345       <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with serialized data.</summary>
2346       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
2347       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
2348     </member>
2349     <member name="M:System.Threading.SynchronizationLockException.#ctor(System.String)">
2350       <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with a specified error message.</summary>
2351       <param name="message">The error message that explains the reason for the exception.</param>
2352     </member>
2353     <member name="M:System.Threading.SynchronizationLockException.#ctor(System.String,System.Exception)">
2354       <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
2355       <param name="message">The error message that explains the reason for the exception.</param>
2356       <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
2357     </member>
2358     <member name="T:System.Threading.ThreadLocal`1">
2359       <summary>Provides thread-local storage of data.</summary>
2360       <typeparam name="T">Specifies the type of data stored per-thread.</typeparam>
2361     </member>
2362     <member name="M:System.Threading.ThreadLocal`1.#ctor">
2363       <summary>Initializes the <see cref="T:System.Threading.ThreadLocal`1" /> instance.</summary>
2364     </member>
2365     <member name="M:System.Threading.ThreadLocal`1.#ctor(System.Boolean)">
2366       <summary>Initializes the <see cref="T:System.Threading.ThreadLocal`1" /> instance and specifies whether all values are accessible from any thread.</summary>
2367       <param name="trackAllValues">
2368         <see langword="true" /> to track all values set on the instance and expose them through the <see cref="P:System.Threading.ThreadLocal`1.Values" /> property; <see langword="false" /> otherwise. When set to <see langword="true" />, a value stored from a given thread will be available through <see cref="P:System.Threading.ThreadLocal`1.Values" /> even after that thread has exited.</param>
2369     </member>
2370     <member name="M:System.Threading.ThreadLocal`1.#ctor(System.Func{`0})">
2371       <summary>Initializes the <see cref="T:System.Threading.ThreadLocal`1" /> instance with the specified <paramref name="valueFactory" /> function.</summary>
2372       <param name="valueFactory">The  <see cref="T:System.Func`1" /> invoked to produce a lazily-initialized value when an attempt is made to retrieve <see cref="P:System.Threading.ThreadLocal`1.Value" /> without it having been previously initialized.</param>
2373       <exception cref="T:System.ArgumentNullException">
2374         <paramref name="valueFactory" /> is a null reference (Nothing in Visual Basic).</exception>
2375     </member>
2376     <member name="M:System.Threading.ThreadLocal`1.#ctor(System.Func{`0},System.Boolean)">
2377       <summary>Initializes the <see cref="T:System.Threading.ThreadLocal`1" /> instance with the specified <paramref name="valueFactory" /> function and a flag that indicates whether all values are accessible from any thread.</summary>
2378       <param name="valueFactory">The <see cref="T:System.Func`1" /> invoked to produce a lazily-initialized value when an attempt is made to retrieve <see cref="P:System.Threading.ThreadLocal`1.Value" /> without it having been previously initialized.</param>
2379       <param name="trackAllValues">
2380         <see langword="true" /> to track all values set on the instance and expose them through the <see cref="P:System.Threading.ThreadLocal`1.Values" /> property; <see langword="false" /> otherwise. When set to <see langword="true" />, a value stored from a given thread will be available through <see cref="P:System.Threading.ThreadLocal`1.Values" /> even after that thread has exited.</param>
2381       <exception cref="T:System.ArgumentNullException">
2382         <paramref name="valueFactory" /> is a <see langword="null" /> reference (<see langword="Nothing" /> in Visual Basic).</exception>
2383     </member>
2384     <member name="M:System.Threading.ThreadLocal`1.Dispose">
2385       <summary>Releases all resources used by the current instance of the <see cref="T:System.Threading.ThreadLocal`1" /> class.</summary>
2386     </member>
2387     <member name="M:System.Threading.ThreadLocal`1.Dispose(System.Boolean)">
2388       <summary>Releases the resources used by this <see cref="T:System.Threading.ThreadLocal`1" /> instance.</summary>
2389       <param name="disposing">A Boolean value that indicates whether this method is being called due to a call to <see cref="M:System.Threading.ThreadLocal`1.Dispose" />.</param>
2390     </member>
2391     <member name="M:System.Threading.ThreadLocal`1.Finalize">
2392       <summary>Releases the resources used by this <see cref="T:System.Threading.ThreadLocal`1" /> instance.</summary>
2393     </member>
2394     <member name="M:System.Threading.ThreadLocal`1.ToString">
2395       <summary>Creates and returns a string representation of this instance for the current thread.</summary>
2396       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ThreadLocal`1" /> instance has been disposed.</exception>
2397       <exception cref="T:System.NullReferenceException">The <see cref="P:System.Threading.ThreadLocal`1.Value" /> for the current thread is a null reference (Nothing in Visual Basic).</exception>
2398       <exception cref="T:System.InvalidOperationException">The initialization function attempted to reference <see cref="P:System.Threading.ThreadLocal`1.Value" /> recursively.</exception>
2399       <exception cref="T:System.MissingMemberException">No parameterless constructor is provided and no value factory is supplied.</exception>
2400       <returns>The result of calling <see cref="M:System.Object.ToString" /> on the <see cref="P:System.Threading.ThreadLocal`1.Value" />.</returns>
2401     </member>
2402     <member name="P:System.Threading.ThreadLocal`1.IsValueCreated">
2403       <summary>Gets whether <see cref="P:System.Threading.ThreadLocal`1.Value" /> is initialized on the current thread.</summary>
2404       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ThreadLocal`1" /> instance has been disposed.</exception>
2405       <returns>true if <see cref="P:System.Threading.ThreadLocal`1.Value" /> is initialized on the current thread; otherwise false.</returns>
2406     </member>
2407     <member name="P:System.Threading.ThreadLocal`1.Value">
2408       <summary>Gets or sets the value of this instance for the current thread.</summary>
2409       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ThreadLocal`1" /> instance has been disposed.</exception>
2410       <exception cref="T:System.InvalidOperationException">The initialization function attempted to reference <see cref="P:System.Threading.ThreadLocal`1.Value" /> recursively.</exception>
2411       <exception cref="T:System.MissingMemberException">No parameterless constructor is provided and no value factory is supplied.</exception>
2412       <returns>Returns an instance of the object that this ThreadLocal is responsible for initializing.</returns>
2413     </member>
2414     <member name="P:System.Threading.ThreadLocal`1.Values">
2415       <summary>Gets a list containing the values stored by all threads that have accessed this instance.</summary>
2416       <exception cref="T:System.InvalidOperationException">Values stored by all threads are not available because this instance was initialized with the <paramref name="trackAllValues" /> argument set to <see langword="false" /> in the call to a class constructor.</exception>
2417       <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.Threading.ThreadLocal`1" /> instance has been disposed.</exception>
2418       <returns>A list for all of the values stored by all of the threads that have accessed this instance.</returns>
2419     </member>
2420     <member name="T:System.Threading.Volatile">
2421       <summary>Contains methods for performing volatile memory operations.</summary>
2422     </member>
2423     <member name="M:System.Threading.Volatile.Read(System.Boolean@)">
2424       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2425       <param name="location">The field to read.</param>
2426       <returns>The value that was read.</returns>
2427     </member>
2428     <member name="M:System.Threading.Volatile.Read(System.Byte@)">
2429       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2430       <param name="location">The field to read.</param>
2431       <returns>The value that was read.</returns>
2432     </member>
2433     <member name="M:System.Threading.Volatile.Read(System.Double@)">
2434       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2435       <param name="location">The field to read.</param>
2436       <returns>The value that was read.</returns>
2437     </member>
2438     <member name="M:System.Threading.Volatile.Read(System.Int16@)">
2439       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2440       <param name="location">The field to read.</param>
2441       <returns>The value that was read.</returns>
2442     </member>
2443     <member name="M:System.Threading.Volatile.Read(System.Int32@)">
2444       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2445       <param name="location">The field to read.</param>
2446       <returns>The value that was read.</returns>
2447     </member>
2448     <member name="M:System.Threading.Volatile.Read(System.Int64@)">
2449       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2450       <param name="location">The field to read.</param>
2451       <returns>The value that was read.</returns>
2452     </member>
2453     <member name="M:System.Threading.Volatile.Read(System.IntPtr@)">
2454       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2455       <param name="location">The field to read.</param>
2456       <returns>The value that was read.</returns>
2457     </member>
2458     <member name="M:System.Threading.Volatile.Read(System.SByte@)">
2459       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2460       <param name="location">The field to read.</param>
2461       <returns>The value that was read.</returns>
2462     </member>
2463     <member name="M:System.Threading.Volatile.Read(System.Single@)">
2464       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2465       <param name="location">The field to read.</param>
2466       <returns>The value that was read.</returns>
2467     </member>
2468     <member name="M:System.Threading.Volatile.Read(System.UInt16@)">
2469       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2470       <param name="location">The field to read.</param>
2471       <returns>The value that was read.</returns>
2472     </member>
2473     <member name="M:System.Threading.Volatile.Read(System.UInt32@)">
2474       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2475       <param name="location">The field to read.</param>
2476       <returns>The value that was read.</returns>
2477     </member>
2478     <member name="M:System.Threading.Volatile.Read(System.UInt64@)">
2479       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2480       <param name="location">The field to read.</param>
2481       <returns>The value that was read.</returns>
2482     </member>
2483     <member name="M:System.Threading.Volatile.Read(System.UIntPtr@)">
2484       <summary>Reads the value of the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2485       <param name="location">The field to read.</param>
2486       <returns>The value that was read.</returns>
2487     </member>
2488     <member name="M:System.Threading.Volatile.Read``1(``0@)">
2489       <summary>Reads the object reference from the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears after this method in the code, the processor cannot move it before this method.</summary>
2490       <param name="location">The field to read.</param>
2491       <typeparam name="T">The type of field to read. This must be a reference type, not a value type.</typeparam>
2492       <returns>The reference to <paramref name="T" /> that was read. This reference is the latest written by any processor in the computer, regardless of the number of processors or the state of processor cache.</returns>
2493     </member>
2494     <member name="M:System.Threading.Volatile.Write(System.Boolean@,System.Boolean)">
2495       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2496       <param name="location">The field where the value is written.</param>
2497       <param name="value">The value to write.</param>
2498     </member>
2499     <member name="M:System.Threading.Volatile.Write(System.Byte@,System.Byte)">
2500       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2501       <param name="location">The field where the value is written.</param>
2502       <param name="value">The value to write.</param>
2503     </member>
2504     <member name="M:System.Threading.Volatile.Write(System.Double@,System.Double)">
2505       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2506       <param name="location">The field where the value is written.</param>
2507       <param name="value">The value to write.</param>
2508     </member>
2509     <member name="M:System.Threading.Volatile.Write(System.Int16@,System.Int16)">
2510       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2511       <param name="location">The field where the value is written.</param>
2512       <param name="value">The value to write.</param>
2513     </member>
2514     <member name="M:System.Threading.Volatile.Write(System.Int32@,System.Int32)">
2515       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2516       <param name="location">The field where the value is written.</param>
2517       <param name="value">The value to write.</param>
2518     </member>
2519     <member name="M:System.Threading.Volatile.Write(System.Int64@,System.Int64)">
2520       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2521       <param name="location">The field where the value is written.</param>
2522       <param name="value">The value to write.</param>
2523     </member>
2524     <member name="M:System.Threading.Volatile.Write(System.IntPtr@,System.IntPtr)">
2525       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2526       <param name="location">The field where the value is written.</param>
2527       <param name="value">The value to write.</param>
2528     </member>
2529     <member name="M:System.Threading.Volatile.Write(System.SByte@,System.SByte)">
2530       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2531       <param name="location">The field where the value is written.</param>
2532       <param name="value">The value to write.</param>
2533     </member>
2534     <member name="M:System.Threading.Volatile.Write(System.Single@,System.Single)">
2535       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2536       <param name="location">The field where the value is written.</param>
2537       <param name="value">The value to write.</param>
2538     </member>
2539     <member name="M:System.Threading.Volatile.Write(System.UInt16@,System.UInt16)">
2540       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2541       <param name="location">The field where the value is written.</param>
2542       <param name="value">The value to write.</param>
2543     </member>
2544     <member name="M:System.Threading.Volatile.Write(System.UInt32@,System.UInt32)">
2545       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2546       <param name="location">The field where the value is written.</param>
2547       <param name="value">The value to write.</param>
2548     </member>
2549     <member name="M:System.Threading.Volatile.Write(System.UInt64@,System.UInt64)">
2550       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2551       <param name="location">The field where the value is written.</param>
2552       <param name="value">The value to write.</param>
2553     </member>
2554     <member name="M:System.Threading.Volatile.Write(System.UIntPtr@,System.UIntPtr)">
2555       <summary>Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2556       <param name="location">The field where the value is written.</param>
2557       <param name="value">The value to write.</param>
2558     </member>
2559     <member name="M:System.Threading.Volatile.Write``1(``0@,``0)">
2560       <summary>Writes the specified object reference to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.</summary>
2561       <param name="location">The field where the object reference is written.</param>
2562       <param name="value">The object reference to write.</param>
2563       <typeparam name="T">The type of field to write. This must be a reference type, not a value type.</typeparam>
2564     </member>
2565     <member name="T:System.Threading.WaitHandleCannotBeOpenedException">
2566       <summary>The exception that is thrown when an attempt is made to open a system mutex, semaphore, or event wait handle that does not exist.</summary>
2567     </member>
2568     <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor">
2569       <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with default values.</summary>
2570     </member>
2571     <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2572       <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with serialized data.</summary>
2573       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
2574       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination.</param>
2575     </member>
2576     <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor(System.String)">
2577       <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message.</summary>
2578       <param name="message">The error message that explains the reason for the exception.</param>
2579     </member>
2580     <member name="M:System.Threading.WaitHandleCannotBeOpenedException.#ctor(System.String,System.Exception)">
2581       <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
2582       <param name="message">The error message that explains the reason for the exception.</param>
2583       <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
2584     </member>
2585   </members>
2586 </doc>