An open API service indexing awesome lists of open source software.

https://github.com/dexuby/requester

Simple library to make request interactions with endpoints easier.
https://github.com/dexuby/requester

Last synced: 3 months ago
JSON representation

Simple library to make request interactions with endpoints easier.

Awesome Lists containing this project

README

        

# Requester
[![NuGet version](https://badge.fury.io/nu/RequesterLib.svg)](https://badge.fury.io/nu/RequesterLib)

Simple library to make request interactions with endpoints easier.

Example usage:
```c#
var requester = new Requester.Builder().WithDefaultHeader("User-Agent", "Test").Build();
var outputTypeInstance = await requester.PostAsJsonAndGetFromJsonAsync("", inputTypeInstance);
await requester.PostAsJsonAsync("", inputTypeInstance);
var jsonElement = await requester.GetJsonElementAsync("");
```