重写 ICallbackEventHandler 接口中的 RaiseCallbackEvent(string eventArgument) 方法。是否可以?
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您的方法的签名必须与接口完全匹配。
但您可以发送
XmlDocument.OuterXml
作为字符串。
No, the signature of your method must match the interface exactly.
But you can send in
XmlDocument.OuterXml
as the string.