Exemplo n.º 1
0
 public void OnClientSystemInformation(Client client, SystemInfo systemInformation)
 {
     UiMediator.ShowSystemInformation(client, systemInformation);
 }
Exemplo n.º 2
0
 public void OnProcessListReceived(Client client, List <ProcessInfo> processes)
 {
     UiMediator.ShowProcessList(client, processes);
 }
Exemplo n.º 3
0
 public void OnFileSystemRoots(Client client, List <DiskDriveInfo> drives)
 {
     UiMediator.ShowFsRoots(client, drives);
 }
Exemplo n.º 4
0
 public void OnFileSystemDirEntries(Client client, string basePath, List <FileInfo> dirEntries)
 {
     UiMediator.ShowFsDirEntries(client, basePath, dirEntries);
 }
Exemplo n.º 5
0
 public void OnPresentationData(Client client)
 {
     UiMediator.ShowClientConnection(client);
 }