Aracılığıyla paylaş


CustomErrorsSection.Mode Özellik

Tanım

Hata görüntüleme kalıcılığını alır veya ayarlar.

public:
 property System::Web::Configuration::CustomErrorsMode Mode { System::Web::Configuration::CustomErrorsMode get(); void set(System::Web::Configuration::CustomErrorsMode value); };
[System.Configuration.ConfigurationProperty("mode", DefaultValue=System.Web.Configuration.CustomErrorsMode.RemoteOnly)]
public System.Web.Configuration.CustomErrorsMode Mode { get; set; }
[<System.Configuration.ConfigurationProperty("mode", DefaultValue=System.Web.Configuration.CustomErrorsMode.RemoteOnly)>]
member this.Mode : System.Web.Configuration.CustomErrorsMode with get, set
Public Property Mode As CustomErrorsMode

Özellik Değeri

CustomErrorsMode

Değerlerden CustomErrorsMode biri. Varsayılan değer: RemoteOnly.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin Mode nasıl kullanılacağını gösterir.

Bölümü nasıl edineceğinizi öğrenmek için sınıf konusunun kod örneğine CustomErrorsSection bakın.

// Get the current Mode.
CustomErrorsMode currentMode = 
    customErrorsSection.Mode;

// Set the current Mode.
customErrorsSection.Mode = 
    CustomErrorsMode.RemoteOnly;
' Get the current Mode.
  Dim currentMode _
  As CustomErrorsMode = customErrorsSection.Mode

' Set the current Mode.
  customErrorsSection.Mode = _
  CustomErrorsMode.RemoteOnly

Açıklamalar

Özel hataların etkin, devre dışı veya yalnızca uzak istemcilere gösterilip gösterilmediğini belirtir.

Şunlara uygulanır