namespace DPumpHydr.WinFrmUI.WenSkin.Json
{
///
/// Specifies how constructors are used when initializing objects during deserialization by the .
///
public enum ConstructorHandling
{
///
/// First attempt to use the public default constructor, then fall back to single parameterized constructor, then the non-public default constructor.
///
Default,
///
/// Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
///
AllowNonPublicDefaultConstructor
}
}