6
È possibile recuperare il nome host/porta sottostante da un nuovo TcpClient?È possibile recuperare il nome host e la porta da un System.Net.Sockets.TcpClient?
TcpListener listener = new TcpListener(IPAddress.Any, port);
TcpClient client = listener.AcceptTcpClient();
// get the hostname
// get the port
Ho passi attorno a client.Client
(un System.Net.Socket
), ma non riesco a trovare nulla in ci sia. Qualche idea?
Grazie a tutti.