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