Skip to content

Commit 00ab7b2

Browse files
committed
Merge pull request #442 from hahmed/patch-1
IRestResponse<T> instead of RestResponse<T>
2 parents bcad351 + 612cbc1 commit 00ab7b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var content = response.Content; // raw content as string
4545
4646
// or automatically deserialize result
4747
// return content type is sniffed but can be explicitly set via RestClient.AddHandler();
48-
RestResponse<Person> response2 = client.Execute<Person>(request);
48+
IRestResponse<Person> response2 = client.Execute<Person>(request);
4949
var name = response2.Data.Name;
5050

5151
// or download and save file to disk

0 commit comments

Comments
 (0)