コード例 #1
0
            public ProxyCommunicator(ICoapConfig config)
            {
                _coapStack = new CoapStack(config);
                _httpStack = new HttpStack(config.HttpPort);

                _coapStack.RegisterReceiver(this);
                _httpStack.RegisterReceiver(this);
            }