1 instantiation of BatchStream
System.Data.Services (1)
System\Data\Services\DataService.cs (1)
1856
BatchStream batchStream = new
BatchStream
(host.RequestStream, boundary, encoding, true);
11 references to BatchStream
System.Data.Services (11)
parent\Client\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\BatchServiceHost.cs (1)
81
internal BatchServiceHost(Uri absoluteServiceUri,
BatchStream
batchStream, string contentId, string boundary, StreamWriter writer)
System\Data\Services\DataService.cs (5)
1832
if (!
BatchStream
.GetBoundaryAndEncodingFromMultipartMixedContentType(host.RequestContentType, out boundary, out encoding) ||
1856
BatchStream
batchStream = new BatchStream(host.RequestStream, boundary, encoding, true);
2096
private readonly
BatchStream
batchRequestStream;
2143
internal BatchDataService(IDataService dataService,
BatchStream
batchRequestStream, string batchBoundary)
2618
private static DataServiceOperationContext CreateOperationContextFromBatchStream(Uri absoluteServiceUri,
BatchStream
batchStream, HashSet<int> contentIds, string boundary, StreamWriter writer)
System\Data\Services\Serializers\JsonDeserializer.cs (1)
53
bool useGivenStream = requestStream.CanSeek ||
BatchStream
.IsBatchStream(requestStream);