|
| | ApiClient () |
| | Initializes a new instance of the ApiClient, defaulting to the global configurations' base url. More...
|
| |
| | ApiClient (String basePath) |
| | Initializes a new instance of the ApiClient More...
|
| |
| Task< ApiResponse< T > > | GetAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP GET request (async). More...
|
| |
| Task< ApiResponse< T > > | PostAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP POST request (async). More...
|
| |
| Task< ApiResponse< T > > | PutAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP PUT request (async). More...
|
| |
| Task< ApiResponse< T > > | DeleteAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP DELETE request (async). More...
|
| |
| Task< ApiResponse< T > > | HeadAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP HEAD request (async). More...
|
| |
| Task< ApiResponse< T > > | OptionsAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP OPTION request (async). More...
|
| |
| Task< ApiResponse< T > > | PatchAsync< T > (string path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Make a HTTP PATCH request (async). More...
|
| |
| ApiResponse< T > | Get< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP GET request (synchronous). More...
|
| |
| ApiResponse< T > | Post< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP POST request (synchronous). More...
|
| |
| ApiResponse< T > | Put< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP PUT request (synchronous). More...
|
| |
| ApiResponse< T > | Delete< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP DELETE request (synchronous). More...
|
| |
| ApiResponse< T > | Head< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP HEAD request (synchronous). More...
|
| |
| ApiResponse< T > | Options< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP OPTION request (synchronous). More...
|
| |
| ApiResponse< T > | Patch< T > (string path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Make a HTTP PATCH request (synchronous). More...
|
| |
| ApiResponse< T > | Get< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the GET http verb. More...
|
| |
| ApiResponse< T > | Post< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the POST http verb. More...
|
| |
| ApiResponse< T > | Put< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the PUT http verb. More...
|
| |
| ApiResponse< T > | Delete< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the DELETE http verb. More...
|
| |
| ApiResponse< T > | Head< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the HEAD http verb. More...
|
| |
| ApiResponse< T > | Options< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the OPTIONS http verb. More...
|
| |
| ApiResponse< T > | Patch< T > (String path, RequestOptions options, IReadableConfiguration configuration=null) |
| | Executes a blocking call to some path using the PATCH http verb. More...
|
| |
| Task< ApiResponse< T > > | GetAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the GET http verb. More...
|
| |
| Task< ApiResponse< T > > | PostAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the POST http verb. More...
|
| |
| Task< ApiResponse< T > > | PutAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the PUT http verb. More...
|
| |
| Task< ApiResponse< T > > | DeleteAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the DELETE http verb. More...
|
| |
| Task< ApiResponse< T > > | HeadAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the HEAD http verb. More...
|
| |
| Task< ApiResponse< T > > | OptionsAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the OPTIONS http verb. More...
|
| |
| Task< ApiResponse< T > > | PatchAsync< T > (String path, RequestOptions options, IReadableConfiguration configuration=null, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) |
| | Executes a non-blocking call to some path using the PATCH http verb. More...
|
| |
Provides a default implementation of an Api client (both synchronous and asynchronous implementatios), encapsulating general REST accessor use cases.