| 12345678910111213141516 |
- using System;
- using System.Net.Sockets;
- namespace SWRIS.Events
- {
- public class ClientDisconnectedEventArgs : EventArgs
- {
- public Socket ClientSocket { get; }
- public string IpAddress { get; }
- public ClientDisconnectedEventArgs(Socket clientSocket, string ipAddress)
- {
- ClientSocket = clientSocket;
- IpAddress = ipAddress;
- }
- }
- }
|