Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm calling a COM written in C++ from a .NET code written in C#.

The COM interface methods return HRESULT to indicate whether the call was successful.
However, when I look at the interface methods in C#, they claim to be void functions.

How do I pick up the HRESULTs from the COM then?

STDMETHOIMP CMyCOMObject::XMyCOMInterface::MyMethod()
{
	METHOD_PROLOGUE(CMyCOMObject, MyCOMInterface);
	return S_OK;
}


void Foo()
{
	MyCOM.IMyCOMInterface m_myCOM = new MyCOM.IMyCOMInterface;
	int nOut = m_myCOM.MyMethod(); // ERROR! C# thinks MyMethod is a void function!
}
Posted

1 solution

Hello,

By default COM wrapped as void on output, but it throws an exception if your method returns failed HRESULT.
You can handle COMException[^] in catch block. The COMException.HResult is the error code.

Another way is to create your own wrapper and specify PreserveSig[^] Attribute for the method and makes returns int instead of void.

More information about specified HRESULTS and .NET exceptions:
How to: Map HRESULTs and Exceptions[^]

Regards,
Maxim.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900