Esempio n. 1
0
		public ChatLine(string colorKey, DateTime time, int nickHashCode, string nick, string text, ChatMarker decoration)
		{
			this.ColorKey = colorKey;
			this.Time = time;
			this.NickHashCode = nickHashCode;
			this.Nick = nick;
			this.Marker = decoration;
			this.RawText = text;
			this.Process(text);
		}
Esempio n. 2
0
 public ChatLine(string colorKey, DateTime time, int nickHashCode, string nick, string text, ChatMarker decoration)
 {
     this.ColorKey     = colorKey;
     this.Time         = time;
     this.NickHashCode = nickHashCode;
     this.Nick         = nick;
     this.Marker       = decoration;
     this.RawText      = text;
     this.Process(text);
 }
Esempio n. 3
0
 public ChatLine(string colorKey, int nickHashCode, string nick, string text, ChatMarker decoration)
     : this(colorKey, DateTime.Now, nickHashCode, nick, text, decoration)
 {
 }
Esempio n. 4
0
		public ChatLine(string colorKey, int nickHashCode, string nick, string text, ChatMarker decoration)
			: this(colorKey, DateTime.Now, nickHashCode, nick, text, decoration)
		{
		}