Info: The library currently targets LTS .Net Core and .Net Standard platforms
using var client = new CloudFlareClient("[email protected]", "globalApiKeyFromCF")
var zones = await client.GetZonesAsync();
foreach (var zone in zones.Result)
{
var dnsRecords = await client.GetDnsRecordsAsync(zone.Id);
foreach (var dnsRecord in dnsRecords.Result)
{
Console.WriteLine(dnsRecord.Name);
}
Console.WriteLine(zone.Name);
}
Check the implemented functionality wiki page.