Breakpoint.DTE 属性
获取顶级扩展性对象。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property DTE As DTE
Get
DTE DTE { get; }
property DTE^ DTE {
DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE
属性值
类型:EnvDTE.DTE
一个 DTE 对象。
备注
在 Visual Studio 中,DTE 对象是自动化模型的根,其他对象模型常常称之为“应用程序”。
示例
下面的示例演示如何使用 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。