The apartment-state tag has no wiki summary.
3
votes
3answers
400 views
How many 'STA' threads can coexist inside a process?
I need multiple STA threads inside my ASP.NET application to use some COM components.
I read somewhere inside each process, only one STA thread can exist. I coded a sample project and made many ...
3
votes
2answers
1k views
NUnit GUI Runner and Apartment State
how do you set the apartment state in the NUnit GUI runner? I'm trying to run a single NUnit test with WatiN and I'm getting the message.
MyNamespace.LoginTests.CanLogin:
...
1
vote
2answers
531 views
How to check apartment state of current thread?
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 ...
1
vote
1answer
455 views
Winforms: One COM object needs an STAThread, the other needs an MTAThread. How can I use them?
I'm trying to build a Winforms application with two COM components. However, one of the components only works when using [MTAThread] and the other only works with [STAThread].
What would the ...
0
votes
1answer
96 views
can I modify the nature of the thread that will BeginInvoke my delegate?
I am implementing an interface that has a BeginSomething() and EndSomething() pair, and my implementation is in a method Execute()
So I create an Action action = Execute, and call action.BeginInvoke ...