4 overrides of Headers
PresentationCore (1)
System\IO\Packaging\PackWebResponse.cs (1)
298public override WebHeaderCollection Headers
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
70public override System.Net.WebHeaderCollection Headers { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 160public override System.Net.WebHeaderCollection Headers { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 264public override System.Net.WebHeaderCollection Headers { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
2 references to Headers
PresentationCore (1)
System\IO\Packaging\PackWebResponse.cs (1)
310return _fullResponse.Headers;
System.Net.WebClient (1)
System\Net\WebClient.cs (1)
202public WebHeaderCollection? ResponseHeaders => _webResponse?.Headers;