JSMethod.GetCustomAttributes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an array that contains the custom attributes that are attached to this method.
Overloads
GetCustomAttributes(Boolean) |
This API supports the product infrastructure and is not intended to be used directly from your code. Returns an array that contains the custom attributes that are attached to this method. |
GetCustomAttributes(Type, Boolean) |
This API supports the product infrastructure and is not intended to be used directly from your code. Returns an array that contains the custom attributes that are attached to this method, searching only for attributes of the specified type. |
GetCustomAttributes(Boolean)
Returns an array that contains the custom attributes that are attached to this method.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
override cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public override object[] GetCustomAttributes (bool inherit);
override this.GetCustomAttributes : bool -> obj[]
Public Overrides Function GetCustomAttributes (inherit As Boolean) As Object()
Parameters
- inherit
- Boolean
true
to search this member's inheritance hierarchy to find the attributes.
Returns
An array of Object objects that has zero elements.
See also
Applies to
GetCustomAttributes(Type, Boolean)
Returns an array that contains the custom attributes that are attached to this method, searching only for attributes of the specified type.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
override cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ t, bool inherit);
public override object[] GetCustomAttributes (Type t, bool inherit);
override this.GetCustomAttributes : Type * bool -> obj[]
Public Overrides Function GetCustomAttributes (t As Type, inherit As Boolean) As Object()
Parameters
- t
- Type
The type of attribute to search for.
- inherit
- Boolean
true
to search this member's inheritance hierarchy to find the attributes.
Returns
An array of Object objects that has zero elements.