14 instantiations of HttpResponseMessageProperty
System.Data.Services (1)
System\Data\Services\DataService.cs (1)
553HttpResponseMessageProperty response = new HttpResponseMessageProperty();
System.ServiceModel (6)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
886HttpResponseMessageProperty responseProperty = new HttpResponseMessageProperty(httpWebResponse.Headers);
System\ServiceModel\Channels\HttpRequestContext.cs (1)
468HttpResponseMessageProperty httpResponseProperty = new HttpResponseMessageProperty();
System\ServiceModel\Channels\HttpResponseMessageProperty.cs (1)
377HttpResponseMessageProperty copiedProperty = new HttpResponseMessageProperty();
System\ServiceModel\Channels\ServiceContextProtocol.cs (1)
131property = new HttpResponseMessageProperty();
System\ServiceModel\Description\ServiceMetadataExtension.cs (2)
1290HttpResponseMessageProperty responseProperty = new HttpResponseMessageProperty(); 1307HttpResponseMessageProperty httpResponseProperty = new HttpResponseMessageProperty();
System.ServiceModel.Web (7)
System\ServiceModel\Description\WebScriptClientGenerator.cs (1)
70HttpResponseMessageProperty responseMessageProperty = new HttpResponseMessageProperty();
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (2)
398responseProperty = new HttpResponseMessageProperty(); 415responseProperty = new HttpResponseMessageProperty();
System\ServiceModel\Dispatcher\ContentTypeSettingDispatchMessageFormatter.cs (1)
74httpProperty = new HttpResponseMessageProperty();
System\ServiceModel\Dispatcher\SingleBodyParameterMessageFormatter.cs (1)
180prop = new HttpResponseMessageProperty();
System\ServiceModel\Dispatcher\WebErrorHandler.cs (1)
170responseProperty = new HttpResponseMessageProperty();
System\ServiceModel\Web\OutgoingWebResponseContext.cs (1)
184operationContext.OutgoingMessageProperties.Add(HttpResponseMessageProperty.Name, new HttpResponseMessageProperty());
101 references to HttpResponseMessageProperty
System.Data.Services (2)
System\Data\Services\DataService.cs (2)
553HttpResponseMessageProperty response = new HttpResponseMessageProperty(); 555message.Properties.Add(HttpResponseMessageProperty.Name, response);
System.ServiceModel (46)
System\ServiceModel\Channels\ClientContextProtocol.cs (3)
292if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 294HttpResponseMessageProperty httpResponse = property as HttpResponseMessageProperty;
System\ServiceModel\Channels\HttpChannelHelpers.cs (9)
886HttpResponseMessageProperty responseProperty = new HttpResponseMessageProperty(httpWebResponse.Headers); 889message.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 1236public void ConfigureHttpResponseMessage(Message message, HttpResponseMessage httpResponseMessage, HttpResponseMessageProperty responseProperty) 1390if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 1392HttpResponseMessageProperty responseProperty = (HttpResponseMessageProperty)property; 2962HttpResponseMessageProperty responseProperty = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name, true);
System\ServiceModel\Channels\HttpPipeline.cs (5)
366HttpResponseMessage response = HttpResponseMessageProperty.GetHttpResponseMessageFromMessage(message); 708HttpResponseMessage httpResponseMessage = HttpResponseMessageProperty.GetHttpResponseMessageFromMessage(message); 711HttpResponseMessageProperty property = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name);
System\ServiceModel\Channels\HttpRequestContext.cs (3)
468HttpResponseMessageProperty httpResponseProperty = new HttpResponseMessageProperty(); 476ackMessage.Properties.Add(HttpResponseMessageProperty.Name, httpResponseProperty); 715httpResponseMessage = HttpResponseMessageProperty.GetHttpResponseMessageFromMessage(this.responseMessage);
System\ServiceModel\Channels\HttpRequestMessageExtensionMethods.cs (2)
174(value is HttpResponseMessageProperty && string.Equals(key, HttpResponseMessageProperty.Name, StringComparison.OrdinalIgnoreCase)))
System\ServiceModel\Channels\HttpResponseMessageProperty.cs (7)
170HttpResponseMessageProperty property = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name); 206HttpResponseMessageProperty responseProperty = propertyToMerge as HttpResponseMessageProperty; 375public HttpResponseMessageProperty CreateTraditionalResponseMessageProperty() 377HttpResponseMessageProperty copiedProperty = new HttpResponseMessageProperty();
System\ServiceModel\Channels\ServiceContextProtocol.cs (4)
124HttpResponseMessageProperty property = null; 125if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out tmpProperty)) 127property = tmpProperty as HttpResponseMessageProperty; 132message.Properties.Add(HttpResponseMessageProperty.Name, property);
System\ServiceModel\Description\ServiceMetadataExtension.cs (7)
1290HttpResponseMessageProperty responseProperty = new HttpResponseMessageProperty(); 1293message.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 1299HttpResponseMessageProperty httpResponseProperty = (HttpResponseMessageProperty)redirectMessage.Properties[HttpResponseMessageProperty.Name]; 1307HttpResponseMessageProperty httpResponseProperty = new HttpResponseMessageProperty(); 1309message.Properties.Add(HttpResponseMessageProperty.Name, httpResponseProperty);
System\ServiceModel\Diagnostics\MessageLogTraceRecord.cs (3)
301if (this.message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 303HttpResponseMessageProperty responseProperty = (HttpResponseMessageProperty)property;
System\ServiceModel\Dispatcher\ClientRuntime.cs (3)
469HttpResponseMessageProperty prop = message.Properties[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty;
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\HostedHttpContext.cs (3)
560if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 562HttpResponseMessageProperty responseProperty = (HttpResponseMessageProperty)property;
System.ServiceModel.Channels (7)
System\ServiceModel\Channels\MessageExtensionMethods.cs (7)
24private static readonly string HttpResponseMessagePropertyTypeName = typeof(HttpResponseMessageProperty).Name; 73HttpResponseMessage httpResponseMessage = HttpResponseMessageProperty.GetHttpResponseMessageFromMessage(message); 76HttpResponseMessageProperty responseMessageProperty = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name); 106message.Properties.Add(HttpResponseMessageProperty.Name, new HttpResponseMessageProperty(httpResponseMessage)); 162private static HttpResponseMessage CreateResponseMessage(Message message, HttpResponseMessageProperty responseMessageProperty)
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\SoapProcessingBehavior.cs (1)
386destination.Remove(HttpResponseMessageProperty.Name);
System.ServiceModel.Web (42)
System\ServiceModel\Description\WebScriptClientGenerator.cs (3)
70HttpResponseMessageProperty responseMessageProperty = new HttpResponseMessageProperty(); 76responseMessage.Properties.Add(HttpResponseMessageProperty.Name, responseMessageProperty); 92response.Properties.Add(HttpResponseMessageProperty.Name, responseMessageProperty);
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (7)
329object responseProperty = reply.Properties[HttpResponseMessageProperty.Name]; 332if (((HttpResponseMessageProperty)responseProperty).Headers[JsonGlobals.jsonerrorString] == JsonGlobals.trueString) 387HttpResponseMessageProperty responseProperty; 399fault.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 409if (newMessage.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 411responseProperty = (HttpResponseMessageProperty)property; 416newMessage.Properties.Add(HttpResponseMessageProperty.Name, responseProperty);
System\ServiceModel\Dispatcher\ContentTypeSettingDispatchMessageFormatter.cs (4)
66message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out prop); 67HttpResponseMessageProperty httpProperty; 70httpProperty = (HttpResponseMessageProperty) prop; 75message.Properties.Add(HttpResponseMessageProperty.Name, httpProperty);
System\ServiceModel\Dispatcher\JavascriptCallbackMessageInspector.cs (3)
63HttpResponseMessageProperty property; 64if (reply.Properties.TryGetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name, out property) &&
System\ServiceModel\Dispatcher\SingleBodyParameterMessageFormatter.cs (4)
176message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out untypedProp); 177HttpResponseMessageProperty prop = untypedProp as HttpResponseMessageProperty; 181message.Properties[HttpResponseMessageProperty.Name] = prop;
System\ServiceModel\Dispatcher\WebErrorHandler.cs (7)
93HttpResponseMessageProperty property; 94if (OperationContext.Current.OutgoingMessageProperties.TryGetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name, out property) && 152HttpResponseMessageProperty responseProperty = GetResponseProperty(WebOperationContext.Current, response); 161static HttpResponseMessageProperty GetResponseProperty(WebOperationContext currentContext, Message response) 163HttpResponseMessageProperty responseProperty; 171response.Properties.Add(HttpResponseMessageProperty.Name, responseProperty);
System\ServiceModel\Dispatcher\WebFaultClientMessageInspector.cs (3)
25HttpResponseMessageProperty prop = (HttpResponseMessageProperty) reply.Properties[HttpResponseMessageProperty.Name];
System\ServiceModel\Web\IncomingWebResponseContext.cs (6)
45HttpResponseMessageProperty MessageProperty 52if (!operationContext.IncomingMessageProperties.ContainsKey(HttpResponseMessageProperty.Name)) 56return operationContext.IncomingMessageProperties[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty; 60HttpResponseMessageProperty EnsureMessageProperty() 65SR2.GetString(SR2.HttpContextNoIncomingMessageProperty, typeof(HttpResponseMessageProperty).Name)));
System\ServiceModel\Web\OutgoingWebResponseContext.cs (5)
178internal HttpResponseMessageProperty MessageProperty 182if (!operationContext.OutgoingMessageProperties.ContainsKey(HttpResponseMessageProperty.Name)) 184operationContext.OutgoingMessageProperties.Add(HttpResponseMessageProperty.Name, new HttpResponseMessageProperty()); 186return operationContext.OutgoingMessageProperties[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty;