CustomErrorCollection.Remove(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除 CustomError 对象。
public:
void Remove(System::String ^ statusCode);
public void Remove (string statusCode);
member this.Remove : string -> unit
Public Sub Remove (statusCode As String)
参数
- statusCode
- String
与自定义错误关联的 HTTP 状态代码。
示例
下面的代码示例演示如何删除 CustomError 具有指定状态代码的对象。 请参阅类主题中的 CustomErrorCollection 代码示例,了解如何获取集合。
// Using the Remove method.
if (!customErrorsSection.SectionInformation.IsLocked)
{
// Remove the error with statuscode 404.
customErrorsCollection.Remove("404");
configuration.Save();
}
' Using the Remove method.
If Not customErrorsSection.SectionInformation.IsLocked Then
' Remove the error with statuscode 404.
customErrorsCollection.Remove("404")
configuration.Save()
End If
注解
该方法 Remove 将 remove
元素 customErrors
插入到当前层次结构级别的配置文件节中。 这会删除对层次结构中较高级别父配置文件中定义的元素的引用 add
。
备注
add
元素不会从父配置文件中删除。 该 remove
元素仅停用它们。 但是,该方法 Remove 实际上在当前层次结构级别删除它们。