1 write to batchRequestStream
System.Data.Services (1)
System\Data\Services\DataService.cs (1)
2149this.batchRequestStream = batchRequestStream;
16 references to batchRequestStream
System.Data.Services (16)
System\Data\Services\DataService.cs (16)
2362while (!this.batchLimitExceeded && this.batchRequestStream.State != BatchStreamState.EndBatch) 2372this.batchRequestStream.MoveNext(); 2387switch (this.batchRequestStream.State) 2456this.batchRequestStream, 2481currentOperationContext = CreateOperationContextFromBatchStream(this.dataService.OperationContext.AbsoluteServiceUri, this.batchRequestStream, this.contentIds, changesetBoundary, writer); 2499if (this.batchRequestStream.State == BatchStreamState.Post) 2512else if (this.batchRequestStream.State == BatchStreamState.Put) 2526Debug.Assert(this.batchRequestStream.State == BatchStreamState.EndBatch, "expecting end batch state"); 2544if (this.batchRequestStream.State == BatchStreamState.EndChangeSet) 2548else if (this.batchRequestStream.State == BatchStreamState.Post || 2549this.batchRequestStream.State == BatchStreamState.Put || 2550this.batchRequestStream.State == BatchStreamState.Delete || 2551this.batchRequestStream.State == BatchStreamState.Merge) 2573if (this.batchRequestStream.State == BatchStreamState.EndChangeSet) 2586Exception ex = this.batchRequestStream.ValidateNoDataBeyondEndOfBatch(); 2723Debug.Assert(this.batchRequestStream.State == BatchStreamState.Put, "This method must be called only for PUT requests");