Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the processId value of the process that is running this method.
Syntax
public int processId()
Run On
Called
Return Value
Type: int
The processId value of the Microsoft Dynamics AX process that is running this method.
Examples
static void processIdDemo(args a)
{
PerformanceMonitor pm = new PerformanceMonitor();
print pm.processId();
pause;
}