Unable to cast COM object of type exception

前端 未结 4 1823
感情败类
感情败类 2020-12-09 09:34

I have the following code:

public void Test(IMyInterface iInterface)
{
  iInterface.CallMethod ( );
}

Which works fine. However, if I chang

4条回答
  •  萌比男神i
    2020-12-09 10:07

    This nasty, nasty exception arises because of a concept known as COM marshalling. The essence of the problem lies in the fact that in order to consume COM objects from any thread, the thread must have access to the type information that describes the COM object.

    In your scenario described, the reason it fails on the second thread is because the second thread does not have type information for the interface.

    You could try adding the following to your code:

    [ComImport]
    [Guid("23EB4AF8-BE9C-4b49-B3A4-24F4FF657B27")]
    public interface IMyInterface
    {
        void CallMethod();
    }
    

    Basically the declaration above instructs the .NET framework COM loader to load type information using traditional techniques from the registry and locate the associated type library and go from there.

    You should also restrict the creation of the COM object to a single thread (to prevent thread marshalling) to help solve this issue.

    To summarize, this error revolves around type information and thread marshalling. Make sure that each thread that wants to access the COM object has the relevant information to unmarshal the object from the source thread.

    PS: This problem is solved in .NET 4.0 using a technique called "Type Equivalence"

提交回复
热议问题