1 instantiation of HttpMessageHandlerFactory
System.ServiceModel (1)
System\ServiceModel\Channels\HttpMessageHandlerFactory.cs (1)
187
return new
HttpMessageHandlerFactory
(handlerList);
17 references to HttpMessageHandlerFactory
System.ServiceModel (17)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
1108
void 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.
137
internal static
HttpMessageHandlerFactory
CreateFromConfigurationElement(HttpMessageHandlerFactoryElement configElement)
154
if (!typeof(
HttpMessageHandlerFactory
).IsAssignableFrom(factoryType) || factoryType.IsAbstract)
159
typeof(
HttpMessageHandlerFactory
).Name,
161
typeof(
HttpMessageHandlerFactory
).AssemblyQualifiedName)));
164
return Activator.CreateInstance(factoryType) as
HttpMessageHandlerFactory
;
200
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.GetString(SR.HttpMessageHandlerFactoryWithFuncCannotGenerateConfig, typeof(
HttpMessageHandlerFactory
).Name, typeof(Func<IEnumerable<DelegatingHandler>>).Name)));
204
if (thisType != typeof(
HttpMessageHandlerFactory
))
System\ServiceModel\Channels\HttpTransportBindingElement.cs (2)
44
HttpMessageHandlerFactory
httpMessageHandlerFactory;
169
public
HttpMessageHandlerFactory
MessageHandlerFactory
System\ServiceModel\Channels\TransportDefaults.cs (1)
346
internal const
HttpMessageHandlerFactory
MessageHandlerFactory = null;
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
205
binding.MessageHandlerFactory =
HttpMessageHandlerFactory
.CreateFromConfigurationElement(this.MessageHandlerFactory);