所有可序列化类都对 WCF 方法参数和/或数据协定成员有效吗?
我正在将一些 .net 远程处理代码移植到 WCF。
我可以安全地假设所有可序列化并用作 .remoting 方法参数的类都可以使用二进制消息编码与 WCF 一起使用吗?
如果没有,是否有一个“经验法则”可以用来估计我会遇到什么问题?
I am in the process of porting some .net remoting code to WCF.
Can I safely assume that all classes that are Serializable and works as .remoting method parameters will work with WCF using the binary message encode?
If not is there a “rule of thumb” that I can use to estimate what problems I will hit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的 - 一般来说。但请注意对象大小的默认限制(总共 64K 个成员)。另请注意外部类型的 'KnownType' 属性当前大会。
Yes - in general. Be wary however of the default limits for the size of objects (64K members in total). Also be aware of the 'KnownType' attribute for types that are outside of the current assembly.