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