Dart
Dart
DNS Query AAAA Records
See more DNS Examples
Shows how to perform a DNS query to retrieve AAAA 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('AAAA', 'x.com', json);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print(json.emit());
// Sample response.
// Parsing code below..
// {
// "answer": {
// "aaaa": [
// {
// "name": "x.com",
// "ttl": 229,
// "ipv6": "2606:4700:4400::ac40:96f2"
// },
// {
// "name": "x.com",
// "ttl": 229,
// "ipv6": "2606:4700:4400::6812:250e"
// }
// ]
// }
// }
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var name = '';
var ttl = 0;
var ipv6 = '';
var i = 0;
final countI = json.sizeOfArray('answer.aaaa');
while (i < countI) {
json.i = i;
name = json.stringOf('answer.aaaa[i].name');
ttl = json.intOf('answer.aaaa[i].ttl');
ipv6 = json.stringOf('answer.aaaa[i].ipv6');
i++;
}
}