7 references to AAAA
Microsoft.Extensions.ServiceDiscovery.Dns (4)
Resolver\DnsResolver.cs (4)
98
if (additional.Name.Equals(target) && (additional.Type == QueryType.A || additional.Type == QueryType.
AAAA
))
173
var queryType = addressFamily == AddressFamily.InterNetwork ? QueryType.A : QueryType.
AAAA
;
330
Debug.Assert(record.Type is QueryType.A or QueryType.
AAAA
, "Only CNAME records should be processed here.");
334
record.Type == QueryType.
AAAA
&& record.Data.Length != IPv6Length)
Microsoft.Extensions.ServiceDiscovery.Dns.Tests (3)
Resolver\LoopbackDnsServer.cs (1)
236
QueryType type = address.AddressFamily == AddressFamily.InterNetwork ? QueryType.A : QueryType.
AAAA
;
Resolver\ResolveAddressesTests.cs (1)
244
[InlineData("example.com", (int)QueryType.
AAAA
, (int)QueryClass.Internet)]
Resolver\TcpFailoverTests.cs (1)
108
[InlineData("example.com", (int)QueryType.
AAAA
, (int)QueryClass.Internet)]