ProcessThread name

  • Thread starter Thread starter Steph
  • Start date Start date
S

Steph

hello, i ve create a stress test prog for IIs.
And now i want know the domain name of the process...

PID = virtual domaine name ID;
ProcessThreadCollection ThreadList = Process.GetProcessById(PID).Threads;

foreach (ProcessThread TempThread in ThreadList)
{
int ProcessIDChild = TempThread.Id;
string PIDname = ??; // i want retrieve : www.johndoe.com


thx for your experience
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top