Exemplo n.º 1
0
        public bool Dispose(WaitHandle notifyObject)
        {
            if (notifyObject == null)
            {
                throw new ArgumentNullException(nameof(notifyObject));
            }

            return(m_timer.Close(notifyObject));
        }
Exemplo n.º 2
0
        public bool Dispose(WaitHandle notifyObject)
        {
            if (notifyObject == null)
            {
                throw new ArgumentNullException("notifyObject");
            }
            Contract.EndContractBlock();

            return(m_timer.Close(notifyObject));
        }
Exemplo n.º 3
0
 public void Dispose()
 {
     m_timer.Close();
 }