Fix control Offsets margin diff deserialziation

This commit is contained in:
Wojtek Figat
2021-03-17 17:01:10 +01:00
parent 518df5e62b
commit c4d457d7b7
4 changed files with 130 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1691,6 +1691,15 @@
<param name="value">The value.</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.JsonConverter.WriteJsonDiff(Newtonsoft.Json.JsonWriter,System.Object,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Writes the JSON representation of the object diff compared to other instance of the object (the same type).
</summary>
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
<param name="value">The value.</param>
<param name="other">The other value (the same type).</param>
<param name="serializer">The calling serializer.</param>
</member>
<member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
<summary>
Reads the JSON representation of the object.
@@ -1722,6 +1731,12 @@
</summary>
<value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
</member>
<member name="P:Newtonsoft.Json.JsonConverter.CanWriteDiff">
<summary>
Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON for object difference.
</summary>
<value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON diff; otherwise, <c>false</c>.</value>
</member>
<member name="T:Newtonsoft.Json.JsonConverter`1">
<summary>
Converts an object to and from JSON.