Started on Events & Connection Handling

Events
- Created OnClientConnected
Connection Handling
- Started on async client connection handling, firing event
This commit is contained in:
2021-12-13 15:43:28 +10:00
parent 87a569ee9e
commit fc1195c446
4 changed files with 87 additions and 7 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Articulate_Network.Events
{
public class ClientConnectedEventArgs
{
public TcpClient TcpClient { get; set; }
}
}