예제 #1
0
        public PEXInspector(string path)
        {
            _mode = PEXMode.File;
            _filePath = path;

            _permissions = new PermissionSet();
        }
예제 #2
0
        public PEXInspector(string host, int port, string user, string pass, string db)
        {
            _mode = PEXMode.MySQL;
            _host = host;
            _port = port;
            _user = user;
            _pass = pass;
            _db = db;

            _permissions = new PermissionSet();
        }