39 references to Name
System.Data.Services (1)
System\Data\Services\DataService.cs (1)
555message.Properties.Add(HttpResponseMessageProperty.Name, response);
System.ServiceModel (15)
System\ServiceModel\Channels\ClientContextProtocol.cs (1)
292if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property))
System\ServiceModel\Channels\HttpChannelHelpers.cs (3)
889message.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 1390if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 2962HttpResponseMessageProperty responseProperty = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name, true);
System\ServiceModel\Channels\HttpPipeline.cs (1)
711HttpResponseMessageProperty property = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name);
System\ServiceModel\Channels\HttpRequestContext.cs (1)
476ackMessage.Properties.Add(HttpResponseMessageProperty.Name, httpResponseProperty);
System\ServiceModel\Channels\HttpRequestMessageExtensionMethods.cs (1)
174(value is HttpResponseMessageProperty && string.Equals(key, HttpResponseMessageProperty.Name, StringComparison.OrdinalIgnoreCase)))
System\ServiceModel\Channels\HttpResponseMessageProperty.cs (1)
170HttpResponseMessageProperty property = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name);
System\ServiceModel\Channels\ServiceContextProtocol.cs (2)
125if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out tmpProperty)) 132message.Properties.Add(HttpResponseMessageProperty.Name, property);
System\ServiceModel\Description\ServiceMetadataExtension.cs (3)
1293message.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 1299HttpResponseMessageProperty httpResponseProperty = (HttpResponseMessageProperty)redirectMessage.Properties[HttpResponseMessageProperty.Name]; 1309message.Properties.Add(HttpResponseMessageProperty.Name, httpResponseProperty);
System\ServiceModel\Diagnostics\MessageLogTraceRecord.cs (1)
301if (this.message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property))
System\ServiceModel\Dispatcher\ClientRuntime.cs (1)
469HttpResponseMessageProperty prop = message.Properties[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty;
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpContext.cs (1)
560if (message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property))
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\MessageExtensionMethods.cs (2)
76HttpResponseMessageProperty responseMessageProperty = message.Properties.GetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name); 106message.Properties.Add(HttpResponseMessageProperty.Name, new HttpResponseMessageProperty(httpResponseMessage));
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\SoapProcessingBehavior.cs (1)
386destination.Remove(HttpResponseMessageProperty.Name);
System.ServiceModel.Web (19)
System\ServiceModel\Description\WebScriptClientGenerator.cs (2)
76responseMessage.Properties.Add(HttpResponseMessageProperty.Name, responseMessageProperty); 92response.Properties.Add(HttpResponseMessageProperty.Name, responseMessageProperty);
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (4)
329object responseProperty = reply.Properties[HttpResponseMessageProperty.Name]; 399fault.Properties.Add(HttpResponseMessageProperty.Name, responseProperty); 409if (newMessage.Properties.TryGetValue(HttpResponseMessageProperty.Name, out property)) 416newMessage.Properties.Add(HttpResponseMessageProperty.Name, responseProperty);
System\ServiceModel\Dispatcher\ContentTypeSettingDispatchMessageFormatter.cs (2)
66message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out prop); 75message.Properties.Add(HttpResponseMessageProperty.Name, httpProperty);
System\ServiceModel\Dispatcher\JavascriptCallbackMessageInspector.cs (1)
64if (reply.Properties.TryGetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name, out property) &&
System\ServiceModel\Dispatcher\SingleBodyParameterMessageFormatter.cs (2)
176message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out untypedProp); 181message.Properties[HttpResponseMessageProperty.Name] = prop;
System\ServiceModel\Dispatcher\WebErrorHandler.cs (2)
94if (OperationContext.Current.OutgoingMessageProperties.TryGetValue<HttpResponseMessageProperty>(HttpResponseMessageProperty.Name, out property) && 171response.Properties.Add(HttpResponseMessageProperty.Name, responseProperty);
System\ServiceModel\Dispatcher\WebFaultClientMessageInspector.cs (1)
25HttpResponseMessageProperty prop = (HttpResponseMessageProperty) reply.Properties[HttpResponseMessageProperty.Name];
System\ServiceModel\Web\IncomingWebResponseContext.cs (2)
52if (!operationContext.IncomingMessageProperties.ContainsKey(HttpResponseMessageProperty.Name)) 56return operationContext.IncomingMessageProperties[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty;
System\ServiceModel\Web\OutgoingWebResponseContext.cs (3)
182if (!operationContext.OutgoingMessageProperties.ContainsKey(HttpResponseMessageProperty.Name)) 184operationContext.OutgoingMessageProperties.Add(HttpResponseMessageProperty.Name, new HttpResponseMessageProperty()); 186return operationContext.OutgoingMessageProperties[HttpResponseMessageProperty.Name] as HttpResponseMessageProperty;