File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/Elasticsearch.Net/Domain Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 22using System . CodeDom ;
33using System . Collections . Generic ;
44using System . Configuration ;
5+ using System . Diagnostics ;
56using System . Globalization ;
67using System . Linq ;
78using System . Runtime . CompilerServices ;
@@ -24,12 +25,14 @@ public interface IElasticsearchResponse
2425 ConnectionError Error { get ; }
2526 string RequestMethod { get ; }
2627 string RequestUrl { get ; }
28+ [ DebuggerDisplay ( "{Request != null ? System.Text.Encoding.UTF8.GetString(Request) : null,nq}" ) ]
2729 byte [ ] Request { get ; }
2830 int ? HttpStatusCode { get ; }
2931
3032 /// <summary>
3133 /// The raw byte response, only set when IncludeRawResponse() is set on Connection configuration
3234 /// </summary>
35+ [ DebuggerDisplay ( "{ResponseRaw != null ? System.Text.Encoding.UTF8.GetString(ResponseRaw) : null,nq}" ) ]
3336 byte [ ] ResponseRaw { get ; }
3437 }
3538
You can’t perform that action at this time.
0 commit comments