ClientDisconnectedEventArgs.cs 403 B

12345678910111213141516
  1. using System;
  2. using System.Net.Sockets;
  3. namespace SWRIS.Events
  4. {
  5. public class ClientDisconnectedEventArgs : EventArgs
  6. {
  7. public Socket ClientSocket { get; }
  8. public string IpAddress { get; }
  9. public ClientDisconnectedEventArgs(Socket clientSocket, string ipAddress)
  10. {
  11. ClientSocket = clientSocket;
  12. IpAddress = ipAddress;
  13. }
  14. }
  15. }