Can I get the workflow process id in a web application?

I have an application that runs in an application pool that has multi-working processes.

I need to access the process ID in the controller to check for some problems that have occurred since I changed the application pool to use multiple workflows.

+8
asp.net-mvc asp.net-mvc-4 application-pool worker-process
source share
1 answer

Gets the process id

System.Diagnostics.Process.GetCurrentProcess().Id 
+15
source share

All Articles