在 protobuf-net 中我可以有一个字节字段吗?

发布于 2024-11-26 07:55:44 字数 358 浏览 1 评论 0原文

在 protobuf-net 中我可以有一个字节字段吗?字节数组字段是协议缓冲区规范的一部分吗?

基本上我想通过电线传输各种对象。在这种情况下,byte[]有效负载将是另一个协议缓冲区序列化对象。我这样做是为了不需要具体输入,

谢谢

public sealed class CellUpdateTransmission
{
    public int RowIndex { get; private set; }
    public int CellIndex { get; private set; }          
    public byte[] Payload {get;private set;}

In protobuf-net can i have a byte field? Is a byte array field part of the protocol buffers spec?

Basically I want to transmit various objects over the wire. In this case the byte[] Payload will be another protocol buffer serialised object. I do this so i don't need to specificy type

thanks

public sealed class CellUpdateTransmission
{
    public int RowIndex { get; private set; }
    public int CellIndex { get; private set; }          
    public byte[] Payload {get;private set;}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一紙繁鸢 2024-12-03 07:55:44

是的,你可以。在第二阶段,将字节移动到内存流中,然后按正常方式反序列化。

            byte[] Payload= datafromsomewhere;
            var ms = new MemoryStream(Payload);
            var req = Serializer.Deserialize<AbcClass>(ms);

yes you can. In your second phase, move the bytes into a memory stream and then deserialize as per normal.

            byte[] Payload= datafromsomewhere;
            var ms = new MemoryStream(Payload);
            var req = Serializer.Deserialize<AbcClass>(ms);
撑一把青伞 2024-12-03 07:55:44

是的,bytebyte[] 均受支持;后者映射到 .proto 规范中的字节。这实际上与子消息通常的表示方式相同。只需让序列化程序了解该成员(最简单:通过添加一个属性,例如 [ProtoMember(3)])。

Yes, both byte and byte[] are supported; the latter maps to bytes in the .proto spec. This is actually the same as how a sub-message is normally represented anyway. Just let the serializer know about the member (most simply: by adding an attribute such as [ProtoMember(3)]).

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