2 writes to batchBoundary
System.Data.Services.Client (2)
System\Data\Services\Client\DataServiceContext.cs (2)
4181this.batchBoundary = XmlConstants.HttpMultipartBoundaryBatch + "_" + Guid.NewGuid().ToString(); 4185this.batchBoundary = XmlConstants.HttpMultipartBoundaryBatchResponse + "_" + Guid.NewGuid().ToString();
8 references to batchBoundary
System.Data.Services.Client (8)
System\Data\Services\Client\DataServiceContext.cs (8)
4452this.buildBatchWriter.WriteLine("--{0}--", this.batchBoundary); 4462this.responseBatchStream = new BatchStream(this.httpWebResponseStream, this.batchBoundary, HttpProcessUtility.EncodingUtf8NoPreamble, false); 4864this.buildBatchWriter.WriteLine("--{0}", this.batchBoundary); 5051string contentType = XmlConstants.MimeMultiPartMixed + "; " + XmlConstants.HttpMultipartBoundary + "=" + this.batchBoundary; 5093text.WriteLine("--{0}", this.batchBoundary); 5100text.WriteLine("--{0}", this.batchBoundary); 5207text.WriteLine("--{0}--", this.batchBoundary); 5272string boundary = this.batchBoundary;