Compartir a través de


CustomErrorCollection.Add(CustomError) Método

Definición

Agrega un objeto CustomError a la colección.

public:
 void Add(System::Web::Configuration::CustomError ^ customError);
public void Add (System.Web.Configuration.CustomError customError);
member this.Add : System.Web.Configuration.CustomError -> unit
Public Sub Add (customError As CustomError)

Parámetros

customError
CustomError

El objeto CustomError que se va a agregar ya existe en la colección o la colección es de solo lectura.

Ejemplos

En el ejemplo de código siguiente se agrega un CustomError objeto a la CustomErrorCollection colección.

Consulte el ejemplo de código del tema de clase CustomErrorCollection para obtener información sobre cómo obtener la colección.

// Using the Add method.
CustomError newCustomError2 =
new CustomError(404, "customerror404.htm");

// Update the configuration file.
if (!customErrorsSection.SectionInformation.IsLocked)
{
    // Add the new custom error to the collection.
    customErrorsCollection.Add(newCustomError2);
    configuration.Save();
}
' Using the Add method.
  Dim newCustomError2 _
  As New CustomError(404, "customerror404.htm")

' Update the configuration file.
If Not customErrorsSection.SectionInformation.IsLocked Then
   ' Add the new custom error to the collection.
   customErrorsCollection.Add(newCustomError2)
   configuration.Save()
End If

Comentarios

Antes de agregar un error personalizado a la colección, debe crear un CustomError objeto de error e inicializar las Redirect propiedades y StatusCode .

Se aplica a