mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-09 18:27:36 +00:00
19 lines
485 B
C#
19 lines
485 B
C#
|
|
namespace ElectronNET.API.Entities;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 'OnDidFailLoad' event details.
|
|||
|
|
/// </summary>
|
|||
|
|
public class OnDidFailLoadInfo
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 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
|
|||
|
|
/// </summary>
|
|||
|
|
public int ErrorCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Validated URL.
|
|||
|
|
/// </summary>
|
|||
|
|
public string ValidatedUrl { get; set; }
|
|||
|
|
}
|