Open.Core.PackageBase.InsertCssLinks C# (CSharp) Method

InsertCssLinks() private method

private InsertCssLinks ( ) : void
return void
        private void InsertCssLinks()
        {
            if (!HasResourceUrls) return;
            foreach (string url in ResourceUrls.Split(PathDivider))
            {
                // NB: Does not insert the same link multiple times within the page.
                Css.InsertLink(FormatUrl(url));
            }
        }