Proprietà AddIn.Object
Ottiene o imposta l'oggetto che supporta l'oggetto AddIn specificato.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
Property Object As Object
Get
Set
Object Object { get; set; }
property Object^ Object {
Object^ get ();
void set (Object^ value);
}
abstract Object : Object with get, set
function get Object () : Object
function set Object (value : Object)
Valore proprietà
Tipo: System.Object
- Un oggetto di automazione OLE aggiuntivo per supportare altri componenti aggiuntivi.
Esempi
public void AddinObjExample(AddIn addIn)
{
try
{
// If the Add-in's namespace is AnAddin and the constructor
// is Connect(an object for implementing an Addin),
// someObject is an instance of AnAddin.Connect.
Object someObject = addIn.Object;
MessageBox.Show(someObject.GetType().ToString());
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
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