Udostępnij za pośrednictwem


CustomErrorCollection.Set(CustomError) Metoda

Definicja

Dodaje określony CustomError element do kolekcji.

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)

Parametry

customError
CustomError

Element CustomError do dodania do kolekcji.

Przykłady

W poniższym przykładzie kodu pokazano, jak ustawić określony CustomError obiekt. Zapoznaj się z przykładem kodu w temacie klasy, CustomErrorCollection aby dowiedzieć się, jak pobrać kolekcję.

// 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

Uwagi

Ten określony błąd zastępuje bieżący element błędu konfiguracji.

Dotyczy