Skip to content

Commit

Permalink
added PR #685
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Hallett committed Aug 19, 2015
1 parent 3604e0c commit 3c3a89e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified .nuget/RestSharp.Build.dll
Binary file not shown.
Binary file modified .nuget/Signed/RestSharp.Build.dll
Binary file not shown.
5 changes: 3 additions & 2 deletions RestSharp/RestResponse.cs
Expand Up @@ -18,9 +18,9 @@

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net;
using RestSharp.Extensions;
using System.Diagnostics;

namespace RestSharp
{
Expand Down Expand Up @@ -133,7 +133,8 @@ public string Content
/// <returns></returns>
protected string DebuggerDisplay()
{
return string.Format("{0}: {1} ({2})", StatusCode, ContentType, ContentLength);
return string.Format("StatusCode: {0}, Content-Type: {1}, Content-Length: {2})",
this.StatusCode, this.ContentType, this.ContentLength);
}
}

Expand Down

0 comments on commit 3c3a89e

Please sign in to comment.