通过 COM Interop 公开索引器/默认属性 [英] Exposing the indexer / default property via COM Interop

查看:21
本文介绍了通过 COM Interop 公开索引器/默认属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试用 C# 编写一个组件,供经典 ASP 使用,它允许我访问组件的索引器(又名默认属性).

I am attempting to write a component in C# to be consumed by classic ASP that allows me to access the indexer of the component (aka default property).

例如:
C# 组件:

For example:
C# component:

public class MyCollection {
    public string this[string key] {
        get { /* return the value associated with key */ }
    }

    public void Add(string key, string value) {
        /* add a new element */
    }
}

ASP 消费者:

Dim collection
Set collection = Server.CreateObject("MyCollection ")
Call collection.Add("key", "value")
Response.Write(collection("key")) ' should print "value"

是否有我需要设置的属性,我需要实现一个接口还是我需要做其他事情?或者这无法通过 COM Interop 实现?

Is there an attribute I need to set, do I need to implement an interface or do I need to do something else? Or this not possible via COM Interop?

目的是我试图为某些内置 ASP 对象(例如 Request)创建测试替身,这些对象利用使用这些默认属性的集合(例如 Request.QueryString("key")).欢迎提供其他建议.

The purpose is that I am attempting to create test doubles for some of the built-in ASP objects such as Request, which make use of collections using these default properties (such as Request.QueryString("key")). Alternative suggestions are welcome.

更新:我问了一个后续问题:为什么我的 .NET 组件上的索引器并不总是可以从 VBScript 访问?

Update: I asked a follow-up question: Why is the indexer on my .NET component not always accessible from VBScript?

推荐答案

尝试将属性的 DispId 属性设置为 0,如 MSDN 文档.

Try setting the DispId attribute of the property to be 0, as described here in the MSDN documentation.

这篇关于通过 COM Interop 公开索引器/默认属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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