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