I am looking for the same kind of functionality. Going JSON->Message without binary. So a new function something like message->ParseFromJson(json) Want the other way to go with a new function something like MessageToJsonString(..,message,...)
For me, I am using .proto file like a JSON schema and parsing JSON sent over the wire into message objects and vice-versa. Easy access to JSON elements from the message objects. On Monday, November 23, 2015 at 7:45:07 AM UTC-8, Ron wrote: > > > On Monday, November 23, 2015 at 3:17:59 PM UTC+2, Ron wrote: >> >> So far I've been just serializing to protobuf binary format with >> *message.WriteTo(...)* or *MessageExtensions.ToByteArray(message)* and >> then using *BinaryToJsonString(...)* or *BinaryToJsonStream(...)*... >> > > > Oops... > I mean of course the C++ equivalents like > *message.SerializeToCodedStream(...) > *or *message.SerializeToArray(...)*, not the highlighted C# functions > that I mistakenly mentioned. > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
