Blighttp.WebServer.ConvertPath C# (CSharp) Метод

ConvertPath() приватный Метод

private ConvertPath ( string path ) : List
path string
Результат List
        List<string> ConvertPath(string path)
        {
            List<string> tokens = path.Tokenise("/");
            var output = from x in tokens where x.Length > 0 select HttpUtility.UrlDecode(x);
            return output.ToList();
        }