共用方式為


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

屬性值

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"

備註

使用其內容的檔案,而不是預設伺服器無法使用的訊息。

檔案位置可以是相對或絕對檔案路徑。

適用於