Example #1
0
 public Command(TextServerAsync server)
 {
     this.server = server;
 }
Example #2
0
 public ChangePermissionsCommand(TextServerAsync server) : base(server)
 {
 }
 public ShowActiveUsersCommand(TextServerAsync server) : base(server)
 {
 }
Example #4
0
 public ChangePasswordCommand(TextServerAsync server) : base(server)
 {
 }
Example #5
0
 public LogoutCommand(TextServerAsync server) : base(server)
 {
 }
Example #6
0
 public LoginHistoryCommand(TextServerAsync server) : base(server)
 {
 }
Example #7
0
 public HelpCommand(TextServerAsync server) : base(server)
 {
 }
Example #8
0
 public Session(TextServerAsync ts, TcpClient tcpClient)
 {
     this.tcpClient = tcpClient;
     server         = ts;
     netStream      = tcpClient.GetStream();
 }
Example #9
0
 public MessageCommand(TextServerAsync server) : base(server)
 {
 }
Example #10
0
 public StrongCommand(TextServerAsync server) : base(server)
 {
 }
Example #11
0
 public SupportCommand(TextServerAsync server) : base(server)
 {
 }
Example #12
0
 public DeleteUserCommand(TextServerAsync server) : base(server)
 {
 }
Example #13
0
 public RegisterCommand(TextServerAsync server) : base(server)
 {
 }