NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IUIService.ShowError (Exception, String)

Displays the given Exception and it's info in a message box. This properly integrates the message box display with the development environment.

[Visual Basic]
Overloads Sub ShowError( _
   ByVal ex As Exception, _
   ByVal message As String _
)
[C#]
void ShowError(
   Exception ex,
   string message
);
[C++]
void ShowError(
   Exception* ex,
   String* message
) = 0;
[JScript]
function ShowError(
   ex : Exception,
   message : String
);

Parameters

ex
The Exception to display.
message
A message to display explaining the exception.

See Also

IUIService Interface | IUIService Members | System.WinForms.Design Namespace | IUIService.ShowError Overload List