使用下面的代码验证不同邮件服务器上的DANE记录我有时(接近50%的测试服务器)得到一个" System.AggregateException"内部异常"无法验证响应记录"。
var resolver = new SelfValidatingInternalDnsSecStubResolver();
string mx = "mail2.amedia.nu.";
DnsSecResult<TlsaRecord> result = resolver.ResolveSecure<TlsaRecord>("_25._tcp." + mx, RecordType.Tlsa);
Console.WriteLine(result.ValidationResult.ToString());
我在这里粘贴了前1000个失败的mx服务器进行测试:https://pastebin.com/14kqQT06
知道抛出此异常的原因吗?