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