Table of Contents

Struct URIError

Namespace
Gst
Assembly
Gst-1.0.dll

Contains all error codes of the URIError error-domain.

public readonly ref struct URIError
Inherited Members

Constructors

URIError(int)

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

public URIError(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 "URIError" error-domain.

public static Quark Any { get; }

Property Value

Quark

BadReference

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

public static URIError BadReference { get; }

Property Value

URIError

BadState

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

public static URIError BadState { get; }

Property Value

URIError

BadUri

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

public static URIError BadUri { get; }

Property Value

URIError

UnsupportedProtocol

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

public static URIError UnsupportedProtocol { get; }

Property Value

URIError

Operators

implicit operator ErrorCode(URIError)

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

public static implicit operator ErrorCode(URIError e)

Parameters

e URIError

Returns

ErrorCode