Telerik.Web.Mvc.SharedWebAssets.LoadFromConfiguration C# (CSharp) 메소드

LoadFromConfiguration() 개인적인 정적인 메소드

private static LoadFromConfiguration ( IConfigurationManager configurationManager ) : void
configurationManager IConfigurationManager
리턴 void
        private static void LoadFromConfiguration(IConfigurationManager configurationManager)
        {
            WebAssetConfigurationSection section = configurationManager.GetSection<WebAssetConfigurationSection>(WebAssetConfigurationSection.SectionName);

            if (section != null)
            {
                LoadGroups(section.StyleSheets, styleSheets, WebAssetDefaultSettings.StyleSheetFilesPath, WebAssetDefaultSettings.Version);
                LoadGroups(section.Scripts, scripts, WebAssetDefaultSettings.ScriptFilesPath, WebAssetDefaultSettings.Version);
            }
        }