Beispiel #1
0
        public void CSOp1(int x, int y)
        {
            var method     = nameof(CSOp1);
            var parameters = new Dictionary <string, object>()
            {
                { nameof(x), x },
                { nameof(y), y }
            };

            _protoBase.Invoke(_protocolName, method, parameters);
        }
Beispiel #2
0
        public void TEST(string str)
        {
            var method     = nameof(TEST);
            var parameters = new Dictionary <string, object>()
            {
                { nameof(str), str },
            };

            _protoBase.Invoke(_protocolName, method, parameters);
        }