.NET API 1,171,968 bytes
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
}
}