92 references to ManualResetEvent
mscorlib (11)
system\console.cs (1)
1728this.CompletionEvent = new ManualResetEvent(false);
system\iappdomainpausemanager.cs (1)
74ResumeEvent = new ManualResetEvent(false);
system\io\filestream.cs (2)
144ManualResetEvent waitHandle = new ManualResetEvent(false); 209ManualResetEvent mre = new ManualResetEvent(false);
system\io\stream.cs (2)
294return new ManualResetEvent(false); 1025return LazyInitializer.EnsureInitialized(ref _waitHandle, () => new ManualResetEvent(true));
system\runtime\interopservices\windowsruntime\windowsruntimemarshal.cs (1)
943newEvent = new ManualResetEvent(false);
system\runtime\remoting\asyncresult.cs (1)
88_AsyncWaitHandle = new ManualResetEvent(false);
system\threading\CancellationTokenSource.cs (1)
188ManualResetEvent mre = new ManualResetEvent(false);
system\threading\ManualResetEventSlim.cs (1)
278ManualResetEvent newEventObj = new ManualResetEvent(preInitializeIsSet);
system\threading\SemaphoreSlim.cs (1)
145m_waitHandle = new ManualResetEvent(m_currentCount != 0);
PresentationCore (3)
Core\CSharp\System\IO\Packaging\PackWebResponse.cs (1)
111_responseAvailable = new ManualResetEvent(false);
Core\CSharp\System\Windows\Interop\D3DImage.cs (1)
100_canWriteEvent = new ManualResetEvent(true);
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (1)
1665private ManualResetEvent _copyCompletedEvent = new ManualResetEvent(true);
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
501_assertAppRequirementsEvent = new ManualResetEvent(false);
src\Framework\System\Windows\Data\XmlDataProvider.cs (1)
429_waitForInlineDoc = new ManualResetEvent(false); // tells serializer to wait until _document is ready
SMSvcHost (1)
System\ServiceModel\Activation\ListenerAdapter.cs (1)
61initCompleted = new ManualResetEvent(false);
System (23)
compmod\microsoft\win32\SystemEvents.cs (2)
577eventWindowReady = new ManualResetEvent(false); 1407eventThreadTerminated = new ManualResetEvent(false);
net\System\Net\_ConnectionGroup.cs (1)
88Interlocked.CompareExchange(ref m_Event, new ManualResetEvent(false), null);
net\System\Net\_LazyAsyncResult.cs (1)
188waitHandle = new ManualResetEvent(false);
net\System\Net\_TimerThread.cs (1)
178private static ManualResetEvent s_ThreadShutdownEvent = new ManualResetEvent(false);
net\System\Net\Cache\IERequestCache.cs (2)
737m_Event = new ManualResetEvent(false); 950m_Event = new ManualResetEvent(false);
net\System\Net\connectionpool.cs (1)
127m_WaitHandles[ErrorHandleIndex] = new ManualResetEvent(false);
net\System\Net\filewebrequest.cs (1)
464request.m_readerEvent = new ManualResetEvent(false);
net\System\Net\HttpWebRequest.cs (2)
6410connectComplete = new ManualResetEvent(false); 6411flushComplete = new ManualResetEvent(false);
net\System\Net\NetworkInformation\ping.cs (2)
65asyncFinished = new ManualResetEvent(!value); 663pingEvent = new ManualResetEvent (false);
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (1)
389using (ManualResetEvent stable = new ManualResetEvent(false)) {
net\System\Net\Sockets\Socket.cs (1)
7524Interlocked.CompareExchange<ManualResetEvent>(ref m_AsyncEvent, new ManualResetEvent(false), null);
net\System\Net\UnsafeNativeMethods.cs (1)
235m_RasEvent = new ManualResetEvent(false);
services\monitoring\system\diagnosticts\AsyncStreamReader.cs (1)
90eofEvent = new ManualResetEvent(false);
sys\System\IO\compression\DeflateStreamAsyncResult.cs (1)
55Interlocked.CompareExchange(ref m_Event, new ManualResetEvent(savedCompleted != 0), null);
sys\system\io\ports\SerialStream.cs (4)
1436ManualResetEvent waitHandle = new ManualResetEvent(false); 1491ManualResetEvent waitHandle = new ManualResetEvent(false); 1672internal ManualResetEvent eventLoopEndedSignal = new ManualResetEvent(false); 1673internal ManualResetEvent waitCommEventWaitHandle = new ManualResetEvent(false);
sys\system\Media\SoundPlayer.cs (1)
35private ManualResetEvent semaphore = new ManualResetEvent(true);
System.Core (5)
System\IO\Pipes\Pipe.cs (2)
665ManualResetEvent waitHandle = new ManualResetEvent(false); 1446ManualResetEvent mre = new ManualResetEvent(false);
System\IO\Pipes\PipeStream.cs (3)
307ManualResetEvent waitHandle = new ManualResetEvent(false); 526ManualResetEvent waitHandle = new ManualResetEvent(false); 1307ManualResetEvent mre = new ManualResetEvent(false);
System.Data (1)
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (1)
333_errorEvent = new ManualResetEvent(false);
System.Data.Services.Client (1)
System\Data\Services\Client\BaseAsyncResult.cs (1)
122System.Threading.Interlocked.CompareExchange(ref this.asyncWait, new System.Threading.ManualResetEvent(this.IsCompleted), null);
System.IdentityModel (2)
System\IdentityModel\AsyncResult.cs (1)
239resetEvent = new ManualResetEvent(completed);
System\IdentityModel\Selectors\SecurityTokenProvider.cs (1)
212this.manualResetEvent = new ManualResetEvent(true);
System.IO.Log (3)
System\IO\Log\FileRecordSequenceCompletedAsyncResult.cs (1)
76this.waitHandle = new ManualResetEvent(true);
System\IO\Log\LogManagementAsyncResult.cs (1)
69doneEvent = new ManualResetEvent(false);
System\IO\Log\OverlappedAsyncResult.cs (1)
77this.waitHandle = new ManualResetEvent(this.isCompleted);
System.Messaging (1)
System\Messaging\MessageQueue.cs (1)
3698this.resetEvent = new ManualResetEvent(false);
System.Runtime.Caching (1)
System\Caching\MemoryCacheStore.cs (1)
75_insertBlock = new ManualResetEvent(true);
System.Runtime.Remoting (1)
channels\core\basicasyncresult.cs (1)
58_manualResetEvent = new ManualResetEvent(bSavedIsComplete);
System.ServiceModel (18)
System\ServiceModel\Administration\WbemProvider.cs (1)
1015ManualResetEvent evtDone = new ManualResetEvent(false);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
728this.wait = new ManualResetEvent(false);
System\ServiceModel\Channels\LifetimeManager.cs (1)
392this.waitHandle = new ManualResetEvent(false);
System\ServiceModel\Channels\MsmqBindingMonitor.cs (1)
47this.firstRoundComplete = new ManualResetEvent(false);
System\ServiceModel\Channels\OverlappedContext.cs (1)
364this.completionEvent = new ManualResetEvent(false);
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
690this.shutdownEvent = new ManualResetEvent(false);
System\ServiceModel\Channels\PeerNodeImplementation.cs (1)
98connectCompletedEvent = new ManualResetEvent(false);
System\ServiceModel\Channels\PipeConnection.cs (1)
101this.atEOFEvent = new ManualResetEvent(false);
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (2)
217this.closeEvent = new ManualResetEvent(false); 601this.handle = new ManualResetEvent(false);
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (1)
987this.completedHandle = new ManualResetEvent(false);
System\ServiceModel\Channels\RequestChannel.cs (1)
137closedEvent = new ManualResetEvent(false);
System\ServiceModel\Channels\ServiceChannel.cs (1)
2432ManualResetEvent wait = new ManualResetEvent(false);
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
52this.reconnectEvent = new ManualResetEvent(true);
System\ServiceModel\Channels\SharedHttpTransportManager.cs (1)
581listenStartedEvent = new ManualResetEvent(false);
System\ServiceModel\Channels\TransmissionStrategy.cs (1)
1102ManualResetEvent completeEvent = new ManualResetEvent(false);
System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (1)
227ManualResetEvent wait = new ManualResetEvent(false);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
780ManualResetEvent wait = new ManualResetEvent(false);
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\CollectibleLRUCache.cs (1)
307recyclingCompletedWaitHandle = new ManualResetEvent(true);
System\ServiceModel\ServiceHostingEnvironment.cs (1)
613ManualResetEvent allRequestDoneInStop = new ManualResetEvent(false);
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpOutputChannel.cs (1)
568this.cancelEvent = new ManualResetEvent(false);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\SyncOperationState.cs (1)
19this.waitEvent = new ManualResetEvent(false);
System.ServiceModel.Internals (3)
System\Runtime\AsyncResult.cs (1)
71manualResetEvent = new ManualResetEvent(isCompleted);
System\Runtime\InputQueue.cs (2)
1017waitEvent = new ManualResetEvent(false); 1083waitEvent = new ManualResetEvent(false);
System.Transactions (2)
System\Transactions\CommittableTransaction.cs (1)
268ManualResetEvent temp = new ManualResetEvent(
System\Transactions\TransactionTable.cs (1)
62Interlocked.CompareExchange( ref this.writerFinishedEvent, new ManualResetEvent( true ), null );
System.Web.Services (2)
System\Web\Services\Protocols\ClientProtocol.cs (1)
576manualResetEvent = new ManualResetEvent(savedIsCompleted);
System\Web\Services\Protocols\WebServiceHandler.cs (1)
52this.asyncBeginComplete = new ManualResetEvent(false);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
20092this.resetEvent = new ManualResetEvent(false);
System.Workflow.Activities (1)
LocalService\MethodMessage.cs (1)
70returnValueSignalEvent = new ManualResetEvent(false);
System.Workflow.Runtime (5)
DebugEngine\DebugController.cs (1)
601this.eventConduitAttached = new ManualResetEvent(false);
DebugEngine\DebugControllerThread.cs (1)
29this.threadInitializedEvent = new ManualResetEvent(false);
Hosting\SharedConnectionWorkflowTransactionService.cs (1)
165ManualResetEvent handle = new ManualResetEvent(false);
System\Activities\Statements\Interop.cs (1)
1901this.manualResetEvent = new ManualResetEvent(true);
WorkflowExecutor.cs (1)
2119atomicActivityEvent = new ManualResetEvent(false);
WindowsBase (1)
Base\System\Windows\Threading\DispatcherOperation.cs (1)
668_event = new ManualResetEvent(false);