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