JSMethodInfo.GetCustomAttributes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个数组,其中包含附加到此方法的自定义特性。
重载
GetCustomAttributes(Boolean) |
此 API 支持产品基础结构,不能在代码中直接使用。 返回一个数组,其中包含附加到此方法的自定义特性。 |
GetCustomAttributes(Type, Boolean) |
此 API 支持产品基础结构,不能在代码中直接使用。 返回一个数组,其中包含附加到此方法的自定义特性(只搜索指定类型的特性)。 |
GetCustomAttributes(Boolean)
返回一个数组,其中包含附加到此方法的自定义特性。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
override cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public override sealed object[] GetCustomAttributes (bool inherit);
override this.GetCustomAttributes : bool -> obj[]
Public Overrides NotOverridable Function GetCustomAttributes (inherit As Boolean) As Object()
参数
- inherit
- Boolean
如果为 true
,则搜索此成员的继承层次结构以查找特性。
返回
Object[]
一个数组,其中包含附加到此方法的自定义特性;若没有任何自定义特性,则为包含零个元素的数组。
另请参阅
适用于
GetCustomAttributes(Type, Boolean)
返回一个数组,其中包含附加到此方法的自定义特性(只搜索指定类型的特性)。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
override cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ type, bool inherit);
public override sealed object[] GetCustomAttributes (Type type, bool inherit);
override this.GetCustomAttributes : Type * bool -> obj[]
Public Overrides NotOverridable Function GetCustomAttributes (type As Type, inherit As Boolean) As Object()
参数
- type
- Type
要搜索的属性的类型。
- inherit
- Boolean
如果为 true
,则搜索此成员的继承层次结构以查找特性。
返回
Object[]
一个数组,其中包含附加到此方法的自定义特性;若没有任何自定义特性,则为包含零个元素的数组。