public ImageInfoRet(CallRet ret) : base(ret) { if (!String.IsNullOrEmpty(Response)) { try { Unmarshal(Response); } catch (Exception e) { Console.WriteLine(e.ToString()); this.Exception = e; } } }
public CallRet(CallRet ret) { StatusCode = ret.StatusCode; Exception = ret.Exception; Response = ret.Response; }