使用 Json.net 将 .net 对象直接序列化为 NetworkStream
有没有办法让 Json.net 将对象直接序列化到 NetworkStream?
换句话说,让 Json.net 在序列化对象时将序列化结果发送到网络(以流式传输方式)。
我想避免必须将对象序列化到内存,然后通过 NetworkStream 发送它。
有什么想法吗?
问候
Is there any way to have Json.net serialize an object directly to a NetworkStream?
In other words, have Json.net send the serialized result to the network as it serializes the object (in a streaming fashion).
I would like to avoid having to serialize the object to memory and then send it via the NetworkStream.
Any thoughts?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
NetworkStream
之上创建一个TextWriter
,并序列化到TextWriter
;或者您可以在TextWriter
之上创建一个JsonTextWriter
并序列化到它。您不需要首先序列化为临时字符串或字节数组。
You can create a
TextWriter
on top of aNetworkStream
, and serialize to theTextWriter
; or you can create aJsonTextWriter
on top of aTextWriter
and serialize to that.You don't need to serialize to, say, a temporary string or byte array first.