Dynamic Rest
A conventions based rest client using the .NET Dynamic Language Runtime.
This is a set of classes that wrap a concrete implementation of http client communication with a DynamicObject. The wrapper translates dynamic method invocations and endpoint paths into REST requests.
All requests are asynynchronous and return Task objects.
The intent is to make it easier to access REST API's from C# without needing to create strongly typed API wrappers and numerous static POCO types just to transfer basic DTO responses.
So a GET statement can be as simple as:
dynamic google = new DynamicRestClient("https://www.googleapis.com/");
dynamic bucket = await google.storage.v1.b("uspto-pair").get();
Console.WriteLine(bucket.location);
Or if you insist on static DTO types, a type argument can be supplied (deserialization uses Json.Net so all its rules and patterns apply):
dynamic google = new DynamicRestClient("https://www.googleapis.com/");
Bucket bucket = await google.storage.v1.b("uspto-pair").get(typeof(Bucket));
Console.WriteLine(bucket.location);
Supports the GET, POST, PUT, PATCH and DELETE verbs.
Tested on dotnetcore on Linux.