3 instantiations of BatchServiceHost
System.Data.Services (3)
System\Data\Services\DataService.cs (3)
2564currentHost = new DataServiceHostWrapper(new BatchServiceHost(this.batchBoundary, writer)); 2640BatchServiceHost host = new BatchServiceHost(absoluteServiceUri, batchStream, contentIdValue, boundary, writer); 2671currentHost = new DataServiceHostWrapper(new BatchServiceHost(changesetBoundary, writer));
6 references to BatchServiceHost
System.Data.Services (6)
System\Data\Services\DataService.cs (3)
2640BatchServiceHost host = new BatchServiceHost(absoluteServiceUri, batchStream, contentIdValue, boundary, writer); 2746BatchServiceHost previousHost = previousContext.Host.BatchServiceHost; 2764private void WriteRequest(RequestDescription description, BatchServiceHost batchHost)
System\Data\Services\DataServiceHostWrapper.cs (3)
413internal BatchServiceHost BatchServiceHost 417Debug.Assert(this.host is BatchServiceHost, "We shouldn't be calling this outside of the batching code path."); 418return this.host as BatchServiceHost;