using System;
|
|
namespace DPumpHydr.WinFrmUI.WenSkin.Json
|
{
|
/// <summary>
|
/// Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer" /> to deserialize properties with no matching class member into the specified collection
|
/// and write values during serialization.
|
/// </summary>
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
|
public class JsonExtensionDataAttribute : Attribute
|
{
|
/// <summary>
|
/// Gets or sets a value that indicates whether to write extension data when serializing the object.
|
/// </summary>
|
/// <value>
|
/// <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
|
/// </value>
|
public bool WriteData { get; set; }
|
|
/// <summary>
|
/// Gets or sets a value that indicates whether to read extension data when deserializing the object.
|
/// </summary>
|
/// <value>
|
/// <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
|
/// </value>
|
public bool ReadData { get; set; }
|
|
/// <summary>
|
/// Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute" /> class.
|
/// </summary>
|
public JsonExtensionDataAttribute()
|
{
|
WriteData = true;
|
ReadData = true;
|
}
|
}
|
}
|