Table of Contents

Interface IValueProvider

Namespace
Newtonsoft.Json.Serialization
Assembly
Newtonsoft.Json.dll

Provides methods to get and set values.

public interface IValueProvider

Methods

GetValue(object)

Gets the value.

object GetValue(object target)

Parameters

target object

The target to get the value from.

Returns

object

The value.

SetValue(object, object)

Sets the value.

void SetValue(object target, object value)

Parameters

target object

The target to set the value on.

value object

The value to set on the target.