Пример #1
0
        public string GetSubFolderPath(string filename = null)
        {
            NameParser parser = new NameParser(NameParserType.URL);
            string     path   = parser.Parse(SubFolderPath.Replace("%host", Host));

            return(Helpers.CombineURL(path, filename));
        }
Пример #2
0
        public string GetSubFolderPath(string filename = null, NameParserType nameParserType = NameParserType.URL)
        {
            string path = NameParser.Parse(nameParserType, SubFolderPath.Replace("%host", Host));

            return(URLHelpers.CombineURL(path, filename));
        }
        public string GetSubFolderPath()
        {
            NameParser parser = new NameParser(NameParserType.URL);

            return(parser.Parse(SubFolderPath.Replace("%host", LocalhostRoot)));
        }
Пример #4
0
 public string GetSubFolderPath()
 {
     return(NameParser.Parse(NameParserType.URL, SubFolderPath.Replace("%host", FileHelpers.ExpandFolderVariables(LocalhostRoot))));
 }
Пример #5
0
 public string GetSubFolderPath()
 {
     return(NameParser.Parse(NameParserType.URL, SubFolderPath.Replace("%host", LocalhostRoot)));
 }
Пример #6
0
 public string GetSubFolderPath()
 {
     return(NameParser.Parse(NameParserType.URL, SubFolderPath.Replace("%host", Helpers.GetVariableFolderPath(LocalhostRoot))));
 }