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