如何访问.NET 2中的system.webserver web.config节点
是否有任何 .NET API 可以读取/更新 web.config 中的 system.webServer 节点?我知道我可以通过将 web.config 文件读取/解析为 xml 来做到这一点,但这很尴尬。
要读取/更新 .NET 2 中的 system.web 节点,我可以使用:
HttpModulesSection httpModulesSection = (HttpModulesSection)configuration.GetSection("system.web/httpModules");
但是是否有任何基于 API 的方法来使用 .NET 2 访问 system.web/modules?
我必须引用 system.web.configuration 的 .NET 2 版本,因为我事先不知道我的 Web 应用程序是否将在具有 .NET 2 或 3.5 的服务器上运行。因此它仅限于 .NET 2 API 调用。
谢谢
Are there any .NET APis that can read/update the system.webServer node in web.config? I know I can do it via reading/parsing the web.config file as xml but that's awkward.
To read/update the system.web node in .NET 2 I can use:
HttpModulesSection httpModulesSection = (HttpModulesSection)configuration.GetSection("system.web/httpModules");
But is there any API based way of accessing system.web/modules using .NET 2?
I have to reference the .NET 2 version of system.web.configuration because I don't know in advance if my web app will be run on a server with .NET 2 or 3.5. So it is limited to .NET 2 API calls only.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
Microsoft.Web.Administration.dll
程序集。您可以查看此博文。You need to use the
Microsoft.Web.Administration.dll
assembly. You can check this blog post.