I have a Process that runs an exe:
Process pr = new Process();
pr.StartInfo.FileName = @"wput.exe";
etc
I want to be able to pause and stop this Process. Are there any events I can raise to achieve this. I have multiple Processes working in my app, each with it's own Thread. I looked at pausing Threads but that would not give me the result I want.