I just upgraded my version of NewtonSoft JSON.NET from version 3.0.0 to 3.5.0, and I noticed that the protected members are implicitly serialized.
I have the following class:
public class SimpleFileContainer : IDto { public virtual string Name { get; protected set; } public virtual string Path { get; protected set; } public SimpleFileContainer(string name, string path) { Name = name; Path = path; } }
The following test code fails
var json = JsonConvert.SerializeObject(new SimpleFileContainer("Name", "Path")); var deserialised = JsonConvert.DeserializeObject<SimpleFileContainer >(json); Assert.That(deserialised.Name, Is.EqualTo("Name");
both the Name and Path properties are null unless I make the property sets public or add a class update with the following attributes:
[JsonObject(MemberSerialization.OptOut)] public class SimpleFileContainer : IDto { [JsonProperty] public virtual string Name { get; protected set; } [JsonProperty] public virtual string Path { get; protected set; } public SimpleFileContainer(string name, string path) { Name = name; Path = path; } }
This is a project with a reasonable size, which uses the serialization process a lot, I donโt want to go through the code, adding these attributes to each class and member.
Is there any way around this?
source share