Process 接口
用于检查和操作进程。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
<GuidAttribute("5C5A0070-F396-4E37-A82A-1B767E272DF9")> _
Public Interface Process
[GuidAttribute("5C5A0070-F396-4E37-A82A-1B767E272DF9")]
public interface Process
[GuidAttribute(L"5C5A0070-F396-4E37-A82A-1B767E272DF9")]
public interface class Process
[<GuidAttribute("5C5A0070-F396-4E37-A82A-1B767E272DF9")>]
type Process = interface end
public interface Process
Process 类型公开以下成员。
属性
名称 | 说明 | |
---|---|---|
Collection | 返回包含某个对象的集合,该对象支持此属性或包含在此代码构造中。对于不是从集合中获得的对象,返回 null。 | |
DTE | 获取顶级扩展性对象。 | |
Name | 获取对象的名称。 | |
Parent | 获取 Process 对象的直接父对象。 | |
ProcessID | 获取指派给此进程的 Win32 ID 号。 | |
Programs | 获取由此进程管理的程序的集合。 |
页首
方法
名称 | 说明 | |
---|---|---|
Attach | 使调试器附加此进程。 | |
Break | 使给定进程暂停执行以便可以分析其当前状态。 | |
Detach | 使调试器与该进程分离。 | |
Terminate | 终止此进程。 |
页首