オブジェクトが実際にどのようにAutoResetEvent
扱われたかを確認することはできますか? タイムアウトまたは別のメソッドから Set() を呼び出すことによって起動されますか?
これが私のコードです。
private AutoResetEvent autoResetEvent = new AutoResetEvent(false);
private int timeout = 30000;
public void SyncMethod()
{
// some code before
autoResetEvent.WaitOne(timeout);
// if autoResetEvent called by timeout then { do some stuff }
// some code after
}
public void AsyncMethod()
{
// some code before
// ok I am done
autoResetEvent.Set();
}