Threads.Item 方法
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
Function Item ( _
index As Object _
) As Thread
Thread Item(
Object index
)
Thread^ Item(
[InAttribute] Object^ index
)
abstract Item :
index:Object -> Thread
function Item(
index : Object
) : Thread
参数
- index
类型:System.Object
必选。要返回的 Thread 对象的索引。
返回值
类型:EnvDTE.Thread
Thread 对象。
备注
如果集合找不到对应于索引值的对象,则 Item 方法引发 System.ArgumentException 异常。
示例
下面的示例演示如何使用 Item 方法。
若要测试此方法,请执行下列操作:
在辅助线程的回调方法内设置断点。
以调试模式运行目标应用程序。
当应用程序停在该断点处时,运行外接程序。
public static void ThreadsItem(DTE dte)
{
EnvDTE.Threads threads = dte.Debugger.CurrentProgram.Threads;
MessageBox.Show("\nThe thread name: " +
threads.Item(2).Name, "Testing Threads Item Method");
}
Shared Sub ThreadsItem(ByRef dte As EnvDTE.DTE)
Dim threads As EnvDTE.Threads = dte.Debugger.CurrentProgram.Threads
MessageBox.Show("The thread name: " + threads.Item(2).Name, _
"Threads Test - Item Method")
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。