Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 603 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 603 Bytes

#Ubuntu.Landscape.Client

The Ubuntu.Landscape.Client .Net library is doing API calls to the Landscape Server. It is written in C#.

###usage

var client = new Ubuntu.Landscape.Client();
client.hostname = "hostname";
client.secretKey = "secret key";
client.accessKey = "access key";
client.ignoreInvalidCerts = true;
client.actionString = "GetAlerts";

var JsonOutput = client.getResult();

For possible action strings please have a look here:

Landscape API’s documentation

Addional contributors are welcome!