An open API service indexing awesome lists of open source software.

https://github.com/jericho/unfuddle.restclient

.NET wrapper for the Unfuddle STACK API
https://github.com/jericho/unfuddle.restclient

Last synced: about 1 year ago
JSON representation

.NET wrapper for the Unfuddle STACK API

Awesome Lists containing this project

README

          

# Unfuddle.RestClient

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](http://jericho.mit-license.org/)
[![Build status](https://ci.appveyor.com/api/projects/status/m8lsx7snrc5jdrdi?svg=true)](https://ci.appveyor.com/project/Jericho/unfuddle-restclient)
[![Coverage Status](https://coveralls.io/repos/Jericho/Unfuddle.RestClient/badge.svg)](https://coveralls.io/r/Jericho/Unfuddle.RestClient)

## About

Unfuddle.RestClient is a C# client for the Unfuddle service through its RESTful API.

## Contact

You can contact me on Twitter [@NorthernNomad](https://twitter.com/northernnomad).

## Nuget

Unfuddle.RestAPI is available as a Nuget package.

[![NuGet Version](http://img.shields.io/nuget/v/Unfuddle.RestClient.svg)](https://www.nuget.org/packages/Unfuddle.RestClient/)
[![NuGet Downloads](http://img.shields.io/nuget/dt/Unfuddle.RestClient.svg)](https://www.nuget.org/packages/Unfuddle.RestClient/)

## Release Notes

+ **1.0.0**
- Initial release

## Installation

The easiest way to include Unfuddle.RestClient in your C# project is by grabing the nuget package:

```
PM> Install-Package Unfuddle.RestClient
```

Once you have the Unfuddle.RestClient library properly referenced in your project, add the following namespace:

```csharp
using Unfuddle.RestClient;
```

## Usage