4 writes to httpWebResponseStream
System.Data.Services.Client (4)
11 references to httpWebResponseStream
System.Data.Services.Client (11)
System\Data\Services\Client\DataServiceContext.cs (11)
4218if ((null != this.responseBatchStream) || (null != this.httpWebResponseStream))
4455Debug.Assert(Object.ReferenceEquals(this.httpWebResponseStream, this.buildBatchWriter.BaseStream), "expected different stream");
4456this.httpWebResponseStream.Position = 0;
4462this.responseBatchStream = new BatchStream(this.httpWebResponseStream, this.batchBoundary, HttpProcessUtility.EncodingUtf8NoPreamble, false);
4845if (null == this.httpWebResponseStream)
4852this.buildBatchWriter = new StreamWriter(this.httpWebResponseStream); // defaults to UTF8 w/o preamble
5290delegate() { return this.httpWebResponseStream; }, // getResponseStream
5306if (null == this.httpWebResponseStream)
5320batchStream = this.responseBatchStream ?? new BatchStream(this.httpWebResponseStream, boundary, encoding, false);
6005Stream outputResponse = Util.NullCheck(this.httpWebResponseStream, InternalError.InvalidEndReadCopy);
6058this.httpWebResponseStream.Position = 0;