Interface IValueProvider
Provides methods to get and set values.
Namespace: Bayat.Json.Serialization
Assembly: Bayat.Json.Runtime.dll
Syntax
public interface IValueProvider
Methods
| Improve this Doc View SourceGetValue(Object)
Gets the value.
Declaration
object GetValue(object target)
Parameters
Type | Name | Description |
---|---|---|
System.Object | target | The target to get the value from. |
Returns
Type | Description |
---|---|
System.Object | The value. |
SetValue(Object, Object)
Sets the value.
Declaration
void SetValue(object target, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | target | The target to set the value on. |
System.Object | value | The value to set on the target. |