CoreWebView2CrashReport Class

Definition

Provides crash signature data captured at the moment of process failure.

CrashReport is null when the failure did not produce a crash report (normal exit, external kill, launch failure, hang). Host apps should always check for null before accessing properties.

public class CoreWebView2CrashReport
type CoreWebView2CrashReport = class
Public Class CoreWebView2CrashReport
Inheritance
CoreWebView2CrashReport

Properties

Name Description
BucketId

Crash bucket identifier assigned by Microsoft's crash telemetry service. Returned as a 32-character hex string. Empty when no bucket was assigned: crash data was not uploaded to Microsoft's telemetry service (custom crash reporting enabled), or no response was received from the telemetry service (network throttled or unavailable).

CrashReportId

The unique identifier (UUID) for this crash report. Use this to locate the corresponding dump file in FailureReportFolderPath.

ExceptionCode

The Windows exception code for the failure, e.g. 0xC0000005 for STATUS_ACCESS_VIOLATION. 0 if not available.

FaultingModuleName

Basename of the module containing the faulting instruction, e.g. renderer.dll.

FaultingModuleVersion

Version of the faulting module, e.g. 128.0.2739.42.

FaultOffset

Relative virtual address (RVA) of the faulting instruction within FaultingModuleName. 0 if not available.

ReportTime

Time the crash report was recorded, as a Windows FILETIME value (100-nanosecond intervals since Jan 1 1601 UTC). 0 if unavailable.

Applies to