Table of Contents

Enum ObjectCreationHandling

Namespace
Dynamicweb.Core.Json.Settings
Assembly
Dynamicweb.Core.dll
Specifies how object creation is handled by the JsonSerializer.
public enum ObjectCreationHandling

Fields

Auto = 0
Reuse existing objects, create new objects when needed.
Replace = 2
Always create new objects.
Reuse = 1
Only reuse existing objects.
To top