AspNetCoreSecuritySamples
AspNetCoreSecuritySamples copied to clipboard
Proper use of `QueryString`.
If QueryString
is empty, then PathString + QueryString + "&skip=1"
becomes "/target/path&skip=1"
.
If you instead do PathString + QueryString.Add("skip", "1")
, it becomes "/target/path?skip=1"
.