Catel.Modules.DownloadingModuleCatalog.InnerLoad C# (CSharp) Method

InnerLoad() protected method

Does the actual work of loading the catalog. The base implementation does nothing.
protected InnerLoad ( ) : void
return void
        protected override void InnerLoad()
        {
            foreach (var module in Modules)
            {
                if (module.InitializationMode == InitializationMode.WhenAvailable)
                {
                    LoadModule(module.ModuleName, () => Log.Debug("Completed loading initial module"));
                }
            }
        }