Releases: thebitbrine/QuickMan
Releases · thebitbrine/QuickMan
Fixed URL wildcards
Fixed the issue of controller taking the whole URL as an endpoint, and 404'ing
URL Arguments
Fixed: passing URL arguments.
This is how you can parse your arguments from 'Context' correctly:
Dictionary<string, string> KeyArgPair = new Dictionary<string, string>();
if (Context.Request.RawUrl.Contains('?'))
foreach (var Argument in Context.Request.RawUrl.Split('?', '&'))
if(Argument.Contains("="))
KeyArgPair.Add(WebUtility.UrlDecode(Argument.Split('=')[0]), WebUtility.UrlDecode(Argument.Split('=')[1]));
Initial Release
v1.0 Update README.md