Adding an unescaped query parameter in C# -


i trying add unescaped parameter url of uribuilder. how can prevent characters of parameter escaped?

query.set("oauth_signature", consumer_secret + "%26"); builder.query = query.tostring(); 

the resulting url contains % escaped sequence oauth_signature value (which %25 apparently).

%26 & right? why not

query.set("oaut_signature", consumer_secret + "&"); 

Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -