公开未进行任何操作的枚举
如何公开未进行任何操作的枚举?我可以在wcf中执行此操作吗?
提前致谢。
How expose a enum that is not in any operation? Can i do this in wcf?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是您希望得到的答案,据我所知(除非您手动处理所有 xsd 等,这需要大量工作)。最务实的选择(公开这样的枚举)可能是引入一个包含枚举的虚拟方法,但您永远不会期望在现实中调用它(只是抛出异常)。
Not the answer you are hoping for, bit not AFAIK (unless you handle all the xsd ect manually, which is a lot of work). The most pragmatic option (to expose such an enum) is probably to introduce a dummy method that includes the enum, but which you never expect to be called in reality (just throw an Exception).