Is the NetworkStream class, not included in the Mango SDK?
It doesn’t seem to be in the System.Net assembly but maybe it is somewhere else.
If it is not available (I wonder why) what would be a good alternative? Would the best way to go to just implement it myself?
Is the NetworkStream class, not included in the Mango SDK? It doesn’t seem to
Share
It doesn’t appear to be in the System.Net.Sockets namespace, so I guess you’re out of luck. If I were to hazard a guess, I’d say it wasn’t included because
Streamexposes blocking read/write methods and they preferred to excludeNetworkStreamentirely rather than have them throw aNotSupportedException.Having a stream also implies that you can use
StreamReader, which wouldn’t be true due to the lack of blocking read/writes.