Beispiel #1
0
        internal DownloadProgress(PatchIntercomms comms, IDownloadHandler downloadHandler)
        {
            this.comms           = comms;
            this.downloadHandler = downloadHandler;

            comms.SetProgress(this);
        }
Beispiel #2
0
        internal FilePatchProgress(PatchIntercomms comms, string filename)
        {
            this.comms = comms;

            Percentage   = 0;
            ProgressInfo = Localization.Get(StringId.UpdatingX, filename);

            comms.SetProgress(this);
        }
Beispiel #3
0
 protected PatchMethodBase(PatchIntercomms comms)
 {
     this.comms = comms;
 }