/
GetProcessById Method

GetProcessById Method

Gets a Process from the process database by process ID.

public Process GetProcessById(int id);

Classes: Database


Parameters

value id

ID of the process to retrieve

Returns

Process object.


Example

The following example demonstrates retrieving a specific process from the database by process Id.

var process = Database.GetProcessById(1);

Remarks

Processes returned from this method are held in memory only. Any changes to the Process returned will not be saved until they are saved using a Database method.

Related content

UpdateProcess Method
UpdateProcess Method
More like this
GetProcessDynamic Method
GetProcessDynamic Method
More like this
InsertProcess Method
InsertProcess Method
More like this
Process Class
Process Class
More like this
DeleteProcessById Method
DeleteProcessById Method
More like this
SaveProcessDynamic Method
SaveProcessDynamic Method
More like this