示例#1
0
 public MessageParser(BasicCommunication.RawText MyRawText, Logger MyLogger, TCPWrapper MyTCPWrapper, MySqlManager MyMySqlManager)
 {
     this.TheLogger           = MyLogger;
     this.TheTCPWrapper       = MyTCPWrapper;
     this.TheMySqlManager     = MyMySqlManager;
     TheRawText               = MyRawText;
     TheRawText.Got_RAW_TEXT += new BasicCommunication.RawText.Got_RAW_TEXT_EventHandler(OnGot_RAW_TEXT);
 }
示例#2
0
 public MessageParser(BasicCommunication.RawText MyRawText, Logger MyLogger, TCPWrapper MyTCPWrapper, MySqlManager MyMySqlManager)
 {
     this.TheLogger = MyLogger;
     this.TheTCPWrapper = MyTCPWrapper;
     this.TheMySqlManager = MyMySqlManager;
     TheRawText = MyRawText;
     TheRawText.Got_RAW_TEXT += new BasicCommunication.RawText.Got_RAW_TEXT_EventHandler(OnGot_RAW_TEXT);
 }
示例#3
0
 public GuildTextHandler(BasicCommunication.RawText MyRawText, TCPWrapper MyTCPWrapper, BasicCommunication.MessageParser MyMessageParser, MySqlManager MyMySqlManager, Logger MyLogger)
 {
     this.TheLogger        = MyLogger;
     this.TheMessageParser = MyMessageParser;
     this.TheRawText       = MyRawText;
     this.TheMySqlManager  = MyMySqlManager;
     this.TheTCPWrapper    = MyTCPWrapper;
     TheMessageParser.Get_GlobalMessage += new BasicCommunication.MessageParser.Get_GlobalMessageEventHandler(Got_GlobalMessage);
 }
示例#4
0
 public GuildTextHandler(BasicCommunication.RawText MyRawText, TCPWrapper MyTCPWrapper, BasicCommunication.MessageParser MyMessageParser, MySqlManager MyMySqlManager, Logger MyLogger)
 {
     this.TheLogger = MyLogger;
     this.TheMessageParser = MyMessageParser;
     this.TheRawText = MyRawText;
     this.TheMySqlManager = MyMySqlManager;
     this.TheTCPWrapper = MyTCPWrapper;
     TheMessageParser.Get_GlobalMessage += new BasicCommunication.MessageParser.Get_GlobalMessageEventHandler(Got_GlobalMessage);
 }