Home
last modified time | relevance | path

Searched refs:asyncWaitHandle (Results 1 – 5 of 5) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Discovery/System/ServiceModel/Discovery/
H A DAsyncOperationLifetimeManager.cs231 AsyncWaitHandle asyncWaitHandle; field in System.ServiceModel.Discovery.AsyncOperationLifetimeManager.CloseAsyncResult
233 …internal CloseAsyncResult(AsyncWaitHandle asyncWaitHandle, TimeSpan timeout, AsyncCallback callbac… in CloseAsyncResult() argument
236 this.asyncWaitHandle = asyncWaitHandle; in CloseAsyncResult()
237 if (this.asyncWaitHandle.WaitAsync(onWaitCompleted, this, timeout)) in CloseAsyncResult()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Messaging/Mono.Messaging/
H A DMessageQueueBase.cs158 protected readonly WaitHandle asyncWaitHandle; field in Mono.Messaging.MessageQueueBase.AsyncResultBase
173 this.asyncWaitHandle = new Mutex (false); in AsyncResultBase()
179 asyncWaitHandle = new ThreadWaitHandle(t); in AsyncResultBase()
187 get { return asyncWaitHandle; }
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.Mvc.Test/Async/Test/
H A DSimpleAsyncResultTest.cs31 WaitHandle asyncWaitHandle = asyncResult.AsyncWaitHandle; in AsyncWaitHandleProperty()
34 Assert.Null(asyncWaitHandle); in AsyncWaitHandleProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web/
H A DHttpServerUtility.cs171 WaitHandle asyncWaitHandle = ar != null ? ar.AsyncWaitHandle : null; in Execute()
172 if (asyncWaitHandle != null) in Execute()
173 asyncWaitHandle.WaitOne (); in Execute()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.UI/
H A DPage.cs1235 readonly WaitHandle asyncWaitHandle; field in System.Web.UI.Page.DummyAsyncResult
1245 asyncWaitHandle = new ManualResetEvent (true); in DummyAsyncResult()
1248 asyncWaitHandle = new ManualResetEvent (false); in DummyAsyncResult()
1259 get { return asyncWaitHandle; }