39 references to EventResetMode
mscorlib (10)
system\threading\autoresetevent.cs (1)
27public AutoResetEvent(bool initialState) : base(initialState,EventResetMode.AutoReset){ }
system\threading\eventwaithandle.cs (8)
52public EventWaitHandle(bool initialState, EventResetMode mode) : this(initialState,mode,null) { } 57public EventWaitHandle(bool initialState, EventResetMode mode, string name) 68case EventResetMode.ManualReset: 71case EventResetMode.AutoReset: 95public EventWaitHandle(bool initialState, EventResetMode mode, string name, out bool createdNew) 103public unsafe EventWaitHandle(bool initialState, EventResetMode mode, string name, out bool createdNew, EventWaitHandleSecurity eventSecurity) 128case EventResetMode.ManualReset: 131case EventResetMode.AutoReset:
system\threading\manualresetevent.cs (1)
27public ManualResetEvent(bool initialState) : base(initialState,EventResetMode.ManualReset){}
System.AddIn (1)
System\Addin\Hosting\AddInProcess.cs (1)
385EventWaitHandle readyEvent = new EventWaitHandle(false, EventResetMode.ManualReset, "AddInProcess:" + guid);
System.Core (2)
system\threading\ReaderWriterLockSlim\ReaderWriterLockSlim.cs (2)
996enterLockType == EnterLockType.Read ? EventResetMode.ManualReset : EventResetMode.AutoReset);
System.Runtime.DurableInstancing (3)
System\Runtime\DurableInstancing\InstanceHandle.cs (1)
969WaitForHostTransaction = new AsyncWaitHandle(EventResetMode.ManualReset);
System\Runtime\DurableInstancing\InstanceOwner.cs (1)
506AsyncWaitHandle waitHandle = new AsyncWaitHandle(EventResetMode.ManualReset);
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (1)
1144this.waitForTransaction = new AsyncWaitHandle(EventResetMode.ManualReset);
System.ServiceModel (4)
System\ServiceModel\Channels\ConnectAlgorithms.cs (3)
20EventWaitHandle addNeighbor = new EventWaitHandle(true, EventResetMode.ManualReset); 21EventWaitHandle maintainerClosed = new EventWaitHandle(false, EventResetMode.ManualReset); 22EventWaitHandle welcomeReceived = new EventWaitHandle(false, EventResetMode.ManualReset);
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
388securityEvent = new EventWaitHandle(false, EventResetMode.ManualReset, ListenerConstants.GlobalPrefix + this.securityEventName, out createdNew, handleSecurity);
System.ServiceModel.Activities (7)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (1)
184this.waitForStoreEventsLoop = new AsyncWaitHandle(EventResetMode.ManualReset);
System\ServiceModel\Activities\Dispatcher\PersistenceProviderDirectory.cs (1)
673AsyncWaitHandle newWaitHandle = new AsyncWaitHandle(EventResetMode.ManualReset);
System\ServiceModel\Activities\Dispatcher\WorkflowServiceInstance.cs (4)
635AsyncWaitHandle idleEvent = new AsyncWaitHandle(EventResetMode.ManualReset); 2856this.waitHandle = new AsyncWaitHandle(EventResetMode.ManualReset); 3085this.instance.workflowServiceInstanceReadyWaitHandle = new AsyncWaitHandle(EventResetMode.ManualReset); 5021this.checkCanPersistEvent = new AsyncWaitHandle(EventResetMode.AutoReset);
System\ServiceModel\Activities\WorkflowHostingResponseContext.cs (1)
22this.responseWaitHandle = new AsyncWaitHandle(EventResetMode.AutoReset);
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpOutputChannel.cs (2)
452this.retransmissionDoneWaitHandle = new AsyncWaitHandle(EventResetMode.ManualReset); 1025this.channel.retransmissionDoneWaitHandle = new AsyncWaitHandle(EventResetMode.ManualReset);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\AsyncOperationLifetimeManager.cs (1)
214this.closeHandle = new AsyncWaitHandle(EventResetMode.ManualReset);
System.ServiceModel.Internals (8)
System\Runtime\AsyncWaitHandle.cs (8)
18EventResetMode resetMode; 26: this(EventResetMode.AutoReset) 30public AsyncWaitHandle(EventResetMode resetMode) 38if (!this.isSignaled || (this.isSignaled && this.resetMode == EventResetMode.AutoReset)) 42if (this.isSignaled && this.resetMode == EventResetMode.AutoReset) 100if (!this.isSignaled || (this.isSignaled && this.resetMode == EventResetMode.AutoReset)) 104if (this.isSignaled && this.resetMode == EventResetMode.AutoReset) 163if (this.resetMode == EventResetMode.ManualReset)
System.Transactions (1)
System\Transactions\Oletx\OletxTransactionManager.cs (1)
51shimWaitHandle = new EventWaitHandle( false, EventResetMode.AutoReset );