System.Threading.Timer.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( System notifyObject ) : bool
notifyObject System
return bool
        public bool Dispose(System.Threading.WaitHandle notifyObject)
        {
            throw null;
        }

Same methods

Timer::Dispose ( ) : void

Usage Example

Esempio n. 1
0
 private void OnNorthGuideTimer(Object stateInfo)
 {
     Request(":Qn#");
     northGuideBusy = false;
     northGuideTimer?.Dispose();
     northGuideTimer = null;
 }
All Usage Examples Of System.Threading.Timer::Dispose