Show / Hide Table of Contents

Class OptionNotFoundException

Represents an exception that is thrown when an option is not found in an FFmpeg operation.

Inheritance
object
Exception
FFmpegException
OptionNotFoundException
Implements
ISerializable
Inherited Members
FFmpegException.ThrowIfError(int)
FFmpegException.ErrorCode
Exception.GetBaseException()
Exception.ToString()
Exception.GetType()
Exception.TargetSite
Exception.Message
Exception.Data
Exception.InnerException
Exception.HelpLink
Exception.Source
Exception.HResult
Exception.StackTrace
Exception.SerializeObjectState
object.MemberwiseClone()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: FFmpeg.Exceptions
Assembly: FFmpeg.dll
Syntax
public class OptionNotFoundException : FFmpegException, ISerializable

Constructors

View Source

OptionNotFoundException()

Initializes a new instance of the OptionNotFoundException class with an empty option name.

Declaration
public OptionNotFoundException()
View Source

OptionNotFoundException(string)

Initializes a new instance of the OptionNotFoundException class with the specified option name.

Declaration
public OptionNotFoundException(string optionName)
Parameters
Type Name Description
string optionName

The name of the option that was not found.

View Source

OptionNotFoundException(string, string)

Initializes a new instance of the OptionNotFoundException class with the specified option name and error message.

Declaration
public OptionNotFoundException(string optionName, string message)
Parameters
Type Name Description
string optionName

The name of the option that was not found.

string message

The message that describes the error.

View Source

OptionNotFoundException(string, string, Exception)

Initializes a new instance of the OptionNotFoundException class with the specified option name, error message, and inner exception.

Declaration
public OptionNotFoundException(string optionName, string message, Exception innerException)
Parameters
Type Name Description
string optionName

The name of the option that was not found.

string message

The message that describes the error.

Exception innerException

The exception that is the cause of the current exception.

Properties

View Source

OptionName

Gets the name of the option that was not found.

Declaration
public string OptionName { get; }
Property Value
Type Description
string

Implements

ISerializable
  • View Source
In this article
Back to top Generated by DocFX