serviceStack和protobuff

时间:2017-09-21 08:48:22

标签: servicestack protobuff.net

这是我定义的类型

public class NewPropVideoResponse
{
    [DataMember(Order = 1)]
    public int VideoId { get; set; }
}

这是我想要返回的类型

NewPropVideoResponse[]

如何使用protobuff序列化?

1 个答案:

答案 0 :(得分:0)

请阅读有关如何注册ProtoBuf Format的ServiceStack文档。注册格式后,如果使用ProtoBufServiceClient调用服务,客户端将请求在application/x-protobuf中返回响应,ServiceStack将以类型响应,返回以ProtoBuf格式序列化的响应。 / p>