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