AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.17.0-alpha-170" />

 ErrorEvent

public class ErrorEvent : Event
Represents the error event arguments.
public int Column { get; }

Gets the column number of the error.

public Exception Error { get; }

Gets the exception describing the error.

public string FileName { get; }

Gets the filename where the error occurred.

public int Line { get; }

Gets the line number of the error.

public string Message { get; }

Gets the message describing the error.

public ErrorEvent()

public void Init(string filename, int line, int column, Exception error)

Initializes the error event.