CustomErrorCollection.Set Method (CustomError)

 
Use BaseTrue

Adds the specified CustomError to the collection.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

Public Sub Set (
	customError As CustomError
)

Parameters

customError
Type: System.Web.Configuration.CustomError

The CustomError to add to the collection.

This specified error replaces the current configuration error element.

The following code example shows how to set the specified CustomError object. Refer to the code example in the CustomErrorCollection class topic to learn how to get the collection.

' 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

.NET Framework
Available since 2.0
Return to top
Show: