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

DownloadCompleteEventArgs() public method

Initializes a new instance of DownloadCompleteEventArgs for specified DMODownloadResultCode and Guild.
public DownloadCompleteEventArgs ( DMODownloadResultCode Code, Guild Guild ) : AdvancedLauncher.SDK.Model.Entity
Code DMODownloadResultCode Result code
Guild AdvancedLauncher.SDK.Model.Entity.Guild Guild instance
return AdvancedLauncher.SDK.Model.Entity
        public DownloadCompleteEventArgs(DMODownloadResultCode Code, Guild Guild)
        {
            this.Code = Code;
            this.Guild = Guild;
        }
DownloadCompleteEventArgs