IUIService.ShowError メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したエラー メッセージをメッセージ ボックスに表示します。
オーバーロード
ShowError(Exception) |
指定した例外および例外に関する情報をメッセージ ボックスに表示します。 |
ShowError(String) |
指定したエラー メッセージをメッセージ ボックスに表示します。 |
ShowError(Exception, String) |
指定した例外および例外に関する情報をメッセージ ボックスに表示します。 |
ShowError(Exception)
ShowError(String)
指定したエラー メッセージをメッセージ ボックスに表示します。
public:
void ShowError(System::String ^ message);
public void ShowError (string message);
abstract member ShowError : string -> unit
Public Sub ShowError (message As String)
パラメーター
- message
- String
表示するエラー メッセージ。
注釈
この方法を使用すると、メッセージ ボックスの表示を開発環境と適切に統合できます。
適用対象
ShowError(Exception, String)
指定した例外および例外に関する情報をメッセージ ボックスに表示します。
public:
void ShowError(Exception ^ ex, System::String ^ message);
public void ShowError (Exception ex, string message);
abstract member ShowError : Exception * string -> unit
Public Sub ShowError (ex As Exception, message As String)
パラメーター
- message
- String
例外に関する情報を提供する、表示対象のメッセージ。
例
次のコード例では、サービスShowErrorのメソッドのインスタンスをIUIService取得して呼び出そうとします。
IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
UIservice->ShowError( gcnew Exception( "This is a message in a test exception, displayed by the IUIService",gcnew ArgumentException( "Test inner exception" ) ) );
IUIService UIservice = (IUIService)this.GetService(
typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )
UIservice.ShowError( new Exception(
"This is a message in a test exception, " +
"displayed by the IUIService",
new ArgumentException("Test inner exception")));
Dim UIservice As IUIService = CType(Me.GetService( _
GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
UIservice.ShowError(New Exception( _
"This is a message in a test exception, displayed by the IUIService", _
New ArgumentException("Test inner exception")))
End If
注釈
この方法を使用すると、メッセージ ボックスの表示を開発環境と適切に統合できます。