Beispiel #1
0
 public RenameCommand(
     IImapMessageChannel channel,
     IImapMailStore mailstore)
 {
     _channel   = channel;
     _mailstore = mailstore;
 }
 public CreateCommandFactory(
     IImapMessageChannel channel,
     IImapMailStore mailstore)
 {
     _channel   = channel;
     _mailstore = mailstore;
 }
 protected ExamineOrSelectCommand(
     IImapMailStore mailstore,
     IImapMessageChannel channel,
     IImapMailboxPointer mailboxPointer)
 {
     _mailstore      = mailstore;
     _channel        = channel;
     _mailboxPointer = mailboxPointer;
 }
Beispiel #4
0
 public ExamineCommand(IImapMailStore mailstore, IImapMessageChannel channel, IImapMailboxPointer mailboxPointer) :
     base(mailstore, channel, mailboxPointer)
 {
 }
Beispiel #5
0
 public LSubCommand(IImapMessageChannel channel, IImapMailStore mailstore) : base(channel, mailstore)
 {
 }
Beispiel #6
0
 protected ListOrLSubCommand(IImapMessageChannel channel, IImapMailStore mailstore)
 {
     _channel   = channel;
     _mailstore = mailstore;
 }
Beispiel #7
0
 public DeleteCommand(IImapMailStore mailstore, IImapMessageChannel channel)
 {
     _mailstore = mailstore;
     _channel   = channel;
 }
Beispiel #8
0
 public StoreCommand(IImapMailStore mailstore, IImapMessageChannel channel, IImapMailboxPointer mailboxPointer)
 {
     _mailstore      = mailstore;
     _channel        = channel;
     _mailboxPointer = mailboxPointer;
 }
Beispiel #9
0
 protected SubscribeOrUnsubscribeCommand(IImapMessageChannel channel, IImapMailStore mailstore)
 {
     _channel   = channel;
     _mailstore = mailstore;
 }
Beispiel #10
0
 public UnsubscribeCommand(IImapMessageChannel channel, IImapMailStore mailstore) : base(channel, mailstore)
 {
 }