Proprietà Reference3.DTE
Ottiene l'oggetto di estensibilità di primo livello.
Spazio dei nomi: VSLangProj80
Assembly: VSLangProj80 (in VSLangProj80.dll)
Sintassi
'Dichiarazione
ReadOnly Property DTE As DTE
Get
DTE DTE { get; }
property DTE^ DTE {
DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE
Valore proprietà
Tipo: EnvDTE.DTE
Un oggetto DTE.
Implementa
Note
In Visual Studio l'oggetto DTE è la radice del modello di automazione. In altri modelli a oggetti viene spesso chiamato "Applicazione".
Esempi
Nell'esempio riportato di seguito viene mostrato in che modo è possibile raggiungere l'oggetto DTE da un oggetto Reference3. Prima di eseguire l'esempio, aprire un progetto di Visual Basic o Visual C#. Per eseguire questo esempio come componente aggiuntivo, vedere Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione.
Il percorso predefinito per il riferimento aggiunto (adodb.dll) è: <directory radice di installazione>\Programmi\Microsoft.NET\Primary Interop Assemblies. Sostituire <file path> dell'esempio con questo percorso di file o un altro percorso appropriato.
Imports VSLangProj
Imports VSLangProj2
Imports VSLangProj80
Public Sub OnConnection(ByVal application As Object,_
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
applicationObject = CType(application, DTE2)
addInInstance = CType(addInInst, AddIn)
ReachDTEObject(applicationObject)
End Sub
Public Sub ReachDTEObject(ByVal dte As DTE2)
' The first project is a Visual Basic or C# project.
Dim vsProject As VSProject2 = _
CType(applicationObject.Solution.Projects.Item(1).Object, _
VSProject2)
Dim aRef As Reference3
' Replace the <file path> with an actual file path.
aRef = CType(vsProject.References.Add_
("<file path>\adodb.dll"), Reference3)
MsgBox("Added a reference named: " & aRef.Name.ToString())
MsgBox("Name of the containing solution for " & aRef.Name & _
vbCr & "reached through the DTE object is: " & vbCr & _
aRef.DTE.Solution.FullName.ToString())
End Sub
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
applicationObject = (DTE2)application;
addInInstance = (AddIn)addInInst;
ReachDTEObject(((DTE2)applicationObject));
}
public void ReachDTEObject(DTE2 dte)
{
// The first project is a Visual Basic or C# project.
VSProject2 vsProject =
((VSProject2)(applicationObject.Solution.Projects.Item(1).Object));
Reference3 aRef = null;
// Replace <file path> with an actual file path.
aRef = (Reference3)vsProject.References.Add
((@"<file path>\adodb.dll"));
MessageBox.Show ("Added a reference named: "
+ aRef.Name.ToString());
MessageBox.Show("Name of the containing solution for "
+ aRef.Name + "\n" + "reached through the DTE object is: " + "\n"
+ aRef.DTE.Solution.FullName.ToString());
}
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.