Hoppa till huvudinnehåll

Uri.BuildQueryString

Assemblera en post till en URI-frågesträng.

Syntax

Uri.BuildQueryString(
query as record
) as text

Remarks

Assemblera posten query till en URI-frågesträng, med undantagstecken vid behov.

Examples

Example #1

Koda en frågesträng som innehåller specialtecken.

Uri.BuildQueryString([a = "1", b = "+$"])

Result:

"a=1&b=%2B%24"

Category

Uri