重写 ICallbackEventHandler 接口中的 RaiseCallbackEvent(string eventArgument) 方法。是否可以?

发布于 2024-10-18 02:26:35 字数 300 浏览 3 评论 0原文

我需要在 C# 中实现 ICallbackEventHandler 接口,但我需要稍微不同的逻辑...... 问题是,RaiseCallbackEvent 方法接受字符串作为输入参数,但我需要它是 XmlDocument 或从 javascipt 代码传递的其他一些不简单的数据类型。

这可能吗?实现这一目标的最佳方法是什么?

谢谢。

I need to implement the ICallbackEventHandler interface in C#, but I need slightly different logic...
The thing is, that the RaiseCallbackEvent method accepts string as input argument, but I need it to be say, XmlDocument, or some other not-simple data type passed from the javascipt code.

Is it possible, and what is the best way to accomplish this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不甘平庸 2024-10-25 02:26:35

不,您的方法的签名必须与接口完全匹配。
但您可以发送 XmlDocument.OuterXml作为字符串。

No, the signature of your method must match the interface exactly.
But you can send in XmlDocument.OuterXml as the string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文