comparison 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
comparison
equal deleted inserted replaced
15:23f2e0da1094 16:7626b099aefd
19 SelectedIndex = 0; 19 SelectedIndex = 0;
20 } 20 }
21 } 21 }
22 22
23 /// <summary>Types of matches that can be run against a response string.</summary> 23 /// <summary>Types of matches that can be run against a response string.</summary>
24 public enum MatchType { Equals = 0, NotEquals = 1, Contains = 2, NotContains = 3, GreaterThan = 4, LessThan = 5 } 24 public enum MatchType
25 {
26 /// <summary>Indicates that the result string must equal the expected pattern.</summary>
27 Equals = 0,
28 /// <summary>Indicates that the result string must not equal the expected pattern.</summary>
29 NotEquals = 1,
30 /// <summary>Indicates that the result string must contain expected pattern.</summary>
31 Contains = 2,
32 /// <summary>Indicates that the result string must not contain expected pattern.</summary>
33 NotContains = 3,
34 /// <summary>Indicates that the result string must be numeric and greater than the expected numeric pattern.</summary>
35 GreaterThan = 4,
36 /// <summary>Indicates that the result string must be numeric and less than the expected numeric pattern.</summary>
37 LessThan = 5
38 }
25 } 39 }