AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.3" />

 MediaErrorCode

public enum MediaErrorCode
Enumeration with the various media error codes.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Media { public enum MediaErrorCode : ushort { [DomName("MEDIA_ERR_ABORTED")] Aborted = 1, [DomName("MEDIA_ERR_NETWORK")] Network, [DomName("MEDIA_ERR_DECODE")] Decode, [DomName("MEDIA_ERR_SRC_NOT_SUPPORTED")] SourceNotSupported } }