Exemplo n.º 1
0
 public override bool IsDefined(Type attributeType, bool inherit)
 {
     return(CustomAttributeProvider.IsDefined(this, attributeType, inherit));
 }
Exemplo n.º 2
0
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttributeProvider.GetCustomAttributes(Member, inherit));
 }
Exemplo n.º 3
0
 public override object[] GetCustomAttributes(Type attributeType, bool inherit)
 {
     return(CustomAttributeProvider.GetCustomAttributes(this, attributeType, inherit));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Returns an array of all attributes defined on this member.
 /// Returns an empty array if no attributes are defined on this member.
 /// </summary>
 /// <param name="inherit">If true, look in base classes for inherited custom attributes.</param>
 public object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttributeProvider.GetCustomAttributes(this, inherit));
 }