// Token: 0x060026FF RID: 9983 RVA: 0x0008D604 File Offset: 0x0008B804
        public override string GetResourcePath(IPageContext pageContext, bool isBootResource)
        {
            string text = ResourceBase.CombinePath(new string[]
            {
                this.GetStyleDirectory(pageContext, pageContext.Theme, isBootResource),
                this.ResourceName
            });

            return(text.ToLowerInvariant());
        }
        // Token: 0x0600286C RID: 10348 RVA: 0x00095938 File Offset: 0x00093B38
        internal static ResourceBase[] GetNonThemedUserDataEmbededLinks(Slab bootSlab, string owaVersion)
        {
            int num = (bootSlab.PackagedStrings.Length > 0) ? bootSlab.PackagedStrings.Length : bootSlab.Strings.Length;

            ResourceBase[] array = new ResourceBase[num + 1];
            if (bootSlab.PackagedStrings.Any <SlabStringFile>())
            {
                for (int i = 0; i < bootSlab.PackagedStrings.Length; i++)
                {
                    array[i] = new LocalizedStringsScriptResource(bootSlab.PackagedStrings[i].Name, ResourceTarget.Any, owaVersion);
                }
            }
            else
            {
                for (int j = 0; j < bootSlab.Strings.Length; j++)
                {
                    array[j] = new LocalizedStringsScriptResource(bootSlab.Strings[j].Name, ResourceTarget.Any, owaVersion);
                }
            }
            array[array.Length - 1] = new GlobalizeCultureScriptResource(ResourceTarget.Any, owaVersion);
            return(array);
        }