Subtext.Framework.UI.Skinning.ScriptElementCollectionRenderer.GetSkinPath C# (CSharp) 메소드

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

Gets the skin path.
private static GetSkinPath ( string skinTemplateFolder ) : string
skinTemplateFolder string Name of the skin.
리턴 string
        private static string GetSkinPath(string skinTemplateFolder)
        {
            string applicationPath = HttpContext.Current.Request.ApplicationPath;
            return (applicationPath == "/" ? String.Empty : applicationPath) + "/Skins/" + skinTemplateFolder + "/";
        }