Пример #1
0
 public RegexLogStep(string input, RegexStep step, string output)
 {
     _input  = input;
     _step   = step;
     _output = output;
 }
Пример #2
0
 public void Add(RegexStep step, string comment)
 {
     _step.Add(new RegexStep(step.Pattern, step.Replace, step.Options)); _comment.Add(comment);
 }
Пример #3
0
 // ----------------------------------------------------------------------------------------
 //  Constructors
 // ----------------------------------------------------------------------------------------
 public RegexLogStep(string input, string from, string to, string output)
 {
     _input  = input;
     _step   = new RegexStep(from, to);
     _output = output;
 }