using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport.Servers
{
///
/// Represents a new client event arguments.
///
///
public class ClientConnectedEventArgs : EventArgs
{
///
/// Gets or sets the new socket.
///
public TcpClient Socket { get; set; }
///
/// Initializes a new instance of the class.
///
/// The socket.
public ClientConnectedEventArgs(TcpClient socket)
{
Socket = socket;
}
}
}