Skip to content

Commit 3c3a89e

Browse files
author
Michael Hallett
committed
added PR #685
1 parent 3604e0c commit 3c3a89e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.nuget/RestSharp.Build.dll

512 Bytes
Binary file not shown.

.nuget/Signed/RestSharp.Build.dll

512 Bytes
Binary file not shown.

RestSharp/RestResponse.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
using System;
2020
using System.Collections.Generic;
21+
using System.Diagnostics;
2122
using System.Net;
2223
using RestSharp.Extensions;
23-
using System.Diagnostics;
2424

2525
namespace RestSharp
2626
{
@@ -133,7 +133,8 @@ public string Content
133133
/// <returns></returns>
134134
protected string DebuggerDisplay()
135135
{
136-
return string.Format("{0}: {1} ({2})", StatusCode, ContentType, ContentLength);
136+
return string.Format("StatusCode: {0}, Content-Type: {1}, Content-Length: {2})",
137+
this.StatusCode, this.ContentType, this.ContentLength);
137138
}
138139
}
139140

0 commit comments

Comments
 (0)