Syncromatics.Clients.WaySine
0.0.10-pr-1-feature-initial-commit
See the version list below for details.
dotnet add package Syncromatics.Clients.WaySine --version 0.0.10-pr-1-feature-initial-commit
NuGet\Install-Package Syncromatics.Clients.WaySine -Version 0.0.10-pr-1-feature-initial-commit
<PackageReference Include="Syncromatics.Clients.WaySine" Version="0.0.10-pr-1-feature-initial-commit" />
paket add Syncromatics.Clients.WaySine --version 0.0.10-pr-1-feature-initial-commit
#r "nuget: Syncromatics.Clients.WaySine, 0.0.10-pr-1-feature-initial-commit"
// Install Syncromatics.Clients.WaySine as a Cake Addin #addin nuget:?package=Syncromatics.Clients.WaySine&version=0.0.10-pr-1-feature-initial-commit&prerelease // Install Syncromatics.Clients.WaySine as a Cake Tool #tool nuget:?package=Syncromatics.Clients.WaySine&version=0.0.10-pr-1-feature-initial-commit&prerelease
Syncromatics.Clients.WaySine
A .NET library to interact with the WaySine WayManager API to query for sign status updates.
Quickstart
Add the Syncromatics.Clients.WaySine
package to your project:
dotnet add package Syncromatics.Clients.WaySine
Then, create a ClientSettings
object to specify your server's root URL and use it to initialize a
WayManagerClient
.
using Syncromatics.Client.WaySine;
var clientSettings = new ClientSettings(serverRootUrl: "http://example.com/");
IWayManagerClient client = new WayManagerClient(clientSettings);
// to get information about every sign available:
var allSigns = await client.GetAllSignsAsync();
// to get information about a particular sign:
const int signId = 42;
var onlyOneSign = await client.GetSignAsync(signId);
Building
This library is built using Cake.
Build and test on Windows
build.ps1 -Experimental
Build and test on Linux
./build.sh
Code of Conduct
We are committed to fostering an open and welcoming environment. Please read our code of conduct before participating in or contributing to this project.
Contributing
We welcome contributions and collaboration on this project. Please read our contributor's guide to understand how best to work with us.
License and Authors
This software is made available by Syncromatics Engineering under the MIT license.
Product | Versions 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. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- RestEase (>= 1.4.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.