So I create NetTcpBinding on both sever and client side (in a runtime), but how will connection behave in case of configuration conflicts? E.g. if on server I have
binding.ReliableSession.Enabled = true;
and I forget to put same lines on client side, would the reliable session actually be working?
Edit: to rephrase, in case of any binding and any binding property, if they differ on server and client, which one will be used in work?