ProcessModelSection.ServerErrorMessageFile 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示發生嚴重錯誤時必須使用其內容的檔案。
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"
備註
使用其內容的檔案,而不是預設伺服器無法使用的訊息。
檔案位置可以是相對或絕對檔案路徑。