Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.​Runtime.​Serialization.​Formatters.​FormatterAssemblyStyle

Assembly: Newtonsoft.Json

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

Values

Simple
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 <see cref="M:System.Reflection.Assembly.LoadWithPartialName(String)" /> method is used to load the assembly.
Full
In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The <see cref="M:System.Reflection.Assembly.Load(System.Reflection.AssemblyName)" /> is used to load the assembly.