Tagged Questions
10
votes
5answers
12k views
Single-Threaded Apartments vs Multi-Threaded Apartments
All ThreadPool threads are in the
multithreaded apartment.
--As per the MSDN
What does that mean? I am really concerned with what the difference between the multi vs single threaded apartment ...
2
votes
1answer
845 views
Asynchronous operations within an asynchronous operation
My multi-threading knowledge is still pretty rudimentary, so would really appreciate some pointers here. I have an interface, IOperationInvoker (from WCF) which has the following methods:
...
1
vote
1answer
535 views
How to make Quartz.net job to run in a single-threaded apartment?
I simply tried this:
public class FooJob : IJob
{
public FooJob() { }
public void Execute(JobExecutionContext context)
{
Thread.CurrentThread.SetApartmentState(ApartmentState.STA);
}
}
...
0
votes
5answers
5k views
C#: WebBrowser.Navigated Only Fires when I MessageBox.Show();
I have a WebBrowser control which is being instantiated dynamically from a background STA thread because the parent thread is a BackgroundWorker and has lots of other things to do.
The problem is ...