ModulePage.DisplayErrorMessage メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
エラー メッセージが表示されたモーダル ダイアログ ボックスを表示します。
オーバーロード
DisplayErrorMessage(Exception, ResourceManager) |
指定した例外とリソース マネージャーに基づいて、エラー メッセージが表示されたモーダル ダイアログ ボックスを表示します。 |
DisplayErrorMessage(String, String) |
指定したエラー テキストとエラー メッセージに基づいて、エラー メッセージを含むモーダル ダイアログ ボックスを表示します。 |
DisplayErrorMessage(Exception, ResourceManager, String) |
指定した例外、リソース マネージャー、キャプションに基づいて、エラー メッセージが表示されたモーダル ダイアログ ボックスを表示します。 |
DisplayErrorMessage(String, String, String) |
指定したエラー テキスト、エラー メッセージ、キャプションに基づいて、エラー メッセージを含むモーダル ダイアログ ボックスを表示します。 |
DisplayErrorMessage(Exception, ResourceManager)
指定した例外とリソース マネージャーに基づいて、エラー メッセージが表示されたモーダル ダイアログ ボックスを表示します。
protected:
void DisplayErrorMessage(Exception ^ ex, System::Resources::ResourceManager ^ resourceManager);
protected void DisplayErrorMessage (Exception ex, System.Resources.ResourceManager resourceManager);
member this.DisplayErrorMessage : Exception * System.Resources.ResourceManager -> unit
パラメーター
- resourceManager
- ResourceManager
ResourceManagerページに関連付けられている オブジェクト。
例
次の例では、エラー メッセージを表示します。
DisplayErrorMessage(string.Empty,
"My Demo Error Message");
注釈
注意事項
デバッガーからInetMgr.exeが起動された場合、 DisplayErrorMessage メソッドは"スレッド間操作が無効: 作成されたスレッド以外のスレッドからアクセスされた制御" というメッセージを含む をスロー System.InvalidOperationException します。
ダイアログ ボックスのキャプションは、 title
コンストラクターの Microsoft.Web.Management.Client.ModulePageInfo.ModulePageInfo パラメーターです。
適用対象
DisplayErrorMessage(String, String)
指定したエラー テキストとエラー メッセージに基づいて、エラー メッセージを含むモーダル ダイアログ ボックスを表示します。
protected:
void DisplayErrorMessage(System::String ^ errorText, System::String ^ errorMessage);
protected void DisplayErrorMessage (string errorText, string errorMessage);
member this.DisplayErrorMessage : string * string -> unit
Protected Sub DisplayErrorMessage (errorText As String, errorMessage As String)
パラメーター
- errorText
- String
表示されるメッセージ。
- errorMessage
- String
が null
または 空の場合errorText
に表示されるエラー メッセージ。
例
次の例では、エラー メッセージを表示します。
DisplayErrorMessage(string.Empty,
"My Demo Error Message");
注釈
ダイアログ ボックスのキャプションは、 title
コンストラクターの Microsoft.Web.Management.Client.ModulePageInfo.ModulePageInfo パラメーターです。
適用対象
DisplayErrorMessage(Exception, ResourceManager, String)
指定した例外、リソース マネージャー、キャプションに基づいて、エラー メッセージが表示されたモーダル ダイアログ ボックスを表示します。
protected:
void DisplayErrorMessage(Exception ^ ex, System::Resources::ResourceManager ^ resourceManager, System::String ^ caption);
protected void DisplayErrorMessage (Exception ex, System.Resources.ResourceManager resourceManager, string caption);
member this.DisplayErrorMessage : Exception * System.Resources.ResourceManager * string -> unit
パラメーター
- resourceManager
- ResourceManager
ResourceManagerオブジェクトに関連付ModulePageけられている オブジェクト。
- caption
- String
ダイアログ ボックスのタイトル バーに表示する文字列。
例
次の例では、エラー メッセージを表示します。
try {
Cursor.Current = Cursors.WaitCursor;
getData();
} catch (WebManagementServiceException wmse) {
this.DisplayErrorMessage(wmse, _myRM,
"My Dialog title/caption string wmse");
} catch (Exception ex) {
WebManagementServiceException wmse =
new WebManagementServiceException(
"nameErr", "Not Displayed", ex
);
this.DisplayErrorMessage(wmse, _myRM);
} finally {
Cursor.Current = Cursors.Default;
}
注釈
オーバーロードはDisplayErrorMessage(String, String)、 および errorMessage
パラメーターをex
抽出するオブジェクトとしてMicrosoft.Web.Management.Server.WebManagementServiceException例外をerrorText
キャストしようとします。 例外を にMicrosoft.Web.Management.Server.WebManagementServiceExceptionerrorMessage
キャストできない場合、 は例外の System.Exception.Message プロパティに設定され、errorText
汎用エラー メッセージに設定されます。
適用対象
DisplayErrorMessage(String, String, String)
指定したエラー テキスト、エラー メッセージ、キャプションに基づいて、エラー メッセージを含むモーダル ダイアログ ボックスを表示します。
protected:
void DisplayErrorMessage(System::String ^ errorText, System::String ^ errorMessage, System::String ^ caption);
protected void DisplayErrorMessage (string errorText, string errorMessage, string caption);
member this.DisplayErrorMessage : string * string * string -> unit
Protected Sub DisplayErrorMessage (errorText As String, errorMessage As String, caption As String)
パラメーター
- errorText
- String
表示するエラー テキスト。
- errorMessage
- String
が null
または 空の場合errorText
に表示されるエラー メッセージ。
- caption
- String
ダイアログ ボックスのタイトル バーに表示する文字列。
例
次の例では、エラー メッセージを表示します。
this.DisplayErrorMessage("My errorText", "This Does Not Disp",
"My Caption/Title ");
this.DisplayErrorMessage("", "My Error Message Now Displayed",
"My Caption/Title ");
注釈
パラメーターはerrorMessage
、 が または 空の場合null
errorText
にのみ表示されます。