Table of Contents

Class ErrorEventArgs

Namespace
VAST.Media
Assembly
VAST.Common.dll

Provides event arguments for error events.

public class ErrorEventArgs
Inheritance
ErrorEventArgs
Inherited Members

Constructors

ErrorEventArgs()

public ErrorEventArgs()

Properties

ErrorDescription

Gets or sets the human-readable description of the error.

public string ErrorDescription { get; set; }

Property Value

string

ExtraData

Gets or sets extra data that can help with further error processing in user code. In most cases this is null, but it can contain useful data such as details for a failed RTMP session.

public string ExtraData { get; set; }

Property Value

string

IsCritical

Gets or sets a value indicating whether the error is critical. A critical error means that the caller cannot recover from it automatically.

public bool IsCritical { get; set; }

Property Value

bool