Gallifrey.IdleTimers.IdleTimerCollection.RemoveTimer C# (CSharp) Méthode

RemoveTimer() public méthode

public RemoveTimer ( System.Guid uniqueId ) : void
uniqueId System.Guid
Résultat void
        public void RemoveTimer(Guid uniqueId)
        {
            var timerToRemove = GetTimer(uniqueId);
            if (timerToRemove != null)
            {
                lockTimerList.Remove(timerToRemove);
                SaveTimers();
            }
        }