1 write to Handlers
System.ServiceModel (1)
System\ServiceModel\Channels\HttpMessageHandlerFactory.cs (1)
223
Handlers
= handlerCollection
10 references to Handlers
System.ServiceModel (10)
System\ServiceModel\Channels\HttpMessageHandlerFactory.cs (8)
143
if (configElement.
Handlers
!= null && configElement.
Handlers
.Count > 0)
168
if (configElement.
Handlers
== null || configElement.
Handlers
.Count == 0)
173
Type[] handlerList = new Type[configElement.
Handlers
.Count];
174
for (int i = 0; i < configElement.
Handlers
.Count; i++)
176
Type handlerType = HttpChannelUtilities.GetTypeFromAssembliesInCurrentDomain(configElement.
Handlers
[i].Type);
179
throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR.GetString(SR.CanNotLoadTypeGotFromConfig, configElement.
Handlers
[i].Type)));
System\ServiceModel\Configuration\HttpMessageHandlerFactoryValidator.cs (2)
20
if (!string.IsNullOrWhiteSpace(configElement.Type) && configElement.
Handlers
!= null && configElement.
Handlers
.Count > 0)