You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in all the methods that allow sending a query parameter as argument like:
TasksQuery
DocumentsQuery
IndexesQuery
KeysQuery
We check that the parameter query exists:
if (query != null)
{
uri = $"{uri}?{query.ToQueryString()}";
}
Possible solutions
It would be great to just add the query to the URI without check it.
We could use the Uri object to handle that or something like the uribuilder.
The text was updated successfully, but these errors were encountered:
Description
Following this discussion
Currently, in all the methods that allow sending a query parameter as argument like:
We check that the parameter query exists:
Possible solutions
It would be great to just add the query to the URI without check it.
We could use the Uri object to handle that or something like the uribuilder.
The text was updated successfully, but these errors were encountered: