You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<typeparamname="TState">The type of elements of <paramrefname="state" />.</typeparam>
595
+
<paramname="callBack">An <seecref="T:System.Action`1" /> representing the method to execute.</param>
596
+
<paramname="state">An object containing data to be used by the method.</param>
597
+
<paramname="preferLocal">Unlike other QueueUserWorkItem methods, prefer exeucting in the local thread pool and not the global thread pool.</param>
598
+
<summary>Queues a method specified by an <seecref="T:System.Action`1" /> delegate for execution, and provides data to be used by the method. The method executes when a thread pool thread becomes available.</summary>
599
+
<returns>
600
+
<seelangword="true" /> if the method is successfully queued; <seecref="T:System.NotSupportedException" /> is thrown if the work item could not be queued.
<typeparamname="TState">The type of elements of <paramrefname="state" />.</typeparam>
1272
+
<paramname="callBack">A delegate representing the method to execute.</param>
1273
+
<paramname="state">An object containing data to be used by the method.</param>
1274
+
<paramname="preferLocal">`true` to execute in the local threadpool; `false` to execute in the global thread pool.</param>
1275
+
<summary>Queues a method specified by an <seecref="T:System.Action`1" /> delegate for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.</summary>
1276
+
<returns>
1277
+
<seelangword="true" /> if the method is successfully queued; <seecref="T:System.NotSupportedException" /> is thrown if the work item could not be queued.</returns>
0 commit comments