Dispose() private method

private Dispose ( WaitHandle notifyObject ) : bool
notifyObject WaitHandle
return bool
コード例 #1
0
 public bool Dispose(WaitHandle notifyObject)
 {
     if (notifyObject == null)
     {
         throw new ArgumentNullException("notifyObject");
     }
     return(timerBase.Dispose(notifyObject));
 }