The waitone tag has no wiki summary.
3
votes
3answers
315 views
How do I unblock threads which have called the WaitOne method on an AutoResetEvent object?
Below is a class having the method 'SomeMethod' that illustrates my problem.
class SomeClass
{
AutoResetEvent theEvent = new AutoResetEvent(false);
// more member declarations
public ...
0
votes
0answers
97 views
Asynchronous call - Control does not return to the Completed Method if async method takes too long
I am facing this problem.
I am calling a WebService method via a Command Line Exe.
This method call is Async Call and I am using WaitOne after the Call.
I am doing ManualRest.Set() in completed ...
0
votes
1answer
65 views
Webservice : AsyncCall finished : But WaitOne() still waiting
I am calling a WebService method via a Command Line Exe.
This method call is Async Call and I am using WaitOne after the Call.
I am doing ManualRest.Set() in completed method.
The above setup ...
0
votes
0answers
56 views
Handling Asynchronous operations during Unit testing in Visual Studio
I am trying to write a simple test method that invokes an asychronous method(StartEMS in the example) in another class. Now I want to wait till the asynchronous method returns, so I tried using a ...
0
votes
3answers
243 views
How can I wait the response and do operations with it?
I have one new problem. I want to do some operations with the response, but I get a NullReferenceException, because it isn't arrived yet... Here is my code:
public partial class MainPage : ...
0
votes
2answers
308 views
Event gets triggered after timeout is over
I have to wait for an event to be triggered. My initial solution was to use AutoResetEvent and WaitOne(), but the event was always triggered just after the waiting timeout was over. So I went back to ...