我有一个 .NET程序集,我已执行regasm
和gacutil
。我还有一个 COM interop ,我正在尝试使用 .NET程序集。但是,通过我的pDotNetCOMPtr
我无法“检测”我的.NET公共接口上的任何方法。当我尝试使用Visual Studio 2010进行编译时,MFC COM DLL一直说Encrypt
中没有名为_SslTcpClientPtr
的方法。我正在使用.NET 4.0 Framework。想法?
extern "C" __declspec(dllexport) BSTR __stdcall Encrypt(BSTR encryptString)
{
CoInitialize(NULL);
ICVTnsClient::_SslTcpClientPtr pDotNetCOMPtr;
HRESULT hRes = pDotNetCOMPtr.CreateInstance(ICVTnsClient::CLSID_SslTcpClient);
if (hRes == S_OK)
{
BSTR str;
hRes = pDotNetCOMPtr->Encrypt(encryptString, &str);
if (str == NULL) {
return SysAllocString(L"EEncryptionError");
}
else return str;
}
pDotNetCOMPtr = NULL;
return SysAllocString(L"EDLLError");
CoUninitialize ();
}
namespace ICVTnsClient
{
[Guid("D6F80E95-8A27-4ae6-B6DE-0542A0FC7039")]
[ComVisible(true)]
public interface _SslTcpClient
{
string Encrypt(string requestContent);
string Decrypt(string requestContent);
}
[Guid("13FE33AD-4BF8-495f-AB4D-6C61BD463EA4")]
[ClassInterface(ClassInterfaceType.None)]
public class SslTcpClient : _SslTcpClient
{
...
public string Encrypt(string requestContent) { // do something }
public string Decrypt(string requestContent) { // do something }
}
}
}
答案 0 :(得分:4)
这是因为您忘记了[InterfaceType]属性,因此界面可以早期绑定,方法名称显示在类型库中。修正:
[Guid("D6F80E95-8A27-4ae6-B6DE-0542A0FC7039")]
[ComVisible(true)]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
public interface _SslTcpClient
{
// etc..
}
ComInterfaceType.InterfaceIsDual允许它是早期和晚期绑定。微软更倾向于使用默认的IsIDispatch来减少后期绑定的步伐。