Dart
Dart
DNS Query NS Records
See more DNS Examples
Shows how to perform a DNS query to retrieve NS records.Note: This example requires Chilkat v9.5.0.96 or later.
Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
final dns = CkDns();
final json = CkJsonObject();
json.emitCompact = false;
try {
dns.query('NS', 'x.com', json);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print(json.emit());
// Sample response.
// Parsing code below..
// {
// "answer": {
// "ns": [
// {
// "name": "x.com",
// "ttl": 86400,
// "domain": "alexia.ns.cloudflare.com"
// },
// {
// "name": "x.com",
// "ttl": 86400,
// "domain": "tosana.ns.cloudflare.com"
// }
// ]
// }
// }
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var name = '';
var ttl = 0;
var domain = '';
var i = 0;
final countI = json.sizeOfArray('answer.ns');
while (i < countI) {
json.i = i;
name = json.stringOf('answer.ns[i].name');
ttl = json.intOf('answer.ns[i].ttl');
domain = json.stringOf('answer.ns[i].domain');
i++;
}
}