IUIService.ShowError Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Wyświetla określony komunikat o błędzie w polu komunikatu.
Przeciążenia
ShowError(Exception) |
Wyświetla określony wyjątek i informacje o wyjątku w polu komunikatu. |
ShowError(String) |
Wyświetla określony komunikat o błędzie w polu komunikatu. |
ShowError(Exception, String) |
Wyświetla określony wyjątek i informacje o wyjątku w polu komunikatu. |
ShowError(Exception)
Wyświetla określony wyjątek i informacje o wyjątku w polu komunikatu.
public:
void ShowError(Exception ^ ex);
public void ShowError (Exception ex);
abstract member ShowError : Exception -> unit
Public Sub ShowError (ex As Exception)
Parametry
Uwagi
Użycie tej metody umożliwia poprawne zintegrowanie okna komunikatów ze środowiskiem deweloperskim.
Dotyczy
ShowError(String)
Wyświetla określony komunikat o błędzie w polu komunikatu.
public:
void ShowError(System::String ^ message);
public void ShowError (string message);
abstract member ShowError : string -> unit
Public Sub ShowError (message As String)
Parametry
- message
- String
Komunikat o błędzie do wyświetlenia.
Uwagi
Użycie tej metody umożliwia poprawne zintegrowanie okna komunikatów ze środowiskiem deweloperskim.
Dotyczy
ShowError(Exception, String)
Wyświetla określony wyjątek i informacje o wyjątku w polu komunikatu.
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)
Parametry
- message
- String
Komunikat umożliwiający wyświetlenie informacji o wyjątku.
Przykłady
Poniższy przykład kodu próbuje uzyskać wystąpienie IUIService metody i wywołać metodę usługi ShowError .
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
Uwagi
Użycie tej metody umożliwia poprawne zintegrowanie okna komunikatów ze środowiskiem deweloperskim.