Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ComparisonMode.cs
2{
6 public enum ComparisonMode
7 {
11 ContainsRegex,
12
17 StartsWithRegex,
18
23 EndsWithRegex,
24
29 ExactRegex,
30
35 ContainsRegexIgnoreCase,
36
41 StartsWithRegexIgnoreCase,
42
47 EndsWithRegexIgnoreCase,
48
53 ExactRegexIgnoreCase,
54
58 ContainsConstant,
59
64 StartsWithConstant,
65
70 EndsWithConstant,
71
76 ExactConstant,
77
82 ContainsConstantIgnoreCase,
83
88 StartsWithConstantIgnoreCase,
89
94 EndsWithConstantIgnoreCase,
95
100 ExactConstantIgnoreCase,
101
105 Script,
106
110 List,
111
115 ListIgnoreCase,
116
120 FileList,
121
126 FileListIgnoreCase,
127
132 DatabaseList,
133
138 DatabaseListIgnoreCase
139 }
140}
ComparisonMode
Condition comparison mode.