TypeConverter.GetProperties Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce una raccolta di proprietà per il tipo di matrice specificato dal parametro value.
Overload
GetProperties(Object) |
Restituisce una raccolta di proprietà per il tipo di matrice specificato dal parametro value. |
GetProperties(ITypeDescriptorContext, Object) |
Restituisce un insieme di proprietà per il tipo di matrice specificato dal parametro del valore utilizzando il contesto specificato. |
GetProperties(ITypeDescriptorContext, Object, Attribute[]) |
Restituisce una raccolta di proprietà per il tipo di matrice specificato dal parametro del valore usando il contesto e gli attributi specificati. |
GetProperties(Object)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Restituisce una raccolta di proprietà per il tipo di matrice specificato dal parametro 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
Parametri
Restituisce
Oggetto PropertyDescriptorCollection con le proprietà esposte per questo tipo di dati oppure null
in assenza di proprietà.
Commenti
Per come è implementato in questa classe, il metodo restituisce sempre null
.
Per impostazione predefinita, un tipo non restituisce proprietà. Un'implementazione semplice di questo metodo può chiamare GetProperties per il tipo di dati corretto.
Si applica a
GetProperties(ITypeDescriptorContext, Object)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Restituisce un insieme di proprietà per il tipo di matrice specificato dal parametro del valore utilizzando il contesto specificato.
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
Parametri
- context
- ITypeDescriptorContext
Oggetto ITypeDescriptorContext che fornisce un contesto di formato.
Restituisce
Oggetto PropertyDescriptorCollection con le proprietà esposte per questo tipo di dati oppure null
in assenza di proprietà.
Commenti
Utilizzare il parametro context
per estrarre ulteriori informazioni sull'ambiente dal quale viene richiamato il convertitore. Questo parametro può essere null
, quindi controllarlo sempre. Anche le proprietà dell'oggetto di contesto possono restituire null
.
Per come è implementato in questa classe, il metodo restituisce sempre null
.
Per impostazione predefinita, un tipo non restituisce proprietà. Un'implementazione semplice di questo metodo può chiamare GetProperties per il tipo di dati corretto.
Vedi anche
Si applica a
GetProperties(ITypeDescriptorContext, Object, Attribute[])
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Restituisce una raccolta di proprietà per il tipo di matrice specificato dal parametro del valore usando il contesto e gli attributi specificati.
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
Parametri
- context
- ITypeDescriptorContext
Oggetto ITypeDescriptorContext che fornisce un contesto di formato.
Restituisce
Oggetto PropertyDescriptorCollection con le proprietà esposte per questo tipo di dati oppure null
in assenza di proprietà.
Commenti
Per come è implementato in questa classe, il metodo restituisce sempre null
.
Note per gli eredi
Eseguire l'override di questo metodo se il tipo che si desidera convertire supporta le proprietà.
Utilizzare il parametro context
per estrarre ulteriori informazioni sull'ambiente dal quale viene richiamato il convertitore. Questo parametro può essere null
, quindi controllarlo sempre. Anche le proprietà dell'oggetto di contesto possono restituire null
.
La matrice di attributi viene usata per filtrare la matrice. Gli attributi possono avere una combinazione di Type oggetti e Attribute . Il filtro viene definito dalle regole seguenti:
Un Type oggetto viene considerato come un carattere jolly, che corrisponde a una proprietà che include nel Type set di attributi.
Se una proprietà non ha una Attribute della stessa classe, la proprietà non è inclusa nella matrice restituita.
Se l'attributo è un'istanza di Attribute, la proprietà deve essere una corrispondenza esatta o non è inclusa nella matrice restituita.
Se viene specificata un'istanza Attribute di ed è la proprietà predefinita, viene inclusa nella matrice restituita anche se nella proprietà non è presente alcuna istanza di Attribute .