Esempio n. 1
0
        public void Open(string host, int port)
        {
            cpClient = new CPClient();
            cpClient.StateChanged += CpClient_StateChanged;

            cpClient.NotificationReceived += CpClient_NotificationReceived;

            cpClient.Connect(host, port);
        }