We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To simplify the process of building requests even more,
Within a class or interface, having something like:
[service.Request("Post")] public Response MyEndpoint(QueryParameters qrParameters, object payload = null);
Using MyEndpoint( qrParameters: {{ "foo", "bar" }}); would automatically call {baseUrl}/MyEndpoint?foo=bar as POST
MyEndpoint( qrParameters: {{ "foo", "bar" }});
{baseUrl}/MyEndpoint?foo=bar
POST
The text was updated successfully, but these errors were encountered:
bricefriha
No branches or pull requests
Main goal
To simplify the process of building requests even more,
Usage
Within a class or interface, having something like:
Using
MyEndpoint( qrParameters: {{ "foo", "bar" }});
would automatically call{baseUrl}/MyEndpoint?foo=bar
asPOST
The text was updated successfully, but these errors were encountered: