Example #1
0
 public AttributeData(string methodName, Type attributeType, CheckAttributeApplicable check = null)
 {
     MethodName               = methodName;
     AttributeType            = attributeType;
     CheckAttributeApplicable = check;
 }
Example #2
0
 public AttributeDescription(string methodName, string attributeName, CheckAttributeApplicable check = null)
 {
     MethodName               = methodName;
     AttributeName            = attributeName;
     CheckAttributeApplicable = check;
 }