Beispiel #1
0
 public ParameterChecker(
     string i_InputRequestString,
     string[] i_ParameterValues,
     eExpectedInputType i_ExpectedInputType)
 {
     InputRequestString = i_InputRequestString;
     ParameterValues    = i_ParameterValues;
     ExpectedInputType  = i_ExpectedInputType;
 }
Beispiel #2
0
 public ParameterChecker(string i_InputRequestString, eExpectedInputType i_ExpectedInputType)
     : this(i_InputRequestString, new string[] { }, i_ExpectedInputType)
 {
 }