CustomErrorCollection.Add(CustomError) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Ajoute un objet CustomError à la collection.
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)
Paramètres
- customError
- CustomError
L'objet CustomError à ajouter existe déjà dans la collection ou la collection est en lecture seule.
Exemples
L’exemple de code suivant ajoute un CustomError objet à la CustomErrorCollection collection.
Reportez-vous à l’exemple de code de la CustomErrorCollection rubrique de classe pour savoir comment obtenir la collection.
// 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
Remarques
Avant d’ajouter une erreur personnalisée à la collection, vous devez créer un CustomError objet d’erreur et initialiser les propriétés et StatusCode les Redirect propriétés.