Поделиться через


ProcessModelSection.ServerErrorMessageFile Свойство

Определение

Возвращает или задает значение, указывающее файл, содержимое которого должно использоваться при возникновении неустранимой ошибки.

public:
 property System::String ^ ServerErrorMessageFile { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("serverErrorMessageFile", DefaultValue="")]
public string ServerErrorMessageFile { get; set; }
[<System.Configuration.ConfigurationProperty("serverErrorMessageFile", DefaultValue="")>]
member this.ServerErrorMessageFile : string with get, set
Public Property ServerErrorMessageFile As String

Значение свойства

Путь файла, используемого при возникновении неустранимой ошибки.

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство ServerErrorMessageFile.


// Get the current ServerErrorMessageFile property value.
string srvErrMsgFile = 
processModelSection.ServerErrorMessageFile;

// Set the ServerErrorMessageFile property to
// "custommessages.log".
processModelSection.ServerErrorMessageFile = 
    "custommessages.log";
' Get the current ServerErrorMessageFile property value.
   Dim srvErrMsgFile As String = _
   processModelSection.ServerErrorMessageFile

' Set the ServerErrorMessageFile property to
' "custommessages.log".
   processModelSection.ServerErrorMessageFile = _
   "custommessages.log"

Комментарии

Файл, содержимое которого используется вместо сообщения о недоступности сервера по умолчанию.

Расположение файла может быть относительным или абсолютным путем к файлу.

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