Process4 Interface

 

The T:EnvDTE90s.Process4 object is used to examine and manipulate processes. The T:EnvDTE90.Process4 object supersedes the T:EnvDTE80.Process3, Process2, and Process objects. To use Debugger4, you must add a reference to EnvDTE90a.dll. For native development, you must add a reference to dte90a.tlb.

Namespace:   EnvDTE90a
Assembly:  EnvDTE90a (in EnvDTE90a.dll)

[GuidAttribute("49DB35DD-FDD9-43BA-BD3F-2BAF50F5C45E")]
public interface Process4 : Process3

NameDescription
System_CAPS_pubpropertyCollection

Gets a Processes collection that contains the object that supports this property or is contained within this code construct.

System_CAPS_pubpropertyCommandLine

Gets the command line that started the program being debugged in Visual Studio. This is a read-only property.

System_CAPS_pubpropertyCurrentDirectory

Gets the current directory of the process being debugged. This is a read-only property.

System_CAPS_pubpropertyDTE

Gets the top-level extensibility object, the DTE object.

System_CAPS_pubpropertyEnvironmentVariables

This read-only property returns an array that contains the environment variables defined for the process being debugged.

System_CAPS_pubpropertyIsBeingDebugged

Gets whether the current process is being debugged.

System_CAPS_pubpropertyModules

Gets a collection of module objects associated with this process.

System_CAPS_pubpropertyName

Gets the name of the process.

System_CAPS_pubpropertyParent

Gets the immediate parent object of a Process2 object.

System_CAPS_pubpropertyProcessID

Gets the ID number assigned to this process.

System_CAPS_pubpropertyPrograms

Gets a collection of Program objects.

System_CAPS_pubpropertyThreads

Gets the threads associated with this process.

System_CAPS_pubpropertyTransport

Gets the Transport being used to debug this process.

System_CAPS_pubpropertyTransportQualifier

Gets a computer name or an IP address.

System_CAPS_pubpropertyUserName

Gets the user name associated with this process.

NameDescription
System_CAPS_pubmethodAttach()

Causes the debugger to attach this process.

System_CAPS_pubmethodAttach2(Object)

Similar to M:EnvDTE90.Process4.Attach, causes the debugger to attach this process, only it allows you to specify an engine or set of engines.

System_CAPS_pubmethodBreak(Boolean)

Causes the given process to pause its execution so that its current state can be analyzed.

System_CAPS_pubmethodDetach(Boolean)

Causes the debugger to detach from this process.

System_CAPS_pubmethodTerminate(Boolean)

Terminates this process.

Return to top
Show: