Westwind.WebConnection.wwDotNetBridge.FromJson C# (CSharp) Method

FromJson() public method

Deserializes a JSON object
public FromJson ( string json, Type type ) : object
json string
type System.Type
return object
        public object FromJson(string json, Type type)
        {
            try
            {
                return JsonConvert.DeserializeObject(json, type);
            }
            catch (Exception ex)
            {
                SetError(ex, true);
                return null;
            }
        }
wwDotNetBridge