Exemplo n.º 1
0
 public static bool BeginReceiveFrom(Socket s, byte[] buffer, int ofs, int size, ref EndPoint remoteEP, AsyncCallback callback, object state)
 {
     return(SocketExtension.BeginReceiveFrom(s, buffer, ofs, size, SocketFlags.None, ref remoteEP, callback, state));
 }
Exemplo n.º 2
0
 public static bool BeginReceiveFrom(Socket s, byte[] buffer, int ofs, int size, ref EndPoint remoteEP, AsyncCallback callback)
 {
     return(SocketExtension.BeginReceiveFrom(s, buffer, ofs, size, ref remoteEP, callback, null));
 }