mscorlib(4.0.0.0) API with additions
ICustomAttributeProvider.cs
2 
3 namespace System.Reflection
4 {
6  [ComVisible(true)]
7  public interface ICustomAttributeProvider
8  {
16  object[] GetCustomAttributes(Type attributeType, bool inherit);
17 
23  object[] GetCustomAttributes(bool inherit);
24 
30  bool IsDefined(Type attributeType, bool inherit);
31  }
32 }
object [] GetCustomAttributes(Type attributeType, bool inherit)
Returns an array of custom attributes defined on this member, identified by type, or an empty array i...
Definition: __Canon.cs:3
bool IsDefined(Type attributeType, bool inherit)
Indicates whether one or more instance of attributeType is defined on this member.
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
Provides custom attributes for reflection objects that support them.