public ExplorerForm(Explorer explorer)
        {
            InitializeComponent();

            _explorer = explorer;
            _explorer.PathContentReceived += PathContentReceived;
            _explorer.FileReceived += FileReceived;
            _explorer.RequestPathContent("C:\\");
        }
Example #2
0
        public Slave(Client client)
        {
            Client = client;
            RemoteEndPoint = client.RemoteEndPoint;
            LocalEndPoint = client.LocalEndPoint;

            Explorer = new Explorer(Client);
            Desktop = new Desktop(Client);
        }