From 612cbc1e6e456bd509675d95269b9f228c835112 Mon Sep 17 00:00:00 2001 From: Haroon Date: Tue, 22 Oct 2013 21:15:41 +0100 Subject: [PATCH] IRestResponse instead of RestResponse Makes it easier for someone picking up the examples to get this to work :) --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 85ff62aea..7540f2256 100644 --- a/README.markdown +++ b/README.markdown @@ -45,7 +45,7 @@ var content = response.Content; // raw content as string // or automatically deserialize result // return content type is sniffed but can be explicitly set via RestClient.AddHandler(); -RestResponse response2 = client.Execute(request); +IRestResponse response2 = client.Execute(request); var name = response2.Data.Name; // or download and save file to disk