C# Class Newtonsoft.Json.Serialization.ReflectionValueProvider

Inheritance: IValueProvider
Show file Open project: runegri/Applicable Class Usage Examples

Public Methods

Method Description
GetValue ( object target ) : object

Gets the value.

ReflectionValueProvider ( MemberInfo memberInfo ) : System

Initializes a new instance of the ReflectionValueProvider class.

SetValue ( object target, object value ) : void

Sets the value.

Method Details

GetValue() public method

Gets the value.
public GetValue ( object target ) : object
target object The target to get the value from.
return object

ReflectionValueProvider() public method

Initializes a new instance of the ReflectionValueProvider class.
public ReflectionValueProvider ( MemberInfo memberInfo ) : System
memberInfo System.Reflection.MemberInfo The member info.
return System

SetValue() public method

Sets the value.
public SetValue ( object target, object value ) : void
target object The target to set the value on.
value object The value to set on the target.
return void