Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.07 KB

File metadata and controls

29 lines (22 loc) · 1.07 KB

Comet .NET SDK

@CometBackup on Twitter MIT License Nuget

This project is a SDK and base client for Comet Server API using .NET, coded in C#.

Simple Usage Example

using CometBackup.CometAPI.SDK;

public class Test {
    public static void Main(string[] args) {
        using (var client = new CometAPI("http://127.0.0.1:8060", "admin", "admin")) {
            var users = client.AdminListUsers();
            foreach (var user in users) {
                Console.WriteLine(user);
            }
        }
    }
}

Getting Help

Bug reports and pull requests are welcome on GitHub at https://github.com/CometBackup/comet-dotnet-sdk.

You may also submit issues via the ticket system at cometbackup.com.