TypeDescriptor.GetComponentName 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 il nome del componente specificato.
Overload
GetComponentName(Object) |
Restituisce il nome del componente specificato usando il descrittore di tipo predefinito. |
GetComponentName(Object, Boolean) |
Restituisce il nome del componente specificato usando un descrittore di tipo personalizzato. |
GetComponentName(Object)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
Restituisce il nome del componente specificato usando il descrittore di tipo predefinito.
public:
static System::String ^ GetComponentName(System::Object ^ component);
public static string GetComponentName (object component);
public static string? GetComponentName (object component);
static member GetComponentName : obj -> string
Public Shared Function GetComponentName (component As Object) As String
Parametri
Restituisce
Oggetto String che contiene il nome del componente specificato o null
se non c'è il nome del componente.
Eccezioni
component
è null
.
component
è un oggetto remoto tra processi.
Commenti
In genere, questo metodo restituisce il nome per il sito del componente, se presente. Ad esempio, il nome della classe per un pulsante è "System.Windows. Forms. Pulsante".
Questo metodo equivale al metodo di GetComponentName(Object, Boolean) overload con un secondo parametro di false
.
Questo metodo viene usato in fase di progettazione per recuperare il nome di un'istanza di un componente.
Vedi anche
- GetComponentName()
- GetClassName
- GetFullComponentName(Object)
- CreateInstance(IServiceProvider, Type, Type[], Object[])
- GetReflectionType
Si applica a
GetComponentName(Object, Boolean)
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
Restituisce il nome del componente specificato usando un descrittore di tipo personalizzato.
public:
static System::String ^ GetComponentName(System::Object ^ component, bool noCustomTypeDesc);
public static string GetComponentName (object component, bool noCustomTypeDesc);
public static string? GetComponentName (object component, bool noCustomTypeDesc);
static member GetComponentName : obj * bool -> string
Public Shared Function GetComponentName (component As Object, noCustomTypeDesc As Boolean) As String
Parametri
- noCustomTypeDesc
- Boolean
true
per non considerare le informazioni di descrizione dei tipi personalizzati; in caso contrario, false
.
Restituisce
Nome della classe per il componente specificato oppure null
se non c'è il nome del componente.
Eccezioni
component
è null
.
component
è un oggetto remoto tra processi.
Commenti
Questo metodo viene usato in fase di progettazione per recuperare il nome di un'istanza di un componente. In genere, questo metodo restituisce il nome per il sito del componente, se presente. Ad esempio, il nome della classe per un pulsante è "System.Windows. Forms. Pulsante". Se il componente implementa l'interfaccia ICustomTypeDescriptor , può restituire un nome alternativo.
Vedi anche
- GetComponentName()
- ICustomTypeDescriptor
- GetClassName
- GetFullComponentName(Object)
- CreateInstance(IServiceProvider, Type, Type[], Object[])
- GetReflectionType