namespace DPumpHydr.WinFrmUI.WenSkin.Json { /// /// Specifies the member serialization options for the . /// public enum MemberSerialization { /// /// All public members are serialized by default. Members can be excluded using or . /// This is the default member serialization mode. /// OptOut, /// /// Only members marked with or are serialized. /// This member serialization mode can also be set by marking the class with . /// OptIn, /// /// All public and private fields are serialized. Members can be excluded using or . /// This member serialization mode can also be set by marking the class with /// and setting IgnoreSerializableAttribute on to false. /// Fields } }