jServiceio 0.1.0
dotnet add package jServiceio --version 0.1.0
NuGet\Install-Package jServiceio -Version 0.1.0
<PackageReference Include="jServiceio" Version="0.1.0" />
paket add jServiceio --version 0.1.0
#r "nuget: jServiceio, 0.1.0"
// Install jServiceio as a Cake Addin #addin nuget:?package=jServiceio&version=0.1.0 // Install jServiceio as a Cake Tool #tool nuget:?package=jServiceio&version=0.1.0
jServiceio
jServiceio is a RESTful APIs client in C# applications.
If you like this project please give a star and a cup of coffee =)
Installation
To install jServiceio, you can use the NuGet package manager in Visual Studio. Simply search for "jServiceio" and click "Install".
Alternatively, you can install jServiceio using the command line:
Install-Package jServiceio
Getting Started
Without using dependency injection:
var apiClient = new jServiceioClient(new jServiceioOptions());
Using dependency injection:
Program.cs
serviceCollection.AddjServiceioClient();
After injecting your service you will be able to get it from service provider
var apiClient = serviceProvider.GetRequiredService<jServiceioClient>();
or injecting in the constructor of your class
public class MyService
{
private readonly jServiceioClient _apiClient;
public NewsService(jServiceioClient apiClient)
{
_apiClient = apiClient;
}
}
Logging and Exception handling
For diagnostic there are DelegatingHandler
-s such as LoggingHandler
and ExceptionHandler
. You can always extend them
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0 | 205 | 4/3/2023 |