共用方式為


CustomErrorCollection.Remove(String) 方法

定義

從集合中移除 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 實際上會在目前的階層層級刪除它們。

適用於