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