namespace WatsonTcp { /// /// Event arguments for when authentication is requested from a client. /// public class AuthenticationRequestedEventArgs { internal AuthenticationRequestedEventArgs(string ipPort) { IpPort = ipPort; } /// /// The IP:port of the client. /// public string IpPort { get; } } }