Skip to content

Releases: thebitbrine/QuickMan

Fixed URL wildcards

29 Jul 01:36
b940224
Compare
Choose a tag to compare

Fixed the issue of controller taking the whole URL as an endpoint, and 404'ing

URL Arguments

25 Apr 16:57
56182ab
Compare
Choose a tag to compare

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

24 Mar 22:10
45441cd
Compare
Choose a tag to compare
v1.0

Update README.md