次の方法で共有


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"

注釈

既定のサーバー利用不可メッセージの代わりにコンテンツが使用されるファイル。

ファイルの場所には、相対ファイル パスまたは絶対ファイル パスを指定できます。

適用対象