Dispose() public method

public Dispose ( ) : void
return void
 internal void ClearCommandTimer()
 {
     if (commandTimer != null)
     {
         commandTimer.Dispose();
         commandTimer = null;
     }
 }
Example #2
0
        internal void ClearCommandTimer()
        {
            if (commandTimer == null)
            {
                return;
            }

            commandTimer.Dispose();
            commandTimer = null;
        }