如何使用 WCF 消息写入多个对象
我有这个要求,我有两个类 Person 和 Department,我想在 System.ServiceModel.Channels.Message 中发送这两个类的对象?我怎样才能做到这一点。我有任何最好的替代方法。
提前致谢。
I have this requirement, I have two classes Person and Department and i want to send object of these two classes in the System.ServiceModel.Channels.Message? How can i accomplish this. I there any best way alternative to that.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Message 类有一个名为 CreateMessage 的静态方法,该方法具有重载以获取任何可以序列化的对象。
使用 Person 和 Department 对象的实例创建一个新的 datacontract\class。将包装对象传递给 CreateMessage 进行序列化
Message class has a static method called CreateMessage which has an overload to take any object that can be serialized.
Create a new datacontract\class with instances of Person and Department object. Pass the wrapper object to CreateMessage to serialize