AdvancedLauncher.SDK.Model.Events.DownloadStatusEventArgs.DownloadStatusEventArgs C# (CSharp) Method

DownloadStatusEventArgs() public method

Initializes a new instance of DownloadStatusEventArgs for specified DMODownloadStatusCode, Info, Progress and MaxProgress.
public DownloadStatusEventArgs ( DMODownloadStatusCode Code, string Info, int Progress, int MaxProgress )
Code DMODownloadStatusCode Status code
Info string Information string
Progress int Progress
MaxProgress int Max progress
        public DownloadStatusEventArgs(DMODownloadStatusCode Code, string Info, int Progress, int MaxProgress)
        {
            this.Code = Code;
            this.Info = Info;
            this.Progress = Progress;
            this.MaxProgress = MaxProgress;
        }
DownloadStatusEventArgs