IValueProvider public interface IValueProvider Provides methods to get and set values. Documentation Code namespace Newtonsoft.Json.Serialization { public interface IValueProvider { void SetValue(object target, object value); object GetValue(object target); } }