Silverlight - 基于 REST 的服务的缓存
我有一个与 WCF 服务交互的 Silverlight 应用程序。该服务使用基于 REST 的格式。在我的应用程序中,我使用 WebRequest 对象访问此服务。我正在拨打电话,如下所示:
WebRequest request = HttpWebRequest.Create(serviceUrl);
request.BeginGetResponse(new AsyncCallback(Operation_Completed), request);
我注意到正在拨打后续电话。这不是我想要的。我不想缓存任何内容。我该怎么做?
I have a Silverlight application that is interacting with a WCF service. This service uses a RESt-based format. In my application, I am hitting this service with a WebRequest object. I'm making my call as follows:
WebRequest request = HttpWebRequest.Create(serviceUrl);
request.BeginGetResponse(new AsyncCallback(Operation_Completed), request);
I've noticed that subsequent calls are being called. This is NOT what I want. I do not want anything cached. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 CachePolicy.Level 属性。它使您可以对缓存行为进行细粒度控制。
Have a look at the CachePolicy.Level property. It gives you fine-grained control over caching behavior.