4 overrides of ContentLength
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebResponse.cs (1)
443
public override long
ContentLength
System (3)
net\System\Net\filewebresponse.cs (1)
107
public override long
ContentLength
{
net\System\Net\FtpWebResponse.cs (1)
119
public override long
ContentLength
{
net\System\Net\HttpWebResponse.cs (1)
157
public override long
ContentLength
{
13 references to ContentLength
PresentationCore (2)
Core\CSharp\System\IO\Packaging\PackWebResponse.cs (1)
226
long streamLength = _fullResponse.
ContentLength
;
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (1)
330
entry.contentLength = response.
ContentLength
;
PresentationFramework (1)
src\Framework\System\Windows\Navigation\NavigationService.cs (1)
3148
long contentLength = response.
ContentLength
;
System (4)
net\System\Net\Cache\FtpRequestCacheValidator.cs (1)
467
ResponseEntityLength = Response.
ContentLength
;
net\System\Net\webclient.cs (3)
1103
ContentLength = response.
ContentLength
;
1124
if (Async && response.
ContentLength
>= 0)
1125
Progress.TotalBytesToReceive = response.
ContentLength
;
System.Web.Mobile (1)
UI\MobileControls\Design\Util\FileReader.cs (1)
40
length = (int) response.
ContentLength
;
System.Web.Services (4)
System\Web\Services\Protocols\ClientProtocol.cs (3)
326
if (client.Response.
ContentLength
== 0) {
346
long contentLength = client.Response.
ContentLength
;
361
long contentLength = client.Response.
ContentLength
;
System\Web\Services\Protocols\HttpClientProtocol.cs (1)
166
if (response.
ContentLength
!= 0)
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PictureBox.cs (1)
749
contentLength = (int)webResponse.
ContentLength
;