次の方法で共有


IUIService.ShowError メソッド

定義

指定したエラー メッセージをメッセージ ボックスに表示します。

オーバーロード

ShowError(Exception)

指定した例外および例外に関する情報をメッセージ ボックスに表示します。

ShowError(String)

指定したエラー メッセージをメッセージ ボックスに表示します。

ShowError(Exception, String)

指定した例外および例外に関する情報をメッセージ ボックスに表示します。

ShowError(Exception)

指定した例外および例外に関する情報をメッセージ ボックスに表示します。

public:
 void ShowError(Exception ^ ex);
public void ShowError (Exception ex);
abstract member ShowError : Exception -> unit
Public Sub ShowError (ex As Exception)

パラメーター

ex
Exception

表示する 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)

パラメーター

ex
Exception

表示する Exception

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

注釈

この方法を使用すると、メッセージ ボックスの表示を開発環境と適切に統合できます。

適用対象