Class ErrorReport
Wraps information about an crash in a serializer-friendly format.
public class ErrorReport
- Inheritance
-
objectErrorReport
- Extension Methods
Properties
Application
Information about the current application.
public AppInfo Application { get; set; }
Property Value
Comments
Comments about the crash entered by the user.
public string? Comments { get; set; }
Property Value
- string
Exception
Information about the exception that occurred.
public ExceptionInfo? Exception { get; set; }
Property Value
Log
The contents of the Log file.
public string? Log { get; set; }
Property Value
- string
OS
Information about the current operating system.
public OSInfo OS { get; set; }