Ejemplo n.º 1
0
        public void msg(CommandParameters commandParameters, string message)
        {
            msgParams newmsgParams = new msgParams(message);

            newmsgParams.commandParameters = commandParameters;
            messageHandler.Invoke(new msgParams(message));
        }
Ejemplo n.º 2
0
 public void msg(CommandParameters commandParameters, msgParams messageParams)
 {
     messageParams.commandParameters = commandParameters;
     messageHandler.Invoke(messageParams);
 }
Ejemplo n.º 3
0
 public void msg(msgParams msgParameters)
 {
     messageHandler.Invoke(msgParameters);
 }