Example #1
0
        public Server(string url, string port)
        {
            if (url == null)
            {
                url = _DEFAULT_URL_;
            }
            if (port == null)
            {
                port = _DEFAULT_PORT_;
            }

            this.url  = url;
            this.port = port;
            client    = new DmImgrWebInterface(url, port);
        }
Example #2
0
 public Info()
 {
     imgrInterface = new DmImgrWebInterface();
 }