_Type.GetProperties 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为 COM 对象提供对 GetProperties 方法的与版本无关的访问。
重载
GetProperties() |
为 COM 对象提供对 GetProperties() 方法的与版本无关的访问。 |
GetProperties(BindingFlags) |
为 COM 对象提供对 GetProperties(BindingFlags) 方法的与版本无关的访问。 |
注解
此方法用于从非托管代码访问托管类,不应从托管代码调用。
方法 Type.GetProperties 获取当前 Type的属性。
GetProperties()
为 COM 对象提供对 GetProperties() 方法的与版本无关的访问。
public:
cli::array <System::Reflection::PropertyInfo ^> ^ GetProperties();
public System.Reflection.PropertyInfo[] GetProperties ();
abstract member GetProperties : unit -> System.Reflection.PropertyInfo[]
Public Function GetProperties () As PropertyInfo()
返回
表示当前 PropertyInfo 的所有公共属性的 Type 对象数组。
或
如果当前 PropertyInfo 没有公共属性,则为 Type 类型的空数组。
注解
此方法用于从非托管代码访问托管类,不应从托管代码调用。
方法 Type.GetProperties 返回当前 Type的所有公共属性。
适用于
GetProperties(BindingFlags)
为 COM 对象提供对 GetProperties(BindingFlags) 方法的与版本无关的访问。
public:
cli::array <System::Reflection::PropertyInfo ^> ^ GetProperties(System::Reflection::BindingFlags bindingAttr);
public System.Reflection.PropertyInfo[] GetProperties (System.Reflection.BindingFlags bindingAttr);
abstract member GetProperties : System.Reflection.BindingFlags -> System.Reflection.PropertyInfo[]
Public Function GetProperties (bindingAttr As BindingFlags) As PropertyInfo()
参数
返回
表示当前 PropertyInfo 的匹配指定绑定约束的所有属性的 Type 对象数组。
- 或 -
如果当前 PropertyInfo 没有属性,或者如果没有一个属性匹配绑定约束,则为 Type 类型的空数组。
注解
此方法用于从非托管代码访问托管类,不应从托管代码调用。
方法 Type.GetProperties 使用指定的绑定约束搜索当前 Type的属性。