Пример #1
0
 public ErrorReportSettings(
     ErrorDumpType dumpType               = ErrorDumpType.MiniDump,
     ErrorReportType reportType           = ErrorReportType.Noncritical,
     string component                     = null,
     string eventName                     = null,
     ReadOnlyCollection <ErrorFile> files = null)
 {
     this.DumpType   = dumpType;
     this.ReportType = reportType;
     this.Component  = component;
     this.EventName  = eventName;
     this.Files      = files;
 }
Пример #2
0
 public ErrorReportSettings(
 ErrorDumpType dumpType = ErrorDumpType.MiniDump,
 ErrorReportType reportType = ErrorReportType.Noncritical,
 string component = null,
 string eventName = null,
 ReadOnlyCollection<ErrorFile> files = null)
 {
     this.DumpType = dumpType;
     this.ReportType = reportType;
     this.Component = component;
     this.EventName = eventName;
     this.Files = files;
 }