comparison ServerMonitor/Objects/ServerMonitor.cs @ 38:8ab98a803d39

Remove dead code.
author Brad Greco <brad@bgreco.net>
date Sun, 15 Sep 2019 21:01:14 -0400
parents 10e60b05c7ec
children
comparison
equal deleted inserted replaced
37:547181b2b418 38:8ab98a803d39
591 } 591 }
592 Settings.Default.MaxCheckId = id; 592 Settings.Default.MaxCheckId = id;
593 Settings.Default.Save(); 593 Settings.Default.Save();
594 } 594 }
595 } 595 }
596
597 /// <summary>Creates an XML serializer that can handle servers and all check types.</summary>
598 /// <returns>An XML serializer that can handle servers and all check types.</returns>
599 private XmlSerializer CreateXmlSerializer()
600 {
601 return new XmlSerializer(typeof(List<Server>), Check.CheckTypes);
602 }
603 } 596 }
604 597
605 /// <summary>Event arguments for when a check status changes.</summary> 598 /// <summary>Event arguments for when a check status changes.</summary>
606 public class CheckStatusChangedEventArgs : EventArgs 599 public class CheckStatusChangedEventArgs : EventArgs
607 { 600 {