Beispiel #1
0
 public CleanseMethod(TaintFlags flag, string syntax,
                      string _namespace, string type, string method, List <DiagnosticId> ruleIds)
 {
     this.Flag      = flag;
     this.Syntax    = syntax;
     this.Namespace = _namespace;
     this.Type      = type;
     this.Method    = method;
     this.RuleIds   = ruleIds;
 }
Beispiel #2
0
 public CleanseMethod(TaintFlags flag, string syntax,
                      string _namespace, string type, string method) : this(flag, syntax, _namespace, type, method, new List <DiagnosticId>())
 {
 }