Process methods
Use the methods in the Process folder (under Utilities) to start, stop, and interact with processes in an application.
Methods
Method | Description | Parameters | Returns |
CreateProcessStartInfo | Starts a process resource and associates it with a Process component. | string | A new Process |
GetCurrentProcess | Gets a new Process component and associates it with the currently active process. | New Process component | |
GetProcesses | Creates a new Process component for each process resource on the local computer. | An array of type Process | |
GetProcessById | Creates a new Process component, and associates it with the existing process resource that you specify. | Int32 | A new Process component |
GetProcessesByName | Creates an array of new Process components and associates them with the existing process resources that all share the specified process name. | string | An array of type Process |
KillProcess | Forces termination of the underlying process. | ||
OpenInFileExplorer | Opens a Process in Windows File Explorer. | ||
StartProcess | Starts a process resource and associates it with a Process component. | String | A new Process |
Previous topic Messages methods and components Next topic System information methods