Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jincod/yousign-dotnet

YooSign .NET Client based on https://dev.yousign.com example
https://github.com/jincod/yousign-dotnet

Last synced: about 5 hours ago
JSON representation

YooSign .NET Client based on https://dev.yousign.com example

Awesome Lists containing this project

README

        

# YouSign .NET Client

## Usage

```csharp
services
.AddHttpClient(client =>
{
client.BaseAddress = new Uri(appSettings.YouSignSettings.Url);
client.DefaultRequestHeaders.Add("Authorization", $"Bearer {appSettings.YouSignSettings.ApiKey}");
});
```