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); }
public Info() { imgrInterface = new DmImgrWebInterface(); }