Base:
property
ContentLength
System.Net.WebResponse.ContentLength
15 references to ContentLength
System (2)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
418ctx.CacheEntry.StreamSize = resp.ContentLength;
net\System\Net\FtpWebResponse.cs (1)
122return m_HttpWebResponse.ContentLength;
System.Data.Services.Client (1)
System\Data\Services\Client\QueryResult.cs (1)
443this.contentLength = response.ContentLength;
System.Runtime.Remoting (1)
channels\http\httpclientchannel.cs (1)
758int contentLength = (int)response.ContentLength;
System.ServiceModel (9)
System\ServiceModel\Channels\HttpChannelHelpers.cs (9)
829if (this.httpWebResponse.ContentLength == -1) 839this.hasContent = (this.preReadBuffer != null || this.httpWebResponse.ContentLength > 0); 859return httpWebResponse.ContentLength; 3560if (response.ContentLength == httpSysRequestQueueNotFound.Length) 3564else if (response.ContentLength == httpSysRequestQueueNotFoundVista.Length) 3735long bufferSize = webResponse.ContentLength; 3763if (response.ContentLength > 0) 3767else if (response.ContentLength == -1) // chunked 3855else if (response.ContentLength != 0)
System.Web.Services (2)
System\Web\Services\Protocols\SoapClientProtocol.cs (2)
616if (!isSoap || (isSoap && (httpResponse != null) && (httpResponse.ContentLength == 0))) { 636bufferSize = RequestResponseUtils.GetBufferSize((int)httpResponse.ContentLength);