Exemplo n.º 1
0
 public MemberExceptionBase(string match, tagmodifier cfg)
 {
     nameRegex = new Regex(match, RegexOptions.Compiled);
     exclude   = cfg.exclude;
     if (null != cfg.alter)
     {
         alterActions.AddRange(AlterActionBase.Create(cfg.alter));
     }
 }
Exemplo n.º 2
0
 public TagException(string pattern, tagmodifier cfg)
     : base(pattern.Replace("-", ""), cfg)
 {
 }
Exemplo n.º 3
0
 public MemberException(string pattern, tagmodifier cfg)
     : base(pattern, cfg)
 {
 }
Exemplo n.º 4
0
 public static MemberExceptionBase CreateTagException(tagmodifier m)
 {
     return(new TagException(m.match, m));
 }