TypeConverter.GetPropertiesSupported 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.
Indica se questo oggetto supporta le proprietà.
Overload
GetPropertiesSupported(ITypeDescriptorContext) |
Indica se questo oggetto supporta proprietà, usando il contesto specificato. |
GetPropertiesSupported() |
Indica se questo oggetto supporta le proprietà. |
GetPropertiesSupported(ITypeDescriptorContext)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Indica se questo oggetto supporta proprietà, usando il contesto specificato.
public:
virtual bool GetPropertiesSupported(System::ComponentModel::ITypeDescriptorContext ^ context);
public virtual bool GetPropertiesSupported (System.ComponentModel.ITypeDescriptorContext context);
public virtual bool GetPropertiesSupported (System.ComponentModel.ITypeDescriptorContext? context);
abstract member GetPropertiesSupported : System.ComponentModel.ITypeDescriptorContext -> bool
override this.GetPropertiesSupported : System.ComponentModel.ITypeDescriptorContext -> bool
Public Overridable Function GetPropertiesSupported (context As ITypeDescriptorContext) As Boolean
Parametri
- context
- ITypeDescriptorContext
Oggetto ITypeDescriptorContext che fornisce un contesto di formato.
Restituisce
true
se è necessario chiamare GetProperties(Object) per individuare le proprietà dell'oggetto. In caso contrario, false
.
Commenti
Per come è implementato in questa classe, il metodo restituisce sempre false
.
Note per gli eredi
Eseguire l'override di questo metodo se il tipo da 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
.
Vedi anche
Si applica a
GetPropertiesSupported()
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Indica se questo oggetto supporta le proprietà.
public:
bool GetPropertiesSupported();
public bool GetPropertiesSupported ();
member this.GetPropertiesSupported : unit -> bool
Public Function GetPropertiesSupported () As Boolean
Restituisce
true
se è necessario chiamare GetProperties(Object) per individuare le proprietà dell'oggetto. In caso contrario, false
.
Commenti
Per come è implementato in questa classe, il metodo restituisce sempre false
.