Show / Hide Table of Contents

    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 Source

    GetValue(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.

    | Improve this Doc View Source

    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.

    • Improve this Doc
    • View Source
    • 0 Comments