async socket telnet

This commit is contained in:
2023-05-12 17:55:51 +09:00
parent 59f0977eaf
commit 16d0ca5d8a
8 changed files with 310 additions and 24 deletions

View File

@@ -9,7 +9,6 @@ namespace ConsoleApp.TelnetSamples
public interface ITelnetClient
{
string Connect(string ip, int port = 23);
string Read();
string SendCommand(string command);
void Close();
}