Proprietà AddIn.Name
Ottiene il nome del AddIn oggetto.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property Name As String
string Name { get; }
property String^ Name {
String^ get ();
}
abstract Name : string
function get Name () : String
Valore proprietà
Tipo: System.String
Stringa che rappresenta il nome del AddIn oggetto.
Esempi
public void AddinCollExample(AddIn addIn)
{
// For this example to work, there should be an add-in
// available in the Visual Studio enviroment.
string peers = "";
// Retrieve all peer elements of the addin.
foreach (AddIn someAddin in addIn.Collection)
{
if ((someAddin != addIn) && (someAddin.Name != null))
peers += someAddin.Name + "\n";
}
MessageBox.Show(addIn.Name + " has the following peer elements:\n\n" + peers);
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Altre risorse
Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione