Patcher.UI.Progress.Update C# (CSharp) Method

Update() public method

public Update ( long current, long total, string text ) : void
current long
total long
text string
return void
        public void Update(long current, long total, string text)
        {
            if (CanUpdate(current, total))
            {
                DoUpdate(current, total, text);
            }
        }