namespace ElectronNET.API.Entities; /// /// 'OnDidFailLoad' event details. /// public class OnDidFailLoadInfo { /// /// The full list of error codes and their meaning is available here /// https://source.chromium.org/chromium/chromium/src/+/main:net/base/net_error_list.h /// public int ErrorCode { get; set; } /// /// Validated URL. /// public string ValidatedUrl { get; set; } }