This documentation is archived and is not being maintained.
PerformanceMonitor.processId Method [AX 2012]
Returns the processId value of the process that is running this method.
Run On
Called
Return Value
Type:
int
The processId value of the Microsoft Dynamics AX process that is running this method.
static void processIdDemo(args a)
{
PerformanceMonitor pm = new PerformanceMonitor();
print pm.processId();
pause;
}