3

If I know that my main thread has certain permissions (specifically permissions to access the event log),

Will any threads I create in my application also have the same permissions?

i.e.

Do permissions propogate across threads?

Mohit S
  • 13,723
  • 6
  • 34
  • 69
DukeOfMarmalade
  • 2,680
  • 10
  • 41
  • 70
  • 1
    SecurityContext is part of the thread's ExeuctionContext, see http://stackoverflow.com/questions/1951924/excecutioncontext-of-threads/1952142#1952142 – Hans Passant Jan 17 '12 at 11:21

1 Answers1

0

No,The impersonation token does not propagate across threads , you need to obtain it for every thread you starting

Rizwan
  • 118
  • 1
  • 6