2 writes to _trailingHeaders
System.Net.Http (2)
System\Net\Http\HttpResponseMessage.cs (2)
107
public HttpResponseHeaders TrailingHeaders =>
_trailingHeaders
??= new HttpResponseHeaders(containsTrailingHeaders: true);
122
_trailingHeaders
= headers;
6 references to _trailingHeaders
System.Net.Http (6)
System\Net\Http\HttpResponseMessage.cs (6)
112
/// received, <see cref="
_trailingHeaders
" /> will still be null, and we can simply store the supplied instance into
113
/// <see cref="
_trailingHeaders
" /> and assume ownership of the instance. In the uncommon case where it was accessed,
120
if (
_trailingHeaders
is null)
126
_trailingHeaders
.AddHeaders(headers);
197
if (
_trailingHeaders
!= null)
200
HeaderUtilities.DumpHeaders(sb,
_trailingHeaders
);