Beispiel #1
0
 public PageAlert(string title, string body, Exception exception, PageAlertDisplayMode method, PageAlertSeverity mode)
 {
     _title  = title;
     _method = method;
     _mode   = mode;
     _body   = GetMessage(body, exception);
 }
Beispiel #2
0
 public PageAlert(string title, Exception exception, PageAlertDisplayMode method, PageAlertSeverity mode)
     : this(title, null, exception, method, mode)
 {
 }
Beispiel #3
0
 public PageAlert(string title, string body, PageAlertDisplayMode method, PageAlertSeverity mode)
     : this(title, body, null, method, mode)
 {
 }