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 実際には現在の階層レベルでそれらを削除します。