1 write to responseHeaders
System.Data.Services (1)
System\Data\Services\BatchServiceHost.cs (1)
113this.responseHeaders = new WebHeaderCollection();
13 references to responseHeaders
System.Data.Services (13)
System\Data\Services\BatchServiceHost.cs (13)
194get { return this.responseHeaders[HttpResponseHeader.CacheControl]; } 195set { this.responseHeaders[HttpResponseHeader.CacheControl] = value; } 201get { return this.responseHeaders[HttpResponseHeader.ContentType]; } 202set { this.responseHeaders[HttpResponseHeader.ContentType] = value; } 208get { return this.responseHeaders[HttpResponseHeader.ETag]; } 209set { this.responseHeaders[HttpResponseHeader.ETag] = value; } 215get { return this.responseHeaders[HttpResponseHeader.Location]; } 216set { this.responseHeaders[HttpResponseHeader.Location] = value; } 245get { return this.responseHeaders[XmlConstants.HttpDataServiceVersion]; } 246set { this.responseHeaders[XmlConstants.HttpDataServiceVersion] = value; } 270get { return this.responseHeaders; } 334this.responseHeaders[HttpResponseHeader.ContentType] = args.ResponseContentType; 335this.responseHeaders[HttpResponseHeader.Allow] = args.ResponseAllowHeader;