CoreWebView2ProcessFailedReason Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
type CoreWebView2ProcessFailedReason =
Public Enum CoreWebView2ProcessFailedReason
- Inheritance
-
CoreWebView2ProcessFailedReason
Fields
Name | Value | Description |
---|---|---|
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. |
Terminated | 2 | Indicates that the process was terminated. For example, from Task Manager. |
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 | Deprecated. This value is unused. |