I read the text from Essential WCF - Chapter 4 (Bindings) and found the following, which I reproduce only with the intention of helping someone;
WCF Restricts binding of netNamedPipeBidning to the local machine
Although named pipes can be used to exchange data over a network, WCF restricts the use of local communication on a computer. This means that it can be used to ensure that your service is not accessible over the network. This is done using two mechanisms:
a) The network security identifier (SID: S-1-5-2) is denied access to the named pipe. b) the name of the named pipe is randomly generated and stored in shared memory, so only clients working on the same computer can access it.
source share