将 COM 对象添加到 Asp Net Core [英] Adding COM Objects to Asp Net Core

查看:14
本文介绍了将 COM 对象添加到 Asp Net Core的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用 Interop.ADODB 的单元测试项目.代码如下:

I have a Unit Test project that makes use of Interop.ADODB. Here is the code:

public CDO.Message ReadMessage(string emlFileName)
{
    if (string.IsNullOrEmpty(emlFileName)) return null;
    CDO.Message msg = new CDO.MessageClass();
    ADODB.Stream stream = new ADODB.StreamClass();
    stream.Open(Type.Missing,
        ADODB.ConnectModeEnum.adModeUnknown,
        ADODB.StreamOpenOptionsEnum.adOpenStreamUnspecified, string.Empty, string.Empty);
    stream.LoadFromFile(emlFileName);
    stream.Flush();
    msg.DataSource.OpenObject(stream, "_Stream");
    msg.DataSource.Save();
    return msg;
}

问题是我将此项目转换为 .NET Core.我无法弄清楚如何导入使此方法有效所需的 COM 库.我需要的是 Interop.ADODBInterop.CDO.

The problem is that I converted this project to .NET Core. I cannot figure out how to import the COM libraries that I need to make this method works. The ones that I need are Interop.ADODB and Interop.CDO.

此方法所做的只是获取一个电子邮件文件并转换为对象,以便我可以从中读取值,然后与发送的电子邮件进行比较.真正用于验证电子邮件内容的简单单元测试.

All this method does is takes an email file and converts to the object so that I may read the values out of it and then compare to the email that was sent. Really a simple unit test to validate email contents.

有没有办法让我导入 COM 对象,或者是否有一个库可以替换我现在应该使用的 CDO.Message?

Is there a way for me to import COM objects or is there a library that replaced CDO.Message that I am suppose to use now?

推荐答案

不建议从 .NET Core 访问 COM 对象,因为 .NET Core 应用程序被设计为独立于平台,而 COM 对象(例如 ADODB).StreamCDO.Message 是特定于 Windows 的.

It's unadvisable to access COM objects from .NET Core, as .NET Core applications are designed to be platform independent, and COM objects such as ADODB.Stream and CDO.Message are specific to Windows.

但是,这确实是可能的 - 如果您不介意后期绑定和弱类型.

However, it is indeed possible - if you don't mind late binding and weak typing.

dynamic msg = Activator.CreateInstance(Type.GetTypeFromProgID("CDO.Message", true));

...

dynamic stream = Activator.CreateInstance(Type.GetTypeFromProgID("ADODB.Stream", true));

等等

在 Windows 上运行时,这适用于 .NET Core 2.0.显然,根据这篇文章,在以前的版本中是不可能的.

This works on .NET Core 2.0, when running on Windows. Apparently, according to this article, it was not possible on previous versions.

不过,最好使用托管平台无关代码重写您的方法.

Still, it would be better to re-write your method using managed platform-neutral code.

这篇关于将 COM 对象添加到 Asp Net Core的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆