When I debug a Silverlight app, Visual Studio will just open the page with no extra URL parameters.
So, the url will look something like this: http://localhost:65351/MyApp/
However, I want to add some specific functionality when someone navigates to the pages with extra parameters in the URL. For instance: http://localhost:65351/MyApp/A2Sk9zu
That being a shortened link, which my app will interpret.
I get that I can access the URL paremeters via HtmlPage.Document.QueryString.Keys
but I can't seem to start a debugging session with any parameters to actually check if the flow is handled correctly.