ie

static void Main(string[] args)
{
    var thread = new Thread(WhoAmI);
    thread.Start();
}

static void WhoAmI()
{ 
    //can i access network resources as the user who ran Main?
}
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Yes, they do.

// So yes, you can.
link|improve this answer
you were 1st so giving you the points, + nice // comment humour – Noel Kennedy Jan 17 '10 at 13:22
feedback

Threads don't have identity, processes do. So yes.

Edit: As Michael points out, it is possible for a thread's execution context to impersonate a user other than the one that owns the current process. But this will not happen unless you do it explicitly.

link|improve this answer
Threads can have a separate identity if they're impersonating. – Michael Jan 15 '10 at 23:54
Michael is right. Thread.ExecutionContext can flow this identity onto other threads. – Hans Passant Jan 16 '10 at 0:33
feedback

Yes. In fact, it would take some effort to make the Thread able to access resources as a different user.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.