I have a function which requires to be run in STA apartment state. I wan't to check if it is being run as STA, and if not spawn a new thread which runs in STA.

How can I check which apartment state the current thread is being run in?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted
Thread.CurrentThread.GetAppartmentState()
link|improve this answer
feedback

Use this or a similar method inside the function:

System.Threading.Thread.CurrentThread.GetApartmentState
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.