2 writes to preReadBuffer
System.ServiceModel (2)
System\ServiceModel\Channels\HttpChannelHelpers.cs (2)
831
this.
preReadBuffer
= new byte[1];
835
this.
preReadBuffer
= null;
4 references to preReadBuffer
System.ServiceModel (4)
System\ServiceModel\Channels\HttpChannelHelpers.cs (4)
833
if (this.httpWebResponse.GetResponseStream().Read(
preReadBuffer
, 0, 1) == 0)
839
this.hasContent = (this.
preReadBuffer
!= null || this.httpWebResponse.ContentLength > 0);
920
if (this.
preReadBuffer
!= null)
922
return new WebResponseInputStream(httpWebResponse,
preReadBuffer
);