4 overrides of ContentLength
PresentationCore (1)
System\IO\Packaging\PackWebResponse.cs (1)
402
public override long
ContentLength
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
68
public override long
ContentLength
{ get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
158
public override long
ContentLength
{ get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
261
public override long
ContentLength
{ get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
6 references to ContentLength
PresentationCore (2)
System\IO\Packaging\PackWebResponse.cs (1)
184
long streamLength = _fullResponse.
ContentLength
;
System\Windows\Media\Imaging\BitmapDownload.cs (1)
241
entry.contentLength = response.
ContentLength
;
PresentationFramework (1)
System\Windows\Navigation\NavigationService.cs (1)
2858
long contentLength = response.
ContentLength
;
System.Net.WebClient (2)
System\Net\WebClient.cs (2)
832
long contentLength = response.
ContentLength
;
879
long contentLength = response.
ContentLength
;
System.Windows.Forms (1)
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
659
_contentLength = (int)webResponse.
ContentLength
;