2 instantiations of BatchStream
System.Data.Services.Client (2)
System\Data\Services\Client\DataServiceContext.cs (2)
4462
this.responseBatchStream = new
BatchStream
(this.httpWebResponseStream, this.batchBoundary, HttpProcessUtility.EncodingUtf8NoPreamble, false);
5320
batchStream = this.responseBatchStream ?? new
BatchStream
(this.httpWebResponseStream, boundary, encoding, false);
8 references to BatchStream
System.Data.Services.Client (8)
System\Data\Services\Client\BatchStream.cs (4)
1450
internal StreamWithDelimiter(
BatchStream
stream)
1482
private
BatchStream
target;
1492
internal StreamWithLength(
BatchStream
stream, int contentLength)
1532
internal
BatchStream
Target
System\Data\Services\Client\DataServiceContext.cs (4)
4104
private
BatchStream
responseBatchStream;
5293
if (!
BatchStream
.GetBoundaryAndEncodingFromMultipartMixedContentType(this.batchResponse.ContentType, out boundary, out encoding))
5315
BatchStream
batchStream = null;
5382
private IEnumerable<OperationResponse> HandleBatchResponse(
BatchStream
batch)