In section about parameters, there's a paragraph that allows to use AddObject instead of several AddParameters:
var params = new {
status = 1,
priority = "high",
ids = new [] { "123", "456" }
};
request.AddObject(params);
There are two questions:
- Is it possible to use for query parameters?
- What will be if there is null value? Exception? Just not added query parameter?
Answering on my questions:
AddParameter, hence developer should useAddQueryParameter.