59 instantiations of AutoResetEvent
mscorlib (3)
system\runtime\interopservices\windowsruntime\windowsruntimemarshal.cs (1)
941newEvent = new AutoResetEvent(false);
system\runtime\remoting\leasemanager.cs (1)
84waitHandle = new AutoResetEvent(false);
system\runtime\remoting\synchronizeddispatch.cs (1)
251_asyncWorkEvent = new AutoResetEvent(false);
PresentationCore (4)
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (2)
118_readEventHandles[(int)ReadEvent.ByteRangeReadEvent] = new AutoResetEvent(false); 123_readEventHandles[(int)ReadEvent.FullDownloadReadEvent] = new AutoResetEvent(false);
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (2)
78_waitEvent = new AutoResetEvent(false); 523internal static AutoResetEvent _waitEvent = new AutoResetEvent(false);
SMSvcHost (2)
System\ServiceModel\Activation\ListenerAdapter.cs (2)
85cleanupComplete = new AutoResetEvent(false); 810wasConnected = new AutoResetEvent(false);
System (6)
compmod\system\diagnostics\assertwrapper.cs (1)
256m_Event = new AutoResetEvent(false);
net\System\Net\_AutoWebProxyScriptEngine.cs (1)
446changeEvent = new AutoResetEvent(false);
net\System\Net\_SafeNetHandles.cs (1)
2765result.waitHandle = new AutoResetEvent(false);
net\System\Net\_TimerThread.cs (1)
177private static AutoResetEvent s_ThreadReadyEvent = new AutoResetEvent(false);
net\System\Net\Sockets\_BaseOverlappedAsyncResult.cs (1)
173m_OverlappedEvent = new AutoResetEvent(false);
services\monitoring\system\diagnosticts\EventLogInternal.cs (1)
567info.waitHandle = new AutoResetEvent(false);
System.Activities (3)
System\Activities\Debugger\ThreadWorkerController.cs (2)
130this.eventSend = new AutoResetEvent(false); 131this.eventDone = new AutoResetEvent(false);
System\Activities\WorkflowApplication.cs (1)
4765PumpBasedSynchronizationContext.waitObject = new AutoResetEvent(false);
System.Core (2)
System\Diagnostics\Eventing\Reader\EventLogWatcher.cs (2)
172this.unregisterDoneHandle = new AutoResetEvent(false); 173this.subscriptionWaitHandle = new AutoResetEvent(false);
System.Data (1)
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
3112_resetConnectionEvent = new AutoResetEvent(true);
System.Management (4)
Instrumentation\EventSource.cs (2)
218public AutoResetEvent doneIndicate = new AutoResetEvent(false); 232AutoResetEvent doIndicate = new AutoResetEvent(false);
InteropClasses\WMIInterop.cs (2)
1963public AutoResetEvent evtDone = new AutoResetEvent(false); 1977static AutoResetEvent evtGo = new AutoResetEvent(false); // tells the worker to create an object on our behalf
System.Net (22)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (3)
436presenceChangedEvent = new AutoResetEvent(false); 494appChangedEvent = new AutoResetEvent(false); 552objChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\ContactManager.cs (5)
240m_subLstChangedEvent = new AutoResetEvent(false); 441m_nameChangedEvent = new AutoResetEvent(false); 648m_presenceChangedEvent = new AutoResetEvent(false); 862m_appChangedEvent = new AutoResetEvent(false); 1076m_objChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\MyContact.cs (3)
75PresenceChangedEvent = new AutoResetEvent(false); 241AppChangedEvent = new AutoResetEvent(false); 404ObjChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\Peer.cs (1)
970internal AutoResetEvent m_InviteEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerApplication.cs (1)
249m_appChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerCollaboration.cs (1)
1037s_nameChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerContact.cs (3)
1231m_appChangedEvent = new AutoResetEvent(false); 1481m_objChangedEvent = new AutoResetEvent(false); 1735m_presenceChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerEndPoint.cs (1)
214m_nameChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerNearMe.cs (2)
244AutoResetEvent refreshedEPDataEvent = new AutoResetEvent(false); 554s_peerNearMeChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerObject.cs (1)
201m_objChangedEvent = new AutoResetEvent(false);
net\PeerToPeer\PeerNameResolver.cs (1)
94internal AutoResetEvent m_EndPointInfoAvailableEvent = new AutoResetEvent(false);
System.Runtime.Remoting (4)
channels\core\socketcache.cs (1)
368_socketTimeoutWaitHandle = new AutoResetEvent(false);
channels\http\httpserverchannel.cs (1)
69private AutoResetEvent _waitForStartListening = new AutoResetEvent(false);
channels\ipc\ipcserverchannel.cs (1)
55private AutoResetEvent _waitForStartListening = new AutoResetEvent(false);
channels\ipc\portcache.cs (1)
55_socketTimeoutWaitHandle = new AutoResetEvent(false);
System.ServiceModel (2)
System\ServiceModel\Channels\PeerHelpers.cs (1)
26AutoResetEvent waiter = new AutoResetEvent(false);
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
2573AutoResetEvent completeEvent = new AutoResetEvent(false);
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
326wait = new AutoResetEvent(false);
UIAutomationClient (2)
MS\Internal\Automation\QueueProcessor.cs (2)
56_ev = new AutoResetEvent(false); 225_ev = new AutoResetEvent(false);
UIAutomationClientsideProviders (2)
MS\Internal\AutomationProxies\QueueProcessor.cs (2)
42_ev = new AutoResetEvent(false); 217_ev = new AutoResetEvent (false);
WindowsBase (1)
Base\MS\Internal\Security\RightsManagement\CallbackHandler.cs (1)
46_resetEvent = new AutoResetEvent(false); // initialized to a false non-signaled state
69 references to AutoResetEvent
mscorlib (2)
system\runtime\remoting\leasemanager.cs (1)
36AutoResetEvent waitHandle;
system\runtime\remoting\synchronizeddispatch.cs (1)
57internal AutoResetEvent _asyncWorkEvent;
PresentationCore (1)
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (1)
523internal static AutoResetEvent _waitEvent = new AutoResetEvent(false);
SMSvcHost (2)
System\ServiceModel\Activation\ListenerAdapter.cs (2)
27AutoResetEvent wasConnected; 28AutoResetEvent cleanupComplete;
System (9)
compmod\system\diagnostics\assertwrapper.cs (1)
249private AutoResetEvent m_Event;
net\System\Net\_AutoWebProxyScriptEngine.cs (5)
376private AutoResetEvent registryChangeEvent; 377private AutoResetEvent registryChangeEventLM; 378private AutoResetEvent registryChangeEventPolicy; 418private void ListenForRegistryHelper(ref SafeRegistryHandle key, ref AutoResetEvent changeEvent, IntPtr baseKey, string subKey) 561AutoResetEvent tempEvent = registryChangeEvent;
net\System\Net\_SafeNetHandles.cs (1)
2749private AutoResetEvent waitHandle;
net\System\Net\_TimerThread.cs (1)
177private static AutoResetEvent s_ThreadReadyEvent = new AutoResetEvent(false);
net\System\Net\Sockets\_BaseOverlappedAsyncResult.cs (1)
27private AutoResetEvent m_OverlappedEvent;
System.Activities (5)
System\Activities\Debugger\ThreadWorkerController.cs (2)
38AutoResetEvent eventSend; 42AutoResetEvent eventDone;
System\Activities\WorkflowApplication.cs (3)
4738static AutoResetEvent waitObject; 4739AutoResetEvent queueWaiter; 4833bool WaitOne(AutoResetEvent waiter, TimeSpan timeout)
System.Core (2)
System\Diagnostics\Eventing\Reader\EventLogWatcher.cs (2)
44AutoResetEvent subscriptionWaitHandle; 45AutoResetEvent unregisterDoneHandle;
System.Data (1)
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
178internal AutoResetEvent _resetConnectionEvent = null; // Used to serialize executes and call reset on first execute only.
System.Management (7)
Instrumentation\EventSource.cs (2)
218public AutoResetEvent doneIndicate = new AutoResetEvent(false); 232AutoResetEvent doIndicate = new AutoResetEvent(false);
InteropClasses\WMIInterop.cs (2)
1963public AutoResetEvent evtDone = new AutoResetEvent(false); 1977static AutoResetEvent evtGo = new AutoResetEvent(false); // tells the worker to create an object on our behalf
managementoperationwatcher.cs (3)
372private AutoResetEvent h; 374internal WmiEventState (Delegate d, ManagementEventArgs args, AutoResetEvent h) 391public AutoResetEvent AutoResetEvent
System.Net (26)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (4)
398ref AutoResetEvent firedEvent) 426ref AutoResetEvent presenceChangedEvent, 484ref AutoResetEvent appChangedEvent, 542ref AutoResetEvent objChangedEvent,
net\PeerToPeer\Collaboration\ContactManager.cs (5)
220private AutoResetEvent m_subLstChangedEvent; 420private AutoResetEvent m_nameChangedEvent; 627private AutoResetEvent m_presenceChangedEvent; 839private AutoResetEvent m_appChangedEvent; 1053private AutoResetEvent m_objChangedEvent;
net\PeerToPeer\Collaboration\Peer.cs (1)
970internal AutoResetEvent m_InviteEvent = new AutoResetEvent(false);
net\PeerToPeer\Collaboration\PeerApplication.cs (1)
221private AutoResetEvent m_appChangedEvent;
net\PeerToPeer\Collaboration\PeerCollaboration.cs (4)
1015private static AutoResetEvent s_nameChangedEvent; 1216static AutoResetEvent s_presenceChangedEvent; 1384static AutoResetEvent s_objChangedEvent; 1549static AutoResetEvent s_appChangedEvent;
net\PeerToPeer\Collaboration\PeerContact.cs (6)
1197private AutoResetEvent m_appChangedEvent; 1198internal AutoResetEvent AppChangedEvent 1449private AutoResetEvent m_objChangedEvent; 1450internal AutoResetEvent ObjChangedEvent 1703private AutoResetEvent m_presenceChangedEvent; 1704internal AutoResetEvent PresenceChangedEvent
net\PeerToPeer\Collaboration\PeerEndPoint.cs (1)
192private AutoResetEvent m_nameChangedEvent;
net\PeerToPeer\Collaboration\PeerNearMe.cs (2)
244AutoResetEvent refreshedEPDataEvent = new AutoResetEvent(false); 531private static AutoResetEvent s_peerNearMeChangedEvent;
net\PeerToPeer\Collaboration\PeerObject.cs (1)
173private AutoResetEvent m_objChangedEvent;
net\PeerToPeer\PeerNameResolver.cs (1)
94internal AutoResetEvent m_EndPointInfoAvailableEvent = new AutoResetEvent(false);
System.Runtime.Remoting (4)
channels\core\socketcache.cs (1)
340private static AutoResetEvent _socketTimeoutWaitHandle;
channels\http\httpserverchannel.cs (1)
69private AutoResetEvent _waitForStartListening = new AutoResetEvent(false);
channels\ipc\ipcserverchannel.cs (1)
55private AutoResetEvent _waitForStartListening = new AutoResetEvent(false);
channels\ipc\portcache.cs (1)
43private static AutoResetEvent _socketTimeoutWaitHandle;
System.ServiceModel (2)
System\ServiceModel\Channels\PeerHelpers.cs (1)
26AutoResetEvent waiter = new AutoResetEvent(false);
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
2573AutoResetEvent completeEvent = new AutoResetEvent(false);
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (3)
45static AutoResetEvent waitObject; 323AutoResetEvent wait = HostedHttpRequestAsyncResult.waitObject; 360((AutoResetEvent)result.AsyncState).Set();
UIAutomationClient (2)
MS\Internal\Automation\QueueProcessor.cs (2)
204private AutoResetEvent _ev; // notifies when new queue items show up 260internal AutoResetEvent _ev;
UIAutomationClientsideProviders (2)
MS\Internal\AutomationProxies\QueueProcessor.cs (2)
164private AutoResetEvent _ev; 249internal AutoResetEvent _ev;
WindowsBase (1)
Base\MS\Internal\Security\RightsManagement\CallbackHandler.cs (1)
139private AutoResetEvent _resetEvent;