Breakpoint.DTE 屬性
取得最上層的擴充性物件。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property DTE As DTE
DTE DTE { get; }
property DTE^ DTE {
DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE
屬性值
型別:EnvDTE.DTE
DTE 物件。
備註
在 Visual Studio 中,DTE 物件是 Automation 模型的根物件,Automation 物件在其他物件模型中經常稱為「應用程式」。
範例
下列範例示範如何使用 DTE 屬性。
若要測試這個屬性:
請在目標應用程式中設定中斷點。
執行增益集。
public static void DTE(DTE dte)
{
// Setup debug Output window.
Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
w.Visible = true;
OutputWindow ow = (OutputWindow)w.Object;
OutputWindowPane owp = ow.OutputWindowPanes.Add("DTE Property Test: ");
owp.Activate();
// dte is a reference to the DTE object passed to you by the
// OnConnection method that you implement when you create an add-in.
DTE DTEProp = dte.Debugger.Breakpoints.Item(1).DTE ;
owp.OutputString("Edition of the environment: " + DTEProp.Edition);
}
' Set a breakpoint in the target application. Run the application in the
' debug mode.When the program stops at the breakpoint, run the add-in.
Shared Sub DTEProperty(ByRef dte As EnvDTE.DTE)
Dim DTEProp As DTE
DTEProp = dte.Debugger.Breakpoints.Item(1).DTE
MessageBox.Show("Edition of the environment: " + DTEProp.Edition)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。