AngleSharp by AngleSharp

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

 MediaErrorCode

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