mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-09 18:27:36 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
18
src/ElectronNET.API/API/Entities/OnDidFailLoadInfo.cs
Normal file
18
src/ElectronNET.API/API/Entities/OnDidFailLoadInfo.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user