TCPListener and StreamSocket
问题 I have an odd problem. I'm trying to get a TCP connection going from my local PC to a remote hololens. On PC, I use the standard C# APIs (TCPClient, TCPListener) and on the Hololens I'm forced to use the UWP stuff (StreamSocket, StreamSocketListener). I have tested the following configurations: StreamSocket (local PC) <-> StreamSocketListener (Hololens): Working StreamSocketListener (local PC) <-> StreamSocket (Hololens): Working TCPClient (local PC) <-> StreamSocketListener (Hololens):