如何将服务器功能作为STAThread运行?

时间:2015-11-18 09:47:59

标签: c#

我的控制器类中有一个函数 - 即使用xml格式文件

之类的东西
public URI convertXML(Uri pathToFile)
{
  // conversion goes here
}

我想将其作为

运行
[STAThread]
   public URI convertXML(Uri pathToFile)
    {
      // conversion goes here
    }

类似

 public ActionResult DoTheThingsRight()
 {
      //...
      var resultingURI = [as STAThread] convertXML(filePath); 
 }

我找到How to run something in the STA thread?  但我不明白这个样本中的GetFooFromAsyncResult是什么,所以 也许有另一种简单的方法可以做到这一点?

0 个答案:

没有答案