Table of Contents

Class PlayerError

Namespace
OpenQA.Selenium.DevTools.V147.Media
Assembly
Selenium.WebDriver.dll

Corresponds to kMediaError

public sealed class PlayerError
Inheritance
PlayerError
Inherited Members

Properties

Cause

Errors potentially have a root cause error, ie, a DecoderError might be caused by an WindowsError

[JsonPropertyName("cause")]
public PlayerError[] Cause { get; set; }

Property Value

PlayerError[]

Code

Code is the numeric enum entry for a specific set of error codes, such as PipelineStatusCodes in media/base/pipeline_status.h

[JsonPropertyName("code")]
public long Code { get; set; }

Property Value

long

Data

Extra data attached to an error, such as an HRESULT, Video Codec, etc.

[JsonPropertyName("data")]
public object Data { get; set; }

Property Value

object

ErrorType

errorType

[JsonPropertyName("errorType")]
public string ErrorType { get; set; }

Property Value

string

Stack

A trace of where this error was caused / where it passed through.

[JsonPropertyName("stack")]
public PlayerErrorSourceLocation[] Stack { get; set; }

Property Value

PlayerErrorSourceLocation[]