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