[This is preliminary documentation and is subject to change.]
Displays modal message box with information about Exception
Namespace: Tools.WindowsT.IndependentTAssembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public static DialogResult Error_X( Exception ex ) |
| Visual Basic |
|---|
Public Shared Function Error_X ( _ ex As Exception _ ) As DialogResult |
| Visual C++ |
|---|
public: static DialogResult Error_X( Exception^ ex ) |
| F# |
|---|
static member Error_X : ex:Exception -> DialogResult |
| JScript |
|---|
public static function Error_X( ex : Exception ) : DialogResult |
Parameters
- ex
- Type: System..::..Exception
Exception to show Message of
Return Value
Indicates button clicked by user
Remarks
Title will contain Name of exception
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | ex is null |
See Also
Version History
1.5.3
- Message from inner exceptions is shown as well
- ArgumentNullException is thrown when ex is null (instead of NullReferenceException)