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