gpt4 book ai didi

c# - 如何清除 Windows Mobile 8 的 URL 缓存

转载 作者:行者123 更新时间:2023-11-30 12:45:57 25 4
gpt4 key购买 nike

您好,我在我的 Windows 8 移动应用程序中遇到问题。我正在使用 WebClient 向服务器发送请求以提取详细信息。我在应用程序中提供了按需刷新功能,用户可以在其中随时刷新详细信息wants.The problem I face is the new details are not being updated.I have tried some of the solutions mentioned by adding ?nocache at the end of the url.But this solution will not help me because im actually passing values through this url to 想要解决这个问题服务器,在服务器端处理这些值后,它们会将响应重定向到“http://mysitezz.com/myfolder/files/details546546546546.xml”。所以如果我追加 ?nocache 我会得到错误响应。我也试过在 Webclient 中添加 header ,但也不起作用

     WebClient wctrans = new WebClient();

// wctrans.Headers[HttpRequestHeader.LastModifiedSince] = DateTime.UtcNow.ToString();
wctrans.DownloadStringCompleted += new DownloadStringCompletedEventHandler(UpdateLocalDB);
wctrans.DownloadStringAsync(new Uri(calculatedURL), nextItem.AccountNo);

有什么办法可以解决这个问题吗?我是 Windows Phone 应用程序开发的新手。提前致谢

最佳答案

根据这篇文章C# WebClient disable cache , 使用 HttpRequest 对象而不是 WebClient

关于c# - 如何清除 Windows Mobile 8 的 URL 缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22095832/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com