Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 880 Bytes

Readme.md

File metadata and controls

29 lines (24 loc) · 880 Bytes

DasKeyboard QClient.NET

Build status NuGet

QClient.NET is a lightweight and easy to use .Net client for the DasKeyboard Q API

Usage

Create a Local Client

Note: Limited endpoints available on local client

var client = new LocalQClient();

You can also optionally specify a custom hostname and/or custom port number:

var client = new LocalQClient("myhostname", 27302);

Create an Authenticated Cloud Client

All authentication and token handling is automatic

var client = new CloudQClient("CLIENTID", "SECRET");

Create an UnAuthenticated Cloud Client

Note: Limited endpoints available when not authenticated

var client = new CloudQClient();