diff --git a/.nuget/RestSharp.Build.dll b/.nuget/RestSharp.Build.dll index 63c59503b..c3967ff99 100644 Binary files a/.nuget/RestSharp.Build.dll and b/.nuget/RestSharp.Build.dll differ diff --git a/.nuget/Signed/RestSharp.Build.dll b/.nuget/Signed/RestSharp.Build.dll index 7cd1b11dc..0bc2aba1b 100644 Binary files a/.nuget/Signed/RestSharp.Build.dll and b/.nuget/Signed/RestSharp.Build.dll differ diff --git a/RestSharp/RestResponse.cs b/RestSharp/RestResponse.cs index 35f42341b..9ac808829 100644 --- a/RestSharp/RestResponse.cs +++ b/RestSharp/RestResponse.cs @@ -18,9 +18,9 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Net; using RestSharp.Extensions; -using System.Diagnostics; namespace RestSharp { @@ -133,7 +133,8 @@ public string Content /// 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); } }