Table of Contents

Enum ConstructorHandling

Namespace
Newtonsoft.Json
Assembly
Newtonsoft.Json.dll

Specifies how constructors are used when initializing objects during deserialization by the JsonSerializer.

public enum ConstructorHandling

Fields

AllowNonPublicDefaultConstructor = 1

Allow Json.NET to use a non-public default constructor.

Default = 0

First attempt to use the public default constructor then fall back to single paramatized constructor.