From 01fc7c070e15dcf8d9889b315635a6ca5475f31c Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Thu, 11 Feb 2021 12:31:49 +0000 Subject: [PATCH] Reintroduce set for JsonParsingException.ActualChar (#5090) (#5320) (cherry picked from commit 5f937c1b3f8196306a2dbdd66ac8c66b2a9418b9) --- src/Elasticsearch.Net/Utf8Json/JsonReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Elasticsearch.Net/Utf8Json/JsonReader.cs b/src/Elasticsearch.Net/Utf8Json/JsonReader.cs index 7269d90cb15..58a7719d3a0 100644 --- a/src/Elasticsearch.Net/Utf8Json/JsonReader.cs +++ b/src/Elasticsearch.Net/Utf8Json/JsonReader.cs @@ -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)