Compartilhar via


CustomErrorCollection.Set(CustomError) Método

Definição

Adiciona o CustomError especificado à coleção.

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

Parâmetros

customError
CustomError

O CustomError a adicionar à coleção.

Exemplos

O exemplo de código a seguir mostra como definir o objeto especificado CustomError . Consulte o exemplo de código no tópico de CustomErrorCollection classe para saber como obter a coleção.

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

// Update the configuration file.
if (!customErrorsSection.SectionInformation.IsLocked)
{
    // Add the new custom error to the collection.
    customErrorsCollection.Set(newCustomError);
    configuration.Save();
}
' Using the Set method.
  Dim newCustomError _
  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.Set(newCustomError)
   configuration.Save()
End If

Comentários

Esse erro especificado substitui o elemento de erro de configuração atual.

Aplica-se a