コード例 #1
0
 public ReceiveMessagesTask(ChannelConfiguration config, IClientInputChannel channel, ChannelFolder folder, ReceiveRange range)
     : base(config, channel)
 {
     this.config = config;
     this.channel = channel;
     this.folder = folder;
     this.range = range;
     this.dataService = ClientState.Current.DataService;
 }
コード例 #2
0
        public ReceiveMessagesTask(ChannelConfiguration config, IClientInputChannel channel, ChannelFolder folder, ReceiveRange range)
            : base(config, channel)
        {
            this.config = config;
            this.channel = channel;
            this.folder = folder;
            this.range = range;

            mailbox = VirtualMailBox.Current;
        }
コード例 #3
0
 public EnumerateLabelsFolderTask(ChannelConfiguration config, IClientInputChannel channel, ChannelFolder folder, ReceiveRange range)
     : base(config, channel, folder, range)
 {
 }
コード例 #4
0
 public EnumerateLabelsFolderTask(List<Message> changed, ChannelConfiguration config, IClientInputChannel channel, ChannelFolder folder, ReceiveRange range)
     : base(config, channel, folder, range)
 {
     this.changed = changed;
 }
コード例 #5
0
ファイル: ReceiveTask.cs プロジェクト: Klaudit/inbox2_desktop
 public ReceiveTask(ReceiveRange range, ChannelInstance channel)
 {
     this.range = range;
     this.channel = channel;
 }
コード例 #6
0
ファイル: ReceiveTask.cs プロジェクト: Klaudit/inbox2_desktop
 public ReceiveTask(ReceiveRange range)
 {
     this.range = range;
 }