Exemple #1
0
        public QueryStringFilterStateConfiguration WithField(string path, IMask mask = null)
        {
            var rule = new TextMaskingRule()
            {
                Field = path, Mask = mask
            };

            _rules.Add(rule);
            return(this);
        }
Exemple #2
0
 public TextLogMaskingFilter(TextMaskingRule rule) : this(new TextMaskingRule[] { rule })
 {
 }