Does .net interop do cross-thread marshalling for COM or do I need to use CoMarshalInterThreadInterfaceInStream or similar? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:21:18Z http://stackoverflow.com/feeds/question/917283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/917283/does-net-interop-do-cross-thread-marshalling-for-com-or-do-i-need-to-use-comarsh 0 Does .net interop do cross-thread marshalling for COM or do I need to use CoMarshalInterThreadInterfaceInStream or similar? Rory 2009-05-27T18:24:20Z 2009-05-27T18:24:20Z <p>Can anyone give me a definitive answer as to whether I need to use something like CoMarshalInterThreadInterfaceInStream, CoGetInterfaceAndReleaseStream or GlobalInterfaceTable to marshall a COM interface between threads? In <a href="http://social.msdn.microsoft.com/Forums/en-US/clr/thread/852900e1-0351-4651-8e45-e36b94bc15f7/" rel="nofollow">this thread</a> some say interop does it for you, some say you need to use these calls. Which is it?</p> <p>Specifically I'm using various IHTMLxxx objects from mshtml while developing a Browser Helper Object within IE. I've never used methods like CoMarshalInterThreadInterfaceInStream, and never been aware of any problems this has caused. But perhaps it could be the cause of some intermittent un-repeatable problems...</p> <p>thanks.</p>