This is the official .NET SDK for UKFast DDoSX
You should refer to the Getting Started section of the API documentation before proceeding below
To get started, we'll first instantiate an instance of IUKFastDDoSXClient
:
IUKFastDDoSXClient client = new UKFastDDoSXClient(new ClientConnection("myapikey"));
Next, we'll obtain an instance of IDomainOperations to perform operations on DDoSX Domains:
var domainOps = client.DomainOperations();
Finally, we'll retrieve all DDoSX domains using the instance of IDomainOperations
:
IList<Domain> domains = await domainOps.GetDomainsAsync();
All operations available via the SDK are exposed via the client (IUKFastDDoSXClient
)