Blighttp.WebServer.ConvertPath C# (CSharp) Method

ConvertPath() private method

private ConvertPath ( string path ) : List
path string
return 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();
        }