Ejemplo n.º 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;
 }
Ejemplo n.º 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;
        }
 public EnumerateLabelsFolderTask(ChannelConfiguration config, IClientInputChannel channel, ChannelFolder folder, ReceiveRange range)
     : base(config, channel, folder, range)
 {
 }
 public EnumerateLabelsFolderTask(List<Message> changed, ChannelConfiguration config, IClientInputChannel channel, ChannelFolder folder, ReceiveRange range)
     : base(config, channel, folder, range)
 {
     this.changed = changed;
 }
Ejemplo n.º 5
0
 public ReceiveTask(ReceiveRange range, ChannelInstance channel)
 {
     this.range = range;
     this.channel = channel;
 }
Ejemplo n.º 6
0
 public ReceiveTask(ReceiveRange range)
 {
     this.range = range;
 }