18 references to MessageProperty
System.ServiceModel.Web (18)
System\ServiceModel\Dispatcher\WebErrorHandler.cs (1)
166
responseProperty = currentContext.OutgoingResponse.
MessageProperty
;
System\ServiceModel\Web\OutgoingWebResponseContext.cs (17)
34
get { return long.Parse(this.
MessageProperty
.Headers[HttpResponseHeader.ContentLength], CultureInfo.InvariantCulture); }
35
set { this.
MessageProperty
.Headers[HttpResponseHeader.ContentLength] = value.ToString(CultureInfo.InvariantCulture); }
40
get { return this.
MessageProperty
.Headers[HttpResponseHeader.ContentType]; }
41
set { this.
MessageProperty
.Headers[HttpResponseHeader.ContentType] = value; }
46
get { return this.
MessageProperty
.Headers[HttpResponseHeader.ETag]; }
47
set { this.
MessageProperty
.Headers[HttpResponseHeader.ETag] = value; }
52
get { return this.
MessageProperty
.Headers; }
59
string dateTime = this.
MessageProperty
.Headers[HttpRequestHeader.LastModified];
72
this.
MessageProperty
.Headers[HttpResponseHeader.LastModified] =
81
get { return this.
MessageProperty
.Headers[HttpResponseHeader.Location]; }
82
set { this.
MessageProperty
.Headers[HttpResponseHeader.Location] = value; }
87
get { return this.
MessageProperty
.StatusCode; }
88
set { this.
MessageProperty
.StatusCode = value; }
93
get { return this.
MessageProperty
.StatusDescription; }
94
set { this.
MessageProperty
.StatusDescription = value; }
99
get { return this.
MessageProperty
.SuppressEntityBody; }
100
set { this.
MessageProperty
.SuppressEntityBody = value; }