I simply tried this:

    public class FooJob : IJob
{
	public FooJob() { }

	public void Execute(JobExecutionContext context)
	{
		Thread.CurrentThread.SetApartmentState(ApartmentState.STA);
	}
}

But it produces InvalidOperationException. Ideas?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The thread has already been allocated from the thread pool so it can't become a thread created in an STA. What you can do is launch an STA thread from your IJob.Execute method.

public void Execute(JobExecutionContext context)
{
    Thread t= new Thread(DoSomeWork);
    t.SetApartmentState(ApartmentState.STA);
    t.Start();
    t.Join();
}
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.