Enum CoreWebView2ProcessFailedReason
Specifies the process failure reason used in CoreWebView2ProcessFailedEventArgs. For process failures where a process has exited, it indicates the type of issue that produced the process exit.
public enum CoreWebView2ProcessFailedReason
Fields
Crashed = 3
Indicates that the process crashed. Most crashes will generate dumps in the location indicated by FailureReportFolderPath.
LaunchFailed = 4
Indicates that the process failed to launch.
OutOfMemory = 5
Indicates that the process died due to running out of memory.
ProfileDeleted = 6
Indicates the webview2's profile has been deleted.
Terminated = 2
Indicates that the process was terminated. For example, from Task Manager.
Unexpected = 0
Indicates that an unexpected process failure occurred.
Unresponsive = 1
Indicates that the process became unresponsive. This only applies to the main frame's render process.