Exposing the indexer / default property via COM Interop(通过 COM 互操作公开索引器/默认属性)
问题描述
我正在尝试用 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 互操作实现?
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 互操作公开索引器/默认属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过 COM 互操作公开索引器/默认属性


基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01