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

c# - SharpSVN - How to get the previous revision? -

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

url - Querystring manipulation of email Address in PHP -