HttpModuleActionCollection.Clear 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中删除所有 HttpModuleAction 对象。
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
示例
以下示例演示如何清除 HttpModuleAction 集合中包含的模块。
// Clear the collection.
if (!httpModulesSection.SectionInformation.IsLocked)
{
modulesCollection.Clear();
configuration.Save();
}
' Clear the collection.
If Not httpModulesSection.SectionInformation.IsLocked Then
modulesCollection.Clear()
configuration.Save()
End If
注解
此方法将 clear
指令插入配置文件的相应部分,以清除对更高级别配置文件中定义的元素的所有引用。 将删除在当前配置文件的相应节中定义的所有元素。