Compartilhar via


CustomErrorCollection.Add(CustomError) Método

Definição

Adiciona um objeto de CustomError à coleção.

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

O objeto CustomError a ser adicionado já existe na coleção ou a coleção é somente leitura.

Exemplos

O exemplo de código a CustomErrorCollection seguir adiciona um CustomError objeto à coleção.

Consulte o exemplo de código no tópico de CustomErrorCollection classe para saber como obter a coleção.

// 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

Comentários

Antes de adicionar um erro personalizado à coleção, você deve criar um CustomError objeto de erro e inicializar as propriedades e StatusCode as Redirect propriedades.

Aplica-se a