This is a list of addresses returned
var ips = System.Net.Dns.GetHostEntry("microsoft.com").AddressList; foreach (var ip in ips) Console.WriteLine(ip);
And these are A records extracted from the query network-tools.com, DNS.
Answer records microsoft.com A 64.4.11.37 microsoft.com A 65.55.58.201
So, I would say that he is pulling A.
source share