private OneWayBindingElement(OneWayBindingElement elementToBeCloned) : base(elementToBeCloned)
 {
     this.channelPoolSettings = elementToBeCloned.ChannelPoolSettings.Clone();
     this.packetRoutable      = elementToBeCloned.PacketRoutable;
     this.maxAcceptedChannels = elementToBeCloned.maxAcceptedChannels;
 }
 public OneWayBindingElement()
 {
     this.channelPoolSettings = new System.ServiceModel.Channels.ChannelPoolSettings();
     this.packetRoutable      = false;
     this.maxAcceptedChannels = 10;
 }