CustomErrorsSection.Errors Property

Definition

Gets the collection of the CustomError objects.

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

Property Value

A CustomErrorCollection that contains the custom errors.

Attributes

Examples

The following code example shows how to use the 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

Remarks

Each error is associated with a custom error condition and specifies a custom error page.

Applies to