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]));