ASP.NET Core MVC Controls | ComponentOne
C1.JsonNet Namespace / JsonConverter Class / ConvertFrom Method
The specified value, which could be null or its type could be System.Collections.ArrayList, System.Collections.Hashtable, System.DateTime, System.String, System.Boolean, System.Int32, System.Double.
The existed value.






In This Topic
    ConvertFrom Method
    In This Topic
    Deserialize an object from the specified value.
    Syntax
    'Declaration
     
    
    Protected Overridable Function ConvertFrom( _
       ByVal value As System.Object, _
       ByVal existedValue As System.Object _
    ) As System.Object
    'Usage
     
    
    Dim instance As JsonConverter
    Dim value As System.Object
    Dim existedValue As System.Object
    Dim value As System.Object
     
    value = instance.ConvertFrom(value, existedValue)
    protected virtual System.object ConvertFrom( 
       System.object value,
       System.object existedValue
    )
    protected function ConvertFrom( 
        value: System.TObject;
        existedValue: System.TObject
    ): System.TObject; virtual; 
    protected function ConvertFrom( 
       value : System.Object,
       existedValue : System.Object
    ) : System.Object;
    protected: virtual System.Object* ConvertFrom( 
       System.Object* value,
       System.Object* existedValue
    ) 
    protected:
    virtual System.Object^ ConvertFrom( 
       System.Object^ value,
       System.Object^ existedValue
    ) 

    Parameters

    value
    The specified value, which could be null or its type could be System.Collections.ArrayList, System.Collections.Hashtable, System.DateTime, System.String, System.Boolean, System.Int32, System.Double.
    existedValue
    The existed value.

    Return Value

    An object deserialized from the specified value.
    See Also