如何使 .NET DLL 中的属性对 COM 可见(方法有效)

How to make properties visible to COM in a .NET DLL (Methods DO work)(如何使 .NET DLL 中的属性对 COM 可见(方法有效))
本文介绍了如何使 .NET DLL 中的属性对 COM 可见(方法有效)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

已解决,见评论!

我有一个用 c# 编写的简单 .NET DLL.

I have a simple .NET DLL written in c#.

在 asp-classic 或 VB.NET 中,我可以毫无问题地创建对象并调用 DLL 中的成员函数.但是,这是我的绊脚石,我无法访问类属性.

In asp-classic or VB.NET i can create the object and call a member function in the DLL without any problem. But, and this is my stumbling point, i can't access class properties.

示例代码如下:

[Guid("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"),
    ClassInterface(ClassInterfaceType.None),
    ComSourceInterfaces(typeof(IComEvents))]
public class Com : IComInterface
{
    public string MyProperty{ get; set; }   // <-- NOT ACCESSIBLE
    public void MyFunction()                // <-- ACCESSIBLE
    {
    }
}

这是服务器端脚本:

Set com = Server.CreateObject("ns.Com")    // WORKS
com.MyProperty = "abc"                    // GIVES ERROR
com.MyFunction                            // WORKS

我收到以下错误消息:

Microsoft VBScript 运行时错误800a01b6"

Microsoft VBScript Runtime Error "800a01b6'

对象不支持此属性或方法:MyProperty

Object Doesn't Support This Property or Method: MyProperty

谁能告诉我,为什么我可以调用函数'MyFunciton',但是如果我想设置属性值,我得到了上面的错误?

Can anybody tell me, why i can call the function 'MyFunciton', but if i want to set the property-value, i get the error above?

推荐答案

属性必须包含在接口定义中以使它们对 COM 可见.

Properties must be included in the interface definition to make them visible to COM.

例子:

[Guid("... some GUID ...")]
[ComVisible(true)]
public interface MyClassInterface
{
    string MyProperty { get; set; }
    bool MyMethod();
}

这篇关于如何使 .NET DLL 中的属性对 COM 可见(方法有效)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)