2

尽管当前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请求的 Ps 功能

4

1 回答 1

2

我没有修复,但我有一个解决方法:

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 当前版本,您可以在此处查看截至 2015 年 3 月的版本。

于 2015-03-06T22:38:43.853 回答