AdvancedLauncher.SDK.Model.Web.AbstractWebProvider.OnStatusChanged C# (CSharp) Method

OnStatusChanged() protected method

Calls on status changing
protected OnStatusChanged ( DMODownloadStatusCode code, string info, int progress, int maxProgress ) : void
code DMODownloadStatusCode Status code
info string Information string
progress int Current progress
maxProgress int Max progress
return void
        protected virtual void OnStatusChanged(DMODownloadStatusCode code, string info, int progress, int maxProgress)
        {
            if (LogManager != null) {
                LogManager.Info(String.Format("GuildInfo obtaining status changed: code={0}, info={1}, p={2}, pm={3}", code, info, progress, maxProgress));
            }
            if (StatusChanged != null) {
                StatusChanged(this, new DownloadStatusEventArgs(code, info, progress, maxProgress));
            }
        }