diff ServerMonitor/Controls/MatchComboBox.cs @ 16:7626b099aefd

More comments.
author Brad Greco <brad@bgreco.net>
date Tue, 30 Apr 2019 20:40:58 -0400
parents 7127d5b5ac75
children
line wrap: on
line diff
--- a/ServerMonitor/Controls/MatchComboBox.cs	Mon Apr 22 21:11:27 2019 -0400
+++ b/ServerMonitor/Controls/MatchComboBox.cs	Tue Apr 30 20:40:58 2019 -0400
@@ -21,5 +21,19 @@
     }
 
     /// <summary>Types of matches that can be run against a response string.</summary>
-    public enum MatchType { Equals = 0, NotEquals = 1, Contains = 2, NotContains = 3, GreaterThan = 4, LessThan = 5 }
+    public enum MatchType
+    {
+        /// <summary>Indicates that the result string must equal the expected pattern.</summary>
+        Equals = 0,
+        /// <summary>Indicates that the result string must not equal the expected pattern.</summary>
+        NotEquals = 1,
+        /// <summary>Indicates that the result string must contain expected pattern.</summary>
+        Contains = 2,
+        /// <summary>Indicates that the result string must not contain expected pattern.</summary>
+        NotContains = 3,
+        /// <summary>Indicates that the result string must be numeric and greater than the expected numeric pattern.</summary>
+        GreaterThan = 4,
+        /// <summary>Indicates that the result string must be numeric and less than the expected numeric pattern.</summary>
+        LessThan = 5
+    }
 }