Shortcut for add Headers and Query String
Closed this issue · 0 comments
lucassklp commented
It could be like:
AddHeader(new Dictionary<string, string>(){
{"key1": "value1"},
{"key2": val}
//...
});
Or simply:
AddHeader(new {
key1: "value1",
key2: "value2"
})