This commit is contained in:
shinichi
2020-10-07 18:34:04 +02:00
parent 46083b3912
commit 7bf5bdb1ce
8 changed files with 33 additions and 30 deletions

View File

@@ -4,7 +4,7 @@ using System.Net.Sockets;
using System.Text;
using ProftaakRH;
namespace Client
namespace ClientApp.Utils
{
public class Client : IDataReceiver
{
@@ -79,8 +79,6 @@ namespace Client
this.stream = this.client.GetStream();
tryLogin();
this.stream.BeginRead(this.buffer, 0, this.buffer.Length, new AsyncCallback(OnRead), null);
}