public BasicHttpCustomHeaderBinding(IClientCustomHeader customHeader, BasicHttpSecurityMode securityMode)
     : base(securityMode) {
     channelBindingElement = new CustomHeaderBindingElement();
     channelBindingElement.CustomHeader = customHeader;
 }
 public PollingDuplexCustomHeaderBinding(IClientCustomHeader customHeader, PollingDuplexHttpSecurityMode securityMode)
     : base(securityMode) {
     channelBindingElement = new CustomHeaderBindingElement();
     channelBindingElement.CustomHeader = customHeader;
 }
Exemple #3
0
 public BasicHttpCustomHeaderBinding(IClientCustomHeader customHeader, BasicHttpSecurityMode securityMode)
     : base(securityMode)
 {
     channelBindingElement = new CustomHeaderBindingElement();
     channelBindingElement.CustomHeader = customHeader;
 }
 public CustomHeaderChannel(ChannelManagerBase channelManager, IRequestChannel innerChannel, IClientCustomHeader customHeader)
     : base(channelManager)
 {
     this.m_innerChannel = innerChannel;
     this.m_customHeader = customHeader;
 }
 public CustomHeaderChannel(ChannelManagerBase channelManager, IRequestChannel innerChannel, IClientCustomHeader  customHeader)
     : base(channelManager)
 {
     this.m_innerChannel = innerChannel;
     this.m_customHeader = customHeader;
 }
Exemple #6
0
 public PollingDuplexCustomHeaderBinding(IClientCustomHeader customHeader, PollingDuplexHttpSecurityMode securityMode)
     : base(securityMode)
 {
     channelBindingElement = new CustomHeaderBindingElement();
     channelBindingElement.CustomHeader = customHeader;
 }
 public CustomHeaderChannelFactory(IChannelFactory <IRequestChannel> innerChannelFactory, IClientCustomHeader customHeader)
 {
     this.m_customHeader      = customHeader;
     this.innerChannelFactory = innerChannelFactory;
 }