Table of Contents

Struct ParseError

Namespace
Gst
Assembly
Gst-1.0.dll

Contains all error codes of the ParseError error-domain.

public readonly ref struct ParseError
Inherited Members

Constructors

ParseError(int)

Creates a new error in the ParseError domain with a given error code.

public ParseError(int errorCode)

Parameters

errorCode int

A specific error code of the domain

Properties

Any

Can be used to match a GException with any error code of the "ParseError" error-domain.

public static Quark Any { get; }

Property Value

Quark

CouldNotSetProperty

Can be used to match a GException with the "CouldNotSetProperty" code (4).

public static ParseError CouldNotSetProperty { get; }

Property Value

ParseError

Can be used to match a GException with the "DelayedLink" code (7).

public static ParseError DelayedLink { get; }

Property Value

ParseError

Empty

Can be used to match a GException with the "Empty" code (6).

public static ParseError Empty { get; }

Property Value

ParseError

EmptyBin

Can be used to match a GException with the "EmptyBin" code (5).

public static ParseError EmptyBin { get; }

Property Value

ParseError

Can be used to match a GException with the "Link" code (3).

public static ParseError Link { get; }

Property Value

ParseError

NoSuchElement

Can be used to match a GException with the "NoSuchElement" code (1).

public static ParseError NoSuchElement { get; }

Property Value

ParseError

NoSuchProperty

Can be used to match a GException with the "NoSuchProperty" code (2).

public static ParseError NoSuchProperty { get; }

Property Value

ParseError

Syntax

Can be used to match a GException with the "Syntax" code (0).

public static ParseError Syntax { get; }

Property Value

ParseError

Operators

implicit operator ErrorCode(ParseError)

Converts a ParseError into a ErrorCode which can be used to match a GException.

public static implicit operator ErrorCode(ParseError e)

Parameters

e ParseError

Returns

ErrorCode