Esempio n. 1
0
        public PopChat(PopClient client)
        {
            this.client   = client;
            popConnection = new PopConnection(client);

            Nothing = new NothingPopCommand(popConnection);
            User    = new UserPopCommand(popConnection);
            Pass    = new PassPopCommand(popConnection);
            Stat    = new StatPopCommand(popConnection);
            Retr    = new RetrPopCommand(popConnection);
            Quit    = new QuitPopCommand(popConnection);
            List    = new ListPopCommand(popConnection);
            Uidl    = new UidlPopCommand(popConnection);
            Dele    = new DelePopCommand(popConnection);

            new IPopCommand[] { Nothing, User, Pass, Stat, Retr, Quit, List, Uidl, Dele }.ToList().ForEach(pc => pc.PopClientLog += PopCommand_PopClientLog);
        }
Esempio n. 2
0
        public PopChat(PopClient client)
        {
            this.client = client;
            popConnection = new PopConnection(client);

            Nothing = new NothingPopCommand(popConnection);
            User = new UserPopCommand(popConnection);
            Pass = new PassPopCommand(popConnection);
            Stat = new StatPopCommand(popConnection);
            Retr = new RetrPopCommand(popConnection);
            Quit = new QuitPopCommand(popConnection);
            List = new ListPopCommand(popConnection);
            Uidl = new UidlPopCommand(popConnection);
            Dele = new DelePopCommand(popConnection);

            new IPopCommand[] { Nothing, User, Pass, Stat, Retr, Quit, List, Uidl, Dele }.ToList().ForEach(pc => pc.PopClientLog += PopCommand_PopClientLog);
        }
Esempio n. 3
0
 public BasePopCommand(PopConnection popConnection)
 {
     this.PopConnection = popConnection;
 }
 public QuitPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
 public DelePopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
 public UserPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
 public ListPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
 protected override string ExecuteInternal(object argument)
 {
     return(PopConnection.SendDele((int)argument));
 }
 public StatPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 10
0
 public RetrPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 11
0
 public PassPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 12
0
 protected override string ExecuteInternal(object argument)
 {
     return(PopConnection.SendPass(argument as string));
 }
Esempio n. 13
0
 public PassPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 14
0
 public RetrPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
 public NothingPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 16
0
 public UserPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 17
0
 public QuitPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 18
0
 public BasePopCommand(PopConnection popConnection)
 {
     this.PopConnection = popConnection;
 }
Esempio n. 19
0
 public ListPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 20
0
 public DelePopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 21
0
 public UidlPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 22
0
 public StatPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }
Esempio n. 23
0
 public UidlPopCommand(PopConnection popConnection)
     : base(popConnection)
 {
 }