I trying to send simple byte array ( length size if 1200 - 1500 bytes ) to some specific ip&port
I see that the return value of the send if the number of the bytes that i really sending .. but on the wireshark and on the client i can't see that my buffer was sent.
And there is no exception on the send
the code
UdpClient udpClient = new UdpClient("190.1.2.3", 11000);
Byte[] sendBytes = ... ( some serialized data )
try{
udpClient.Send(sendBytes, sendBytes.Length);
// udpClient.Send(sendBytes, sendBytes.Length, "190.1.2.3", 11000);
}
catch ( Exception e ){
Console.WriteLine( e.ToString());
}