Files
Articulate-Network/Events/ClientConnectedEventArgs.cs
Ryan fc1195c446 Started on Events & Connection Handling
Events
- Created OnClientConnected
Connection Handling
- Started on async client connection handling, firing event
2021-12-13 15:43:28 +10:00

16 lines
307 B
C#

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; }
}
}