Example #1
0
 public ChatAction(TwitchChannel channel, MainWindow controller, TwitchUser user, string message)
     : base(channel, controller, ItemType.Action, user, message)
 {
 }
Example #2
0
 public StatusMessage(TwitchChannel channel, MainWindow controller, string message)
     : base(channel, controller, ItemType.Status)
 {
     Message = message;
 }
Example #3
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, TwitchUser user, string message, bool question)
     : base(channel, controller, question ? ItemType.Question : ItemType.Message)
 {
     User = user;
     Message = message;
 }
Example #4
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, ItemType type, TwitchUser user, string message)
     : base(channel, controller, type)
 {
     User = user;
     Message = message;
 }
Example #5
0
 public ChatItem(TwitchChannel channel, MainWindow controller, ItemType type)
 {
     Channel = channel;
     Controller = controller;
     Type = type;
 }
Example #6
0
 public Subscriber(TwitchChannel channel, MainWindow controller, TwitchUser user)
     : base(channel, controller, ItemType.Subscriber)
 {
     User = user;
 }
Example #7
0
 public Subscriber(MainWindow controller, TwitchUser user)
     : base(controller, ItemType.Subscriber)
 {
     User = user;
 }
Example #8
0
 public ChatItem(MainWindow controller, ItemType type)
 {
     Controller = controller;
     Type = type;
     Time = DateTime.Now;
 }
Example #9
0
 public ChatAction(TwitchChannel channel, MainWindow controller, TwitchUser user, string message)
     : base(channel, controller, ItemType.Action, user, message)
 {
 }
Example #10
0
 public StatusMessage(MainWindow controller, string message)
     : base(controller, ItemType.Status)
 {
     Message = message;
 }
Example #11
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, ItemType type, TwitchUser user, string message)
     : base(channel, controller, type)
 {
     User    = user;
     Message = message;
 }
Example #12
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, TwitchUser user, string message, bool question)
     : base(channel, controller, question ? ItemType.Question : ItemType.Message)
 {
     User    = user;
     Message = message;
 }
Example #13
0
 public Subscriber(TwitchChannel channel, MainWindow controller, TwitchUser user)
     : base(channel, controller, ItemType.Subscriber)
 {
     User = user;
 }
Example #14
0
 public ChatItem(TwitchChannel channel, MainWindow controller, ItemType type)
 {
     Channel    = channel;
     Controller = controller;
     Type       = type;
 }
Example #15
0
 public StatusMessage(TwitchChannel channel, MainWindow controller, string message)
     : base(channel, controller, ItemType.Status)
 {
     Message = message;
 }