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