My project has a netTCP WCF service. This is the app.config for it:
The message encoding specified by the binding will determine how your data gets turned into bytes on the wire. For the NetTcpBinding, it will automatically use binary encoding which gives you the most compact representation of your message out of all the built-in WCF encoders.
For more information, I would recommend these resources: