2 writes to _trailingHeaders
System.Net.Http (2)
System\Net\Http\HttpResponseMessage.cs (2)
107public 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, 120if (_trailingHeaders is null) 126_trailingHeaders.AddHeaders(headers); 197if (_trailingHeaders != null) 200HeaderUtilities.DumpHeaders(sb, _trailingHeaders);