public QueryStringFilterStateConfiguration WithField(string path, IMask mask = null) { var rule = new TextMaskingRule() { Field = path, Mask = mask }; _rules.Add(rule); return(this); }
public TextLogMaskingFilter(TextMaskingRule rule) : this(new TextMaskingRule[] { rule }) { }