Ejemplo n.º 1
0
 public MessageHandlerWithBehaviorInjection(Type clientType, IBehaviorInjectionFactory behaviorInjectionFactory)
     : base()
 {
     this.clientType = clientType;
     this.behaviorInjectionFactory = behaviorInjectionFactory;
 }
Ejemplo n.º 2
0
 public MessageHandlerWithBehaviorInjection(HttpMessageHandler innerHandler, Type clientType, IBehaviorInjectionFactory behaviorInjectionFactory)
     : base(innerHandler)
 {
     this.clientType = clientType;
     this.behaviorInjectionFactory = behaviorInjectionFactory;
 }