* Introduced new HttpServer.Tests project

* Split the GetAssetStreamHandler testing into separate tests for BaseRequestHandler
* Ignored some gens
This commit is contained in:
lbsa71
2009-05-08 06:11:44 +00:00
parent bf5fda8908
commit 8ac73be917
6 changed files with 136 additions and 37 deletions

View File

@@ -75,5 +75,12 @@ namespace OpenSim.Framework.Servers.HttpServer
return path.StartsWith(Path);
}
public string[] SplitParams(string path)
{
string param = GetParam(path);
return param.Split(new char[] { '/', '?', '&' }, StringSplitOptions.RemoveEmptyEntries);
}
}
}