aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf/JsonParser.cs
Commit message (Expand)AuthorAgeFilesLines
* Allow list values to be null when parsingJon Skeet2018-03-011-2/+3
* Add parser settings WithXyz methodsJon Skeet2017-10-281-0/+17
* Add JsonParser setting to ignore unknown field valuesJon Skeet2017-10-281-7/+30
* Fixed parsing of BoolValue.Jos Hickson2016-05-111-1/+2
* Allow custom type URL prefixes in Any.PackJon Skeet2016-04-291-1/+1
* Rename Preconditions to ProtoPreconditionsJon Skeet2016-02-041-7/+7
* Make sure thatJon Skeet2016-01-151-4/+17
* Reject JSON containing the same oneof field twiceJon Skeet2016-01-151-0/+15
* Change handling of unknown enums: we now write out the value as a number.Jon Skeet2016-01-151-6/+2
* Extra strictness for FieldMask conversionJon Skeet2016-01-151-1/+7
* Fixes to JSON timestamp/duration representationsJon Skeet2016-01-151-11/+7
* Prohibit null values in repeated and map fields in JSONJon Skeet2016-01-151-1/+8
* Throw a better exception when invalid base64 is detected in JSONJon Skeet2016-01-151-1/+8
* Support (and test) numeric enum parsing in JSONJon Skeet2016-01-151-0/+9
* JSON conformance test fixesJon Skeet2016-01-131-0/+5
* Improve number handling in JSON parsingJon Skeet2016-01-061-39/+56
* Handle JSON parsing for Any.Jon Skeet2015-12-021-10/+139
* Tidy up reflection in advance of attempting to implement DynamicMessage.Jon Skeet2015-11-221-2/+1
* Introduce a Parser property into MessageDescriptor, and populate it from gene...Jon Skeet2015-11-191-5/+1
* Generated code changes and manual changes for previous commit.Jon Skeet2015-11-091-2/+2
* Merge pull request #941 from jskeet/recursion-limitJan Tattermusch2015-11-051-13/+24
|\
| * Reimplement JSON recursion by detecting the depth in the tokenizer.Jon Skeet2015-11-051-34/+33
| * Add recursion limit handling to JSON parsing.Jon Skeet2015-11-041-42/+54
* | Merge pull request #940 from jskeet/json-namesJon Skeet2015-11-051-6/+1
|\ \
| * | Move the creation of the "fields by JSON name" dictionary to the descriptor.Jon Skeet2015-11-041-6/+1
| |/
* / Created a new exception for JSON failures.Jon Skeet2015-11-051-0/+4
|/
* Implement JSON parsing in C#.Jon Skeet2015-11-031-0/+813