我正在尝试将 protobuf 添加到基于 ServiceStack 的 Web 项目中。但是以下两种方法都会出错
全球.asax.cs
public AppHost() : base("My Service", typeof (HelloService).Assembly)
{
ServiceStack.Plugins.ProtoBuf.AppStart.Start();
}
public AppHost() : base("My Service", typeof (HelloService).Assembly)
{
Plugins.Add(new ProtoBufFormat());
}
如何在项目中启用 ProtoBuf 格式?