Exemplo n.º 1
0
 /// <summary>
 /// Shows the exception dialog box with provided exception.
 /// </summary>
 /// <remarks>
 /// The dialog box is centered within the owner's bounds.
 /// </remarks>
 /// <param name="owner">
 /// The owner window of this dialog box.
 /// </param>
 /// <param name="exception">
 /// An exception instance to be assigned.
 /// </param>
 /// <param name="message">
 /// An additional message to be displayed.
 /// </param>
 public static void Show(Window owner, Exception exception, String message)
 {
     ExceptionBox.Show(owner, exception, message, null);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Shows the exception dialog box with provided exception.
 /// </summary>
 /// <remarks>
 /// The dialog box is centered within the owner's bounds.
 /// </remarks>
 /// <param name="owner">
 /// The owner window of this dialog box.
 /// </param>
 /// <param name="exception">
 /// An exception instance to be assigned.
 /// </param>
 public static void Show(Window owner, Exception exception)
 {
     ExceptionBox.Show(owner, exception, null, null);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Shows the exception dialog box with provided exception.
 /// </summary>
 /// <remarks>
 /// The dialog box is centered on screen.
 /// </remarks>
 /// <param name="exception">
 /// An exception instance to be assigned.
 /// </param>
 /// <param name="message">
 /// An additional message to be displayed.
 /// </param>
 public static void Show(Exception exception, String message)
 {
     ExceptionBox.Show(null, exception, message, null);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Shows the exception dialog box with provided exception.
 /// </summary>
 /// <remarks>
 /// The dialog box is centered on screen.
 /// </remarks>
 /// <param name="exception">
 /// An exception instance to be assigned.
 /// </param>
 public static void Show(Exception exception)
 {
     ExceptionBox.Show(null, exception, null, null);
 }