Beispiel #1
0
 public TransformOperationBuilder Token(string token, string replaceWith)
 {
     Actions.Add(s => s.GlobalTransformers.Add(Transformers.Token(token, replaceWith)));
     return(this);
 }
Beispiel #2
0
 public OperationStep TransformToken(string token, string replaceWith)
 => TransformWith(Transformers.Token(token, replaceWith));