我需要以编程方式在asp.net web.config文件中添加或修改以下部分:
<configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
我可以在XML级别操作文件,但我更喜欢尽可能使用配置API。我在System.Web.Services.Configuration命名空间和System.Web.Services程序集中找到了ProtocolElement和ProtocolElementCollection类,但经过大量的Google搜索后,我找不到任何用法示例。我在configSections元素中定义了system.web.extensions / scripting / webServices sectionGroup - 是否足够,或者我需要在其下添加配置部分?
任何帮助操纵这一点将不胜感激。我们目前正在使用ASP.NET 2.0。
答案 0 :(得分:0)