new public static BooleanResult fromResponse(ResponseWrapper responseWrapper) { BooleanResult tagListResult = new BooleanResult(); if (responseWrapper.isServerResponse()) { tagListResult = JsonConvert.DeserializeObject<BooleanResult>(responseWrapper.responseContent); } tagListResult.ResponseResult = responseWrapper; return tagListResult; }