Sdílet prostřednictvím


CustomErrorCollection.Set(CustomError) Metoda

Definice

Přidá zadané CustomError do kolekce.

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

Přidání CustomError do kolekce

Příklady

Následující příklad kódu ukazuje, jak nastavit zadaný CustomError objekt. V příkladu kódu v tématu předmětu CustomErrorCollection se dozvíte, jak získat kolekci.

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

Poznámky

Tato zadaná chyba nahrazuje aktuální prvek chyby konfigurace.

Platí pro