4 writes to contentHeaders
System.Data.Services.Client (4)
System\Data\Services\Client\BatchStream.cs (4)
429this.contentHeaders = null; 756this.contentHeaders = null; 834this.contentHeaders = null; 1312this.contentHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
12 references to contentHeaders
System.Data.Services.Client (12)
System\Data\Services\Client\BatchStream.cs (12)
128get { return this.contentHeaders; } 427Debug.Assert(null != this.contentHeaders, "null contentHeaders"); 456Debug.Assert(null == this.contentHeaders, "non-null content headers"); 547if (this.contentHeaders.TryGetValue(XmlConstants.HttpContentType, out contentType)) 554if (this.contentHeaders.Count != 2) 562if (!this.contentHeaders.TryGetValue(XmlConstants.HttpContentTransferEncoding, out transferEncoding) || 594if (this.contentHeaders.Count > 2 || 595(this.contentHeaders.Count == 2 && !this.contentHeaders.ContainsKey(XmlConstants.HttpContentLength))) 622this.contentHeaders.TryGetValue(XmlConstants.HttpContentType, out contentType); 632if (this.contentHeaders.TryGetValue(XmlConstants.HttpContentLength, out text)) 1326this.contentHeaders.Add(name, value);