Exemple #1
0
 public PropertyHandlerEventArgs(NamespaceAttribute ns, bool isStatic, string name, string type)
     : base()
 {
     this.ns = ns;
     this.isStatic = isStatic;
     this.name = name;
     this.type = type;
 }
Exemple #2
0
 public SetterHandlerEventArgs(NamespaceAttribute ns, bool isStatic, string name, string parameters, string returnType)
     : base(ns, isStatic, name, parameters, returnType)
 {
 }
Exemple #3
0
 public MethodHandlerEventArgs(NamespaceAttribute ns, bool isStatic, string name, string parameters, string returnType)
     : base()
 {
     this.ns = ns;
     this.isStatic = isStatic;
     this.name = name;
     this.parameters = parameters;
     this.returnType = returnType;
 }