public DymeConfigProperty(string name, string[] values, ExpansionTypeEnum propertyExpansionType, string correlationKey = null)
 {
     Name           = name;
     Values         = values;
     ExpansionType  = propertyExpansionType;
     CorrelationKey = correlationKey;
 }
Example #2
0
 public DymeConfig AddProperty(string name, string[] values, ExpansionTypeEnum expansionType, string correlationKey = null)
 {
     Properties.Add(new DymeConfigProperty(name, values, expansionType, correlationKey));
     return(this);
 }
Example #3
0
 public DymeConfig AddProperty(string name, string[] values, ExpansionTypeEnum expansionType)
 {
     Properties.Add(new DymeConfigProperty(name, values, expansionType));
     return(this);
 }