DNS刷新超时与单声道
本文关键字:声道 单声道 刷新 超时 DNS | 更新日期: 2023-09-27 18:06:03
尽管当前Mono
项目的ServicePointManager
类在其接口中启用了DnsRefreshTimeout
属性。相关属性未实现
ServicePointManager.DnsRefreshTimeout = 10*60*1000; // 10 minutes
当运行我的应用程序时,我在运行时得到下一个异常:
The requested feature is not implemented. (System.NotImplementedException) at System.Net.ServicePointManager.set_DnsRefreshTimeout (Int32 value) [0x00000] in /Developer/MonoTouch/Source/mono/mcs/class/System/System.Net/ServicePointManager.cs:213
下面是实际的实现:
[MonoTODO]
public static int DnsRefreshTimeout
{
get {
throw GetMustImplement ();
}
set {
throw GetMustImplement ();
}
}
我认为我没有足够的知识来实现这个功能,因为我从上个月开始开发c# Mono应用程序。
所以,有人知道一个解决这个问题的方法吗?或者我应该为Mono项目团队请求一个功能实现吗?
我正在开发一个Xamarin跨平台应用程序,我真的需要缓存我的DNS解析至少10分钟。
注。https://bugzilla.xamarin.com/show_bug.cgi?id=11424
我没有修复,但我有一个变通办法:
var request = (HttpWebRequest)WebRequest.Create("http://www.google.com/");
// Disable KeepAlive so we don't reuse connections
request.KeepAlive = false;
// Clear out the cached host entry
var hostField = typeof(ServicePoint).GetField("host", BindingFlags.NonPublic | BindingFlags.Instance);
var hostFieldLock = typeof(ServicePoint).GetField("hostE", BindingFlags.NonPublic | BindingFlags.Instance);
var hostLock = hostFieldLock.GetValue(request.ServicePoint);
lock (hostLock)
hostField.SetValue(request.ServicePoint, null);
这是基于当前版本的ServicePoint的mono,你可以在这里查看到2015年3月