redrails.devRantDotNet
1.0.1
See the version list below for details.
dotnet add package redrails.devRantDotNet --version 1.0.1
NuGet\Install-Package redrails.devRantDotNet -Version 1.0.1
<PackageReference Include="redrails.devRantDotNet" Version="1.0.1" />
paket add redrails.devRantDotNet --version 1.0.1
#r "nuget: redrails.devRantDotNet, 1.0.1"
// Install redrails.devRantDotNet as a Cake Addin #addin nuget:?package=redrails.devRantDotNet&version=1.0.1 // Install redrails.devRantDotNet as a Cake Tool #tool nuget:?package=redrails.devRantDotNet&version=1.0.1
Unofficial C# Wrapper for the devRant public API.
devRantDotNet
This is a library written in C#.NET for access to the devRant API. It aims to provide serialization on the components received so you can easily make use of the library to build applications and other code.
Prerequisites
- .NET Framework 4+
Installation
The easiest way to install devRantDotNet is using nuget, run the following command in the Package Manager Console
PM> Install-Package redrails.devRantDotNet
If you want to run from source then you can clone this repository and add it as a reference in your project.
Getting started
using devRantDotNet;
namespace MyProject
{
class MyProgram
{
public static void Main(string[] args)
{
using(var dr = new devRant())
{
Console.WriteLine(dr.GetUserIdAsync("px06").Result);
Console.WriteLine(dr.GetRantsAsync().Result);
...
}
}
}
}
Most methods are available in this library with some ongoing work on improving it. All methods are Async.
Usage and Documentation
Please see the wiki: https://github.com/redrails/devRantDotNet/wiki/Documentation
Contributing
If you would like to contribute then please submit pull-requests.
Licensing
Feel free to use the library as it is open-source but please do give credit when using it.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 10.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.