I create NetTcpBinding-s on application's client side in code just after aplication started and then use it to create channel factory via
new ChannelFactory<TService>(binding, address)
constructor.
Is it correct to pre-cache these NetTcpBinding instances in some List[NetTcpBinding] collection and then use elements of this collection to create ChannelFactory multiple times? Does WCF every time automatically reset binding timeouts etc.?
Is it safe at all or it is more safe to create new binding instance to every client call?