serverExtend.ExtendServerResult.FromJson C# (CSharp) Method

FromJson() public static method

public static FromJson ( string json ) : ExtendServerResult
json string
return ExtendServerResult
        public static ExtendServerResult FromJson(string json)
        {
            ExtendServerResult result = new ExtendServerResult();
            result.Extendresult = json;
            return result;
        }
ExtendServerResult