LinkArea.LinkAreaConverter.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.
Recupera il set di proprietà per questo tipo.
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);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The Type of value cannot be statically discovered. The public parameterless constructor or the 'Default' static field may be trimmed from the Attribute's Type.")]
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
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The Type of value cannot be statically discovered. The public parameterless constructor or the 'Default' static field may be trimmed from the Attribute's Type.")>]
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
Parametri
- context
- ITypeDescriptorContext
Descrittore di tipo tramite il quale può essere fornito un contesto aggiuntivo.
- value
- Object
Valore dell'oggetto per cui ottenere le proprietà.
- attributes
- Attribute[]
Attributi dell'oggetto per cui ottenere le proprietà.
Valori restituiti
Set di proprietà che devono essere esposte per questo tipo di dati. Se non devono essere esposte proprietà, potrebbe restituire null. L'implementazione predefinita restituisce sempre null.
- Attributi
Commenti
Per impostazione predefinita, un tipo non restituisce alcuna proprietà. Un'implementazione semplice di questo metodo può semplicemente chiamare GetProperties per il tipo di dati corretto.