protected Filters(CollationType collationType, string test, string method, string requestUrl, int?deviations, int?statusCode, decimal?period)
 {
     CollationType = collationType;
     Test          = test;
     Method        = method;
     RequestUrl    = requestUrl;
     Deviations    = deviations;
     StatusCode    = statusCode;
     Period        = period;
 }
 public EasierCollationAttribute(CollationType type) : base(type.ToString())
 {
     
 }
Beispiel #3
0
 public EasierCollationAttribute(CollationType type) : base(type.ToString())
 {
 }
Beispiel #4
0
 /// <summary>
 /// Sets the method name and column name of this instance with the supplied method name and 
 /// column name.
 /// </summary>
 /// <param name="op">The supplied method name.</param>
 /// <param name="column">The supplied column name.</param>
 public SearchAttribute(string op, OperatorType operatorType, string column, ParameterType parameterType = null, CollationType collation = null)
 {
     Operator = op;
     OperatorType = operatorType;
     Column = column;
     ParameterType = parameterType;
     Collation = collation;
 }