Example #1
0
        public void AddProtocolListent <T>(int code, T handler)
        {
            ICommand command = _GetCommand(code);

            if (command != null)
            {
                command.AddProtocolEventListent(handler as Delegate);
            }
        }