如何使用 WCF 消息写入多个对象

发布于 2024-12-11 12:45:01 字数 129 浏览 0 评论 0原文

我有这个要求,我有两个类 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 技术交流群。

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

发布评论

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

评论(1

凤舞天涯 2024-12-18 12:45:01

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

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