Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.73 KB

README.md

File metadata and controls

60 lines (39 loc) · 1.73 KB

Build status NuGet

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.