Hi!
I am having following code:
System.Net.Sockets.Socket mySocket;
....
mySocket.Receive(aBuffer, aOffset, aSize, SocketFlags.Peek)
When running on PocketPC device (Windows Mobile 2003, 4.20) , or in Emulator
(PPC 2003 SDK), I am getting exception:
An unhandled exception of type 'System.Net.Sockets.SocketException' occurred
in System.dll
Additional information: The attempted operation is not supported for the
type of object reference
.......
Code is running fine on PC (full framework)
It also works on PPC only when I use SocketFlags.None
Documentation says that Peek flag is supported on CF
?