Click or drag to resize
Json.NET

TypeNameAssemblyFormatHandling Enumeration

 
Indicates the method that will be used during deserialization for locating and loading assemblies.

Namespace:  Newtonsoft.Json
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public enum TypeNameAssemblyFormatHandling
Members
  Member nameValueDescription
Simple0 In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method of the Assembly class is used to load the assembly.
Full1 In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.
See Also