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
}
}