mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-09 17:33:50 +00:00
14 lines
297 B
C#
14 lines
297 B
C#
namespace TcpSharp;
|
|
|
|
public class OnClientConnectedEventArgs : EventArgs
|
|
{
|
|
public IPAddress ServerIPAddress
|
|
{
|
|
get { return IPAddress.Parse(ServerHost); }
|
|
}
|
|
|
|
public string ServerHost { get; internal set; }
|
|
|
|
public int ServerPort { get; internal set; }
|
|
}
|