Ejemplo n.º 1
0
 private static string ProccessResponse(string responseJsonString)
 {
     var error =
         new CouchError(new NewtonsoftSerializer(), new HttpResponseMessage(HttpStatusCode.InternalServerError) {
             Content = new JsonContent(responseJsonString)
         });
     return error.ToString();
 }