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 the
ICoreWebView2ProcessFailedEventArgs
interface. 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 | An unexpected process failure occurred. |
Unresponsive | 1 | The process became unresponsive. This only applies to the main frame's render process. |
Terminated | 2 | The process was terminated. For example, from Task Manager. |
Crashed | 3 | The process crashed. Most crashes will generate dumps in the location
indicated by |
LaunchFailed | 4 | The process failed to launch. |
OutOfMemory | 5 | The process terminated due to running out of memory. |
ProfileDeleted | 6 | Deprecated. This value is unused. |