CollectionConverter.GetProperties メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したコンテキストと属性を使用して、value パラメーターで指定された配列型のプロパティのコレクションを取得します。
public:
override System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(System::ComponentModel::ITypeDescriptorContext ^ context, System::Object ^ value, cli::array <Attribute ^> ^ attributes);
public override System.ComponentModel.PropertyDescriptorCollection GetProperties (System.ComponentModel.ITypeDescriptorContext context, object value, Attribute[] attributes);
public override System.ComponentModel.PropertyDescriptorCollection GetProperties (System.ComponentModel.ITypeDescriptorContext? context, object value, Attribute[]? attributes);
override this.GetProperties : System.ComponentModel.ITypeDescriptorContext * obj * Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overrides Function GetProperties (context As ITypeDescriptorContext, value As Object, attributes As Attribute()) As PropertyDescriptorCollection
パラメーター
- context
- ITypeDescriptorContext
書式指定コンテキストを提供する ITypeDescriptorContext。
戻り値
このデータ型について公開されているプロパティを持つ PropertyDescriptorCollection。または、プロパティがない場合は null
。 このメソッドは常に null
を返します。
注釈
context
パラメーターを使用すると、このコンバーターが呼び出されている環境についての追加情報を抽出できます。 これは null
の場合があるため、常に確認してください。 また、コンテキスト オブジェクトのプロパティも null
を返す場合があります。
渡す属性配列は、配列のフィルター処理に使用されます。 属性には、 と Attribute オブジェクトをType組み合わせることができます。 フィルター処理は、次の規則によって定義されます。
プロパティに同じクラスの が Attribute 含まれていない場合、プロパティは返される配列に含まれません。
属性が の Attributeインスタンスである場合、プロパティは完全に一致する必要があります。または、返される配列には含まれません。
インスタンスが Attribute 指定され、それが既定のプロパティである場合、 プロパティに のインスタンス Attribute がない場合でも、返される配列に含まれます。
コレクションはプロパティをサポートしていません。そのため、このメソッドは常に を返します null
。
適用対象
こちらもご覧ください
.NET