1 instantiation of HttpMessageHandlerFactory
System.ServiceModel (1)
System\ServiceModel\Channels\HttpMessageHandlerFactory.cs (1)
187return new HttpMessageHandlerFactory(handlerList);
17 references to HttpMessageHandlerFactory
System.ServiceModel (17)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
1108void CreatePipeline(HttpMessageHandlerFactory httpMessageHandlerFactory)
System\ServiceModel\Channels\HttpMessageHandlerFactory.cs (12)
23/// For more complex initialization scenarios, derive from <see cref="HttpMessageHandlerFactory"/> 24/// and override the <see cref="HttpMessageHandlerFactory.OnCreate"/> method. 35/// Initializes a new instance of the <see cref="HttpMessageHandlerFactory"/> class given 91/// Initializes a new instance of the <see cref="HttpMessageHandlerFactory"/> class given 111/// Initializes a new instance of the <see cref="HttpMessageHandlerFactory"/> class. 137internal static HttpMessageHandlerFactory CreateFromConfigurationElement(HttpMessageHandlerFactoryElement configElement) 154if (!typeof(HttpMessageHandlerFactory).IsAssignableFrom(factoryType) || factoryType.IsAbstract) 159typeof(HttpMessageHandlerFactory).Name, 161typeof(HttpMessageHandlerFactory).AssemblyQualifiedName))); 164return Activator.CreateInstance(factoryType) as HttpMessageHandlerFactory; 200throw FxTrace.Exception.AsError(new InvalidOperationException(SR.GetString(SR.HttpMessageHandlerFactoryWithFuncCannotGenerateConfig, typeof(HttpMessageHandlerFactory).Name, typeof(Func<IEnumerable<DelegatingHandler>>).Name))); 204if (thisType != typeof(HttpMessageHandlerFactory))
System\ServiceModel\Channels\HttpTransportBindingElement.cs (2)
44HttpMessageHandlerFactory httpMessageHandlerFactory; 169public HttpMessageHandlerFactory MessageHandlerFactory
System\ServiceModel\Channels\TransportDefaults.cs (1)
346internal const HttpMessageHandlerFactory MessageHandlerFactory = null;
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
205binding.MessageHandlerFactory = HttpMessageHandlerFactory.CreateFromConfigurationElement(this.MessageHandlerFactory);