1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 12:53:02 +00:00

Update socket Close to return Task, removed eventhandlers after opening socket

This commit is contained in:
JKorf
2018-03-09 11:39:47 +01:00
parent e5f5125f8f
commit 7996fa4c20
4 changed files with 19 additions and 8 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ namespace CryptoExchange.Net.Interfaces
Task<bool> Connect();
void Send(string data);
void Close();
Task Close();
void SetProxy(string host, int port);
}
}