Skip to content

Commit

Permalink
Reintroduce set for JsonParsingException.ActualChar (#5090) (#5320)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5f937c1)
  • Loading branch information
stevejgordon authored Feb 11, 2021
1 parent 35c12cd commit 01fc7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Elasticsearch.Net/Utf8Json/JsonReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ public class JsonParsingException : Exception
private readonly WeakReference _underlyingBytes;
private readonly int _limit;
public int Offset { get; }
public string ActualChar { get; }
public string ActualChar { get; set; }

public JsonParsingException(string message)
: base(message)
Expand Down

0 comments on commit 01fc7c0

Please sign in to comment.