Attribute.GetCustomAttributes Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Include Protected Members
Include Inherited Members
Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members
Retrieves an array of the custom attributes applied to an assembly, module, type member, or method parameter.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
GetCustomAttributes(Assembly) | Retrieves an array of the custom attributes applied to an assembly. A parameter specifies the assembly. | |
GetCustomAttributes(MemberInfo) | Retrieves an array of the custom attributes applied to a member of a type. A parameter specifies the member. | |
GetCustomAttributes(Module) | Retrieves an array of the custom attributes applied to a module. A parameter specifies the module. | |
GetCustomAttributes(ParameterInfo) | Retrieves an array of the custom attributes applied to a method parameter. A parameter specifies the method parameter. | |
GetCustomAttributes(Assembly, Boolean) | Retrieves an array of the custom attributes applied to an assembly. Parameters specify the assembly, and an ignored search option. | |
GetCustomAttributes(Assembly, Type) | Retrieves an array of the custom attributes applied to an assembly. Parameters specify the assembly, and the type of the custom attribute to search for. | |
GetCustomAttributes(MemberInfo, Boolean) | Retrieves an array of the custom attributes applied to a member of a type. Parameters specify the member, the type of the custom attribute to search for, and whether to search ancestors of the member. | |
GetCustomAttributes(MemberInfo, Type) | Retrieves an array of the custom attributes applied to a member of a type. Parameters specify the member, and the type of the custom attribute to search for. | |
GetCustomAttributes(Module, Boolean) | Retrieves an array of the custom attributes applied to a module. Parameters specify the module, and an ignored search option. | |
GetCustomAttributes(Module, Type) | Retrieves an array of the custom attributes applied to a module. Parameters specify the module, and the type of the custom attribute to search for. | |
GetCustomAttributes(ParameterInfo, Boolean) | Retrieves an array of the custom attributes applied to a method parameter. Parameters specify the method parameter, and whether to search ancestors of the method parameter. | |
GetCustomAttributes(ParameterInfo, Type) | Retrieves an array of the custom attributes applied to a method parameter. Parameters specify the method parameter, and the type of the custom attribute to search for. | |
GetCustomAttributes(Assembly, Type, Boolean) | Retrieves an array of the custom attributes applied to an assembly. Parameters specify the assembly, the type of the custom attribute to search for, and an ignored search option. | |
GetCustomAttributes(MemberInfo, Type, Boolean) | Retrieves an array of the custom attributes applied to a member of a type. Parameters specify the member, the type of the custom attribute to search for, and whether to search ancestors of the member. | |
GetCustomAttributes(Module, Type, Boolean) | Retrieves an array of the custom attributes applied to a module. Parameters specify the module, the type of the custom attribute to search for, and an ignored search option. | |
GetCustomAttributes(ParameterInfo, Type, Boolean) | Retrieves an array of the custom attributes applied to a method parameter. Parameters specify the method parameter, the type of the custom attribute to search for, and whether to search ancestors of the method parameter. |
Top