19 writes to
System.Data.Services (10)
System\Data\Services\BatchServiceHost.cs (6)
195set { this.responseHeaders[HttpResponseHeader.CacheControl] = value; } 202set { this.responseHeaders[HttpResponseHeader.ContentType] = value; } 209set { this.responseHeaders[HttpResponseHeader.ETag] = value; } 216set { this.responseHeaders[HttpResponseHeader.Location] = value; } 334this.responseHeaders[HttpResponseHeader.ContentType] = args.ResponseContentType; 335this.responseHeaders[HttpResponseHeader.Allow] = args.ResponseAllowHeader;
System\Data\Services\DataService.cs (1)
554response.Headers[System.Net.HttpResponseHeader.ContentType] = contentType;
System\Data\Services\HttpContextServiceHost.cs (3)
224set { this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.CacheControl] = value; } 245set { this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Location] = value; } 444this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Allow] = args.ResponseAllowHeader;
System.ServiceModel.Web (9)
System\ServiceModel\Dispatcher\ContentTypeSettingDispatchMessageFormatter.cs (1)
79httpProperty.Headers[HttpResponseHeader.ContentType] = contentType;
System\ServiceModel\Dispatcher\HttpUnhandledOperationInvoker.cs (1)
82WebOperationContext.Current.OutgoingResponse.Headers[HttpResponseHeader.Allow] = allowedMethodsData.AllowHeader;
System\ServiceModel\Dispatcher\JavascriptCallbackMessageInspector.cs (1)
67property.Headers[HttpResponseHeader.ContentType] = applicationJavaScriptMediaType;
System\ServiceModel\Dispatcher\WebErrorHandler.cs (1)
157responseProperty.Headers[HttpResponseHeader.ContentType] = Atom10Constants.HtmlMediaType;
System\ServiceModel\Web\OutgoingWebResponseContext.cs (5)
35set { this.MessageProperty.Headers[HttpResponseHeader.ContentLength] = value.ToString(CultureInfo.InvariantCulture); } 41set { this.MessageProperty.Headers[HttpResponseHeader.ContentType] = value; } 47set { this.MessageProperty.Headers[HttpResponseHeader.ETag] = value; } 72this.MessageProperty.Headers[HttpResponseHeader.LastModified] = 82set { this.MessageProperty.Headers[HttpResponseHeader.Location] = value; }
26 references to
System (5)
net\System\Net\HttpListenerResponse.cs (4)
81return Headers[HttpResponseHeader.ContentType]; 106return Headers[HttpResponseHeader.Location]; 594GlobalLog.Print("HttpListenerResponse#" + ValidationHelper.HashString(this) + "::ComputeCookies() entering Set-Cookie: " + ValidationHelper.ToString(Headers[HttpResponseHeader.SetCookie]) +" Set-Cookie2: " + ValidationHelper.ToString(Headers[HttpKnownHeaderNames.SetCookie2])); 630GlobalLog.Print("HttpListenerResponse#" + ValidationHelper.HashString(this) + "::ComputeCookies() exiting Set-Cookie: " + ValidationHelper.ToString(Headers[HttpResponseHeader.SetCookie]) +" Set-Cookie2: " + ValidationHelper.ToString(Headers[HttpKnownHeaderNames.SetCookie2]));
net\System\Net\HttpWebRequest.cs (1)
689return _HttpResponse.Headers[header];
System.Data.Services (6)
System\Data\Services\BatchServiceHost.cs (4)
194get { return this.responseHeaders[HttpResponseHeader.CacheControl]; } 201get { return this.responseHeaders[HttpResponseHeader.ContentType]; } 208get { return this.responseHeaders[HttpResponseHeader.ETag]; } 215get { return this.responseHeaders[HttpResponseHeader.Location]; }
System\Data\Services\HttpContextServiceHost.cs (2)
223get { return this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.CacheControl]; } 244get { return this.operationContext.OutgoingResponse.Headers[HttpResponseHeader.Location]; }
System.ServiceModel (6)
System\ServiceModel\Channels\ClientContextProtocol.cs (1)
297string setCookieHeader = httpResponse.Headers[HttpResponseHeader.SetCookie];
System\ServiceModel\Channels\HttpChannelHelpers.cs (5)
1256if (message.Version == MessageVersion.None && httpResponseMessagePropertyFound && !string.IsNullOrEmpty(responseProperty.Headers[HttpResponseHeader.ContentType])) 1258contentType = responseProperty.Headers[HttpResponseHeader.ContentType]; 1393if (!string.IsNullOrEmpty(responseProperty.Headers[HttpResponseHeader.ContentType])) 1395contentType = responseProperty.Headers[HttpResponseHeader.ContentType]; 3783response.Headers[HttpResponseHeader.WwwAuthenticate]);
System.ServiceModel.Web (9)
System\ServiceModel\Dispatcher\ContentTypeSettingDispatchMessageFormatter.cs (1)
77if (string.IsNullOrEmpty(httpProperty.Headers[HttpResponseHeader.ContentType]))
System\ServiceModel\Web\IncomingWebResponseContext.cs (4)
25{ get { return long.Parse(EnsureMessageProperty().Headers[HttpResponseHeader.ContentLength], CultureInfo.InvariantCulture); } } 28{ get { return EnsureMessageProperty().Headers[HttpResponseHeader.ContentType]; } } 31{ get { return EnsureMessageProperty().Headers[HttpResponseHeader.ETag]; } } 37{ get { return EnsureMessageProperty().Headers[HttpResponseHeader.Location]; } }
System\ServiceModel\Web\OutgoingWebResponseContext.cs (4)
34get { return long.Parse(this.MessageProperty.Headers[HttpResponseHeader.ContentLength], CultureInfo.InvariantCulture); } 40get { return this.MessageProperty.Headers[HttpResponseHeader.ContentType]; } 46get { return this.MessageProperty.Headers[HttpResponseHeader.ETag]; } 81get { return this.MessageProperty.Headers[HttpResponseHeader.Location]; }