Ketarin.Updater.OnUpdatesFound C# (CSharp) Method

OnUpdatesFound() protected method

Fires the UpdatesFound.
protected OnUpdatesFound ( string updatedApps ) : void
updatedApps string
return void
        protected virtual void OnUpdatesFound(string[] updatedApps)
        {
            if (UpdatesFound != null && updatedApps.Length > 0)
            {
                UpdatesFound(this, new GenericEventArgs<string[]>(updatedApps));
            }
        }