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