32 implementations of AsyncWaitHandle
mscorlib (5)
system\io\filestream.cs (1)
194public WaitHandle AsyncWaitHandle
system\io\stream.cs (1)
1023public WaitHandle AsyncWaitHandle {
system\runtime\remoting\asyncresult.cs (1)
93public virtual WaitHandle AsyncWaitHandle
system\threading\Tasks\Task.cs (1)
1591WaitHandle IAsyncResult.AsyncWaitHandle
system\threading\Tasks\TaskToApm.cs (1)
189WaitHandle IAsyncResult.AsyncWaitHandle { get { return ((IAsyncResult)this.Task).AsyncWaitHandle; } }
PresentationFramework (1)
src\Framework\System\Windows\Documents\PageContentAsyncResult.cs (1)
104public WaitHandle AsyncWaitHandle
System (5)
net\System\Net\_LazyAsyncResult.cs (1)
142public WaitHandle AsyncWaitHandle
net\System\Net\HttpListener.cs (1)
2696public WaitHandle AsyncWaitHandle {
services\io\system\io\FileSystemWatcher.cs (1)
97public WaitHandle AsyncWaitHandle { get { throw new NotImplementedException(); } }
sys\System\IO\compression\DeflateStreamAsyncResult.cs (1)
48public WaitHandle AsyncWaitHandle {
sys\system\io\ports\SerialStream.cs (1)
1958public WaitHandle AsyncWaitHandle
System.Core (2)
System\IO\Pipes\Pipe.cs (1)
1442public WaitHandle AsyncWaitHandle {
System\IO\Pipes\PipeStream.cs (1)
1303public WaitHandle AsyncWaitHandle {
System.Data.Services.Client (1)
System\Data\Services\Client\BaseAsyncResult.cs (1)
114public System.Threading.WaitHandle AsyncWaitHandle
System.IdentityModel (2)
System\IdentityModel\AsyncResult.cs (1)
228public virtual WaitHandle AsyncWaitHandle
System\IdentityModel\Selectors\SecurityTokenProvider.cs (1)
199public WaitHandle AsyncWaitHandle
System.IO.Log (2)
System\IO\Log\FileRecordSequenceCompletedAsyncResult.cs (1)
66public WaitHandle AsyncWaitHandle
System\IO\Log\OverlappedAsyncResult.cs (1)
69public WaitHandle AsyncWaitHandle
System.Messaging (1)
System\Messaging\MessageQueue.cs (1)
3736public WaitHandle AsyncWaitHandle
System.Runtime.Remoting (2)
channels\core\basicasyncresult.cs (1)
47public WaitHandle AsyncWaitHandle
channels\ipc\ipcport.cs (1)
345public WaitHandle AsyncWaitHandle { get { throw new NotSupportedException();} }
System.ServiceModel (2)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (1)
996public WaitHandle AsyncWaitHandle
System\ServiceModel\Channels\OverlappedContext.cs (1)
501WaitHandle IAsyncResult.AsyncWaitHandle
System.ServiceModel.Internals (1)
System\Runtime\AsyncResult.cs (1)
58public WaitHandle AsyncWaitHandle
System.Transactions (1)
System\Transactions\CommittableTransaction.cs (1)
257WaitHandle IAsyncResult.AsyncWaitHandle
System.Web (3)
Hosting\AsyncResultBase.cs (1)
101public WaitHandle AsyncWaitHandle { get { return _mre.WaitHandle; } } // wait not supported
HttpAsyncResult.cs (1)
139public WaitHandle AsyncWaitHandle { get { return null;}} // wait not supported
TaskWrapperAsyncResult.cs (1)
32public WaitHandle AsyncWaitHandle {
System.Web.Services (2)
System\Web\Services\Protocols\ClientProtocol.cs (1)
570public WaitHandle AsyncWaitHandle {
System\Web\Services\Protocols\WebServiceHandler.cs (1)
443public WaitHandle AsyncWaitHandle { get { return null; } }
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
20083public WaitHandle AsyncWaitHandle {
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1888public WaitHandle AsyncWaitHandle
21 references to AsyncWaitHandle
mscorlib (3)
system\threading\Tasks\FutureFactory.cs (1)
743asyncResult.AsyncWaitHandle,
system\threading\Tasks\Task.cs (1)
1585/// should be preferred over using <see cref="IAsyncResult.AsyncWaitHandle"/> for similar
system\threading\Tasks\TaskToApm.cs (1)
189WaitHandle IAsyncResult.AsyncWaitHandle { get { return ((IAsyncResult)this.Task).AsyncWaitHandle; } }
System (2)
net\System\Net\filewebrequest.cs (2)
377if (!result.AsyncWaitHandle.WaitOne(Timeout, false) || !result.IsCompleted) { 406if (!result.AsyncWaitHandle.WaitOne(Timeout, false) || !result.IsCompleted) {
System.Data (6)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
1406asyncResult.AsyncWaitHandle.WaitOne();
fx\src\data\System\Data\SqlClient\SqlConnection.cs (1)
1378((IAsyncResult)completion.Item2).AsyncWaitHandle.WaitOne();
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (2)
813((IAsyncResult)currentTask).AsyncWaitHandle.WaitOne(); 818((IAsyncResult)networkPacketTaskSource.Task).AsyncWaitHandle.WaitOne();
fx\src\data\System\Data\SqlClient\SqlSequentialStream.cs (1)
294((IAsyncResult)currentTask).AsyncWaitHandle.WaitOne();
fx\src\data\System\Data\SqlClient\SqlSequentialTextReader.cs (1)
295((IAsyncResult)currentTask).AsyncWaitHandle.WaitOne();
System.Runtime.Remoting (3)
channels\core\socketstream.cs (1)
74ar.AsyncWaitHandle.WaitOne(_timeout, false);
channels\core\streamhelper.cs (1)
121iar.AsyncWaitHandle.WaitOne();
channels\ipc\pipestream.cs (1)
64ar.AsyncWaitHandle.WaitOne(_timeout, false);
System.ServiceModel (2)
System\ServiceModel\Channels\ConnectAlgorithms.cs (1)
69handles.Add(iar.AsyncWaitHandle);
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
887ThreadPool.RegisterWaitForSingleObject(result.AsyncWaitHandle,
System.Web (4)
httpserverutility.cs (1)
548WaitHandle h = ar.AsyncWaitHandle;
TaskWrapperAsyncResult.cs (1)
33get { return ((IAsyncResult)Task).AsyncWaitHandle; }
UI\LegacyPageAsyncTaskManager.cs (1)
103WaitHandle waitHandle = task.AsyncResult.AsyncWaitHandle;
Util\AspCompat.cs (1)
378WaitHandle h = ar.AsyncWaitHandle;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
6219marshaler.WaitForWaitHandle(asyncResult.AsyncWaitHandle);