TypeBuilder.GetProperties(BindingFlags) メソッド

定義

指定のとおりに、この型によって宣言または継承されたパブリック プロパティと非パブリック プロパティをすべて返します。

public:
 override cli::array <System::Reflection::PropertyInfo ^> ^ GetProperties(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.PropertyInfo[] GetProperties (System.Reflection.BindingFlags bindingAttr);
override this.GetProperties : System.Reflection.BindingFlags -> System.Reflection.PropertyInfo[]
Public Overrides Function GetProperties (bindingAttr As BindingFlags) As PropertyInfo()

パラメーター

bindingAttr
BindingFlags

この呼び出しの属性。 これは InvokeMethodNonPublic など、BindingFlags からのビット フラグでなければなりません。

戻り値

nonPublic が使用されている場合、この型で定義されているパブリック プロパティと非パブリック プロパティを表す PropertyInfo オブジェクトの配列を返します。 それ以外の場合、パブリック プロパティのみが返されます。

例外

不完全な型では、このメソッドは実装されません。

注釈

または Assembly.GetType を使用して型をType.GetType取得し、取得した型でリフレクションを使用します。

適用対象