CustomErrorCollection.Set(CustomError) Метод

Определение

Добавляет указанный параметр CustomError в коллекцию.

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)

Параметры

customError
CustomError

Параметр CustomError для добавления в коллекцию.

Примеры

В следующем примере кода показано, как задать указанный CustomError объект. Ознакомьтесь с примером кода в CustomErrorCollection разделе класса, чтобы узнать, как получить коллекцию.

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

Комментарии

Эта указанная ошибка заменяет текущий элемент ошибки конфигурации.

Применяется к