• Home
  • Raw
  • Download

Lines Matching +full:parse +full:- +full:json

2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
41 /// A general message parser, typically used by reflection-based code as all the methods
84 /// <param name="offset">The offset of the slice to parse.</param>
85 /// <param name="length">The length of the slice to parse.</param>
97 /// <param name="data">The data to parse.</param>
109 /// <param name="input">The stream to parse.</param>
121 /// <param name="data">The data to parse.</param>
134 /// <param name="data">The data to parse.</param>
145 /// Parses a length-delimited message from the given stream.
151 /// <param name="input">The stream to parse.</param>
163 /// <param name="input">The stream to parse.</param>
173 /// Parses a message from the given JSON.
175 /// <param name="json">The JSON to parse.</param>
177 … /// <exception cref="InvalidJsonException">The JSON does not comply with RFC 7159</exception>
178 …/// <exception cref="InvalidProtocolBufferException">The JSON does not represent a Protocol Buffer…
179 public IMessage ParseJson(string json) in ParseJson() argument
182 JsonParser.Default.Merge(message, json); in ParseJson()
228 /// provides convenient overloads to parse from a variety of sources.
241 …// Benchmarking work is required to measure the significance - but it's only a few lines of code i…
242 // The API wouldn't change anyway - just the implementation - so this work can be deferred.
287 /// <param name="offset">The offset of the slice to parse.</param>
288 /// <param name="length">The length of the slice to parse.</param>
300 /// <param name="data">The data to parse.</param>
312 /// <param name="input">The stream to parse.</param>
324 /// <param name="data">The data to parse.</param>
337 /// <param name="data">The data to parse.</param>
348 /// Parses a length-delimited message from the given stream.
354 /// <param name="input">The stream to parse.</param>
366 /// <param name="input">The stream to parse.</param>
376 /// Parses a message from the given JSON.
378 /// <param name="json">The JSON to parse.</param>
380 … /// <exception cref="InvalidJsonException">The JSON does not comply with RFC 7159</exception>
381 …/// <exception cref="InvalidProtocolBufferException">The JSON does not represent a Protocol Buffer…
382 public new T ParseJson(string json) in ParseJson() argument
385 JsonParser.Default.Merge(message, json); in ParseJson()