从 web.config 设置 WebMethod 的 CacheDuration?

发布于 2024-11-08 20:48:51 字数 175 浏览 0 评论 0 原文

对于 ASP.Net Web 服务,我希望能够在 web.config 中为所有 Web 方法或单个 Web 方法设置 CacheDuration,以便无需重新编译解决方案即可对其进行调整。

[WebMethod(CacheDuration=60)]

能做到吗?如何?

For an ASP.Net Webservice, I would like to be able to set the CacheDuration for either all webmethods or indivdual webmethods in web.config, so it can be adjusted without recompiling the solution.

[WebMethod(CacheDuration=60)]

Can it be done? How?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把梦留给海 2024-11-15 20:48:51

这似乎不可能。

It does not seem to be possible.

违心° 2024-11-15 20:48:51

VB

Public Class Service1
    Inherits System.Web.Services.WebService
    <System.Web.Services.WebMethod(CacheDuration:=60)> _
    Public Function ConvertTemperature(ByVal dFahrenheit As Double) _
                                       As Double
        ConvertTemperature = ((dFahrenheit - 32) * 5) / 9
    End Function
End Class

C#

public class Service1 : System.Web.Services.WebService
{ 
    [System.Web.Services.WebMethod(CacheDuration=60)]
    public double ConvertTemperature(double dFahrenheit)
    {
       return ((dFahrenheit - 32) * 5) / 9;
    }
}

来源:http://msdn.microsoft.com/en-us/library/byxd99hx%28v=vs.80%29.aspx

VB

Public Class Service1
    Inherits System.Web.Services.WebService
    <System.Web.Services.WebMethod(CacheDuration:=60)> _
    Public Function ConvertTemperature(ByVal dFahrenheit As Double) _
                                       As Double
        ConvertTemperature = ((dFahrenheit - 32) * 5) / 9
    End Function
End Class

C#

public class Service1 : System.Web.Services.WebService
{ 
    [System.Web.Services.WebMethod(CacheDuration=60)]
    public double ConvertTemperature(double dFahrenheit)
    {
       return ((dFahrenheit - 32) * 5) / 9;
    }
}

Source : http://msdn.microsoft.com/en-us/library/byxd99hx%28v=vs.80%29.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文