Jobbr.Client 3.0.5

dotnet add package Jobbr.Client --version 3.0.5
                    
NuGet\Install-Package Jobbr.Client -Version 3.0.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jobbr.Client" Version="3.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jobbr.Client" Version="3.0.5" />
                    
Directory.Packages.props
<PackageReference Include="Jobbr.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Jobbr.Client --version 3.0.5
                    
#r "nuget: Jobbr.Client, 3.0.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Jobbr.Client@3.0.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Jobbr.Client&version=3.0.5
                    
Install as a Cake Addin
#tool nuget:?package=Jobbr.Client&version=3.0.5
                    
Install as a Cake Tool

Jobbr Web API Extension Develop build status

Adds Rest-style api to a Jobbr-Server and and provides a strong typed .NET Client for the Jobbr .NET JobServer. The Jobbr main repository can be found on JobbrIO/jobbr-server.

Master build status NuGet-Stable
Develop build status NuGet Pre-Release

Installation

First of all you'll need a working jobserver by using the usual builder as shown in the demos (jobbrIO/demo).

NuGet

Install the NuGet Jobbr.Server.WebAPI to the project where you host you Jobbr-Server. The extension already comes with a small webserver based on OWIN/Katana. The referenced HttpListenr will be installed by NuGet automatically.

Install-Package Jobbr.Server.WebAPI

Registration

The Library comes with an extension method for the JobbrBuilder. To add the Web API to a Jobbr-Server you need to register it prior start as you see below. Please note that this is not ASP.NET WebAPI when registering it to an OWIN Pipeline, allthough we're using the same principle. (In fact, we're using WebAPI internally 😄 )

using Jobbr.Server.WebAPI;

// ....

// Create a new builder which helps to setup your JobbrServer
var builder = new JobbrBuilder();

// Register the extension
builder.AddWebApi();

// Create a new instance of the JobbrServer
var server = builder.Create();

// Start
server.Start();

Configuration

If you don't specify any value for BackendAddress the server will try to find a free port automatically and binds to all available interfaces. The endpoint is logged and usually shown in the console, but this approach is not suggested in production scenarios, see below:

[WARN]  (Jobbr.Server.WebAPI.Core.WebHost) There was no BackendAdress specified. Falling back to random port, which is not guaranteed to work in production scenarios
....
[INFO]  (Jobbr.Server.JobbrServer) The configuration was validated and seems ok. Final configuration below:
JobbrWebApiConfiguration = [BackendAddress: "http://localhost:1903/api"]

You can override this behavior, by explicitly providing your own URI prefix, for instance http://localhost:8765/api. See example below:

builder.AddWebApi(config => 
{
	config.BaseUrl = "http://localhost:8765/api";
});

Note: Please refer to https://msdn.microsoft.com/en-us/library/system.net.httplistener(v=vs.110).aspx for the supported URI prefixes depending on your operating system and .NET Runtime version.

Rest API Reference

Please note that the API documentation has moved to jobbr.readthedocs.io

Static Typed Client

There is also a static typed client available which you can use to interact with any Jobbr Rest Api. Please see the documentation on jobbr.readthedocs.io for more details

License

This software is licenced under GPLv3. See LICENSE and the related licences of 3rd party libraries below.

Acknowledgements

Jobbr Server is based on the following awesome libraries:

Credits

This extension was built by the following awesome developers:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

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
3.0.5 314 6/13/2025
3.0.4 153 6/3/2025
3.0.3 152 6/3/2025
3.0.2 41,837 1/23/2024
3.0.1 2,671 8/22/2023
3.0.0 3,440 3/20/2023
2.2.0 422 11/15/2022
2.1.2 806 6/18/2021
2.1.0 496 6/17/2021
2.0.1 435 6/17/2021
2.0.0 503 6/16/2021
1.6.1 978 7/5/2019
1.6.0 714 7/5/2019
1.5.0 1,137 10/21/2018
1.4.0 876 10/20/2018
1.3.1 968 10/10/2018
1.3.0 932 10/5/2018
1.2.1 927 9/27/2018
1.1.0 1,254 9/10/2018
1.0.0 2,125 10/9/2017
0.0.30 1,285 12/23/2016
0.0.29 1,445 11/8/2016
0.0.22 1,285 9/23/2016
0.0.21 1,243 9/23/2016
0.0.20 1,246 8/4/2016
0.0.19 1,541 7/7/2015
0.0.18 1,355 7/6/2015
0.0.17 1,334 7/6/2015
0.0.15 1,394 7/3/2015
0.0.13 1,865 6/1/2015
0.0.12 1,411 4/8/2015
0.0.9 1,309 3/19/2015