Beispiel #1
0
        public void UpdatePeerDataGrid(string inIp, int inDownloaded, int inUploaded, bool update, bool delete)
        {
            // Update the amount of file downloaded with the incoming downloaded variable
            amountOfFileAquired += inDownloaded;

            // Send the incoming variables to the UI update class
            uiUpdate.UpdatePeerList(inIp, inDownloaded, inUploaded, update, delete);
        }