Partager via


CustomErrorsSection.Errors Propriété

Définition

Obtient la collection d'objets CustomError.

public:
 property System::Web::Configuration::CustomErrorCollection ^ Errors { System::Web::Configuration::CustomErrorCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.CustomErrorCollection Errors { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.Errors : System.Web.Configuration.CustomErrorCollection
Public ReadOnly Property Errors As CustomErrorCollection

Valeur de propriété

CustomErrorCollection contenant les erreurs personnalisées.

Attributs

Exemples

L’exemple de code suivant montre comment utiliser la Errors collection.


// Get the Web application configuration.
System.Configuration.Configuration configuration = 
    WebConfigurationManager.OpenWebConfiguration(
    "/aspnetTest");

// Get the section.
CustomErrorsSection customErrorsSection =
  (CustomErrorsSection)configuration.GetSection(
  "system.web/customErrors");

// Get the collection
CustomErrorCollection customErrorsCollection = 
    customErrorsSection.Errors;
      ' Get the Web application configuration.
        Dim configuration _
        As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
        "/aspnetTest")
      
      ' Get the section.
        Dim customErrorsSection _
        As CustomErrorsSection = _
        CType(configuration.GetSection( _
  "system.web/customErrors"), _
  CustomErrorsSection)
      
      ' Get the collection
        Dim customErrorsCollection _
        As CustomErrorCollection = customErrorsSection.Errors

Remarques

Chaque erreur est associée à une condition d’erreur personnalisée et spécifie une page d’erreur personnalisée.

S’applique à