Show / Hide Table of Contents

Class BufferTooSmallException

Represents an exception that is thrown when an FFmpeg operation fails because the provided buffer is too small.

Inheritance
object
Exception
FFmpegException
BufferTooSmallException
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 BufferTooSmallException : FFmpegException, ISerializable
Remarks

This exception corresponds to the BufferTooSmall FFmpeg error code. It is typically thrown when a destination buffer does not have sufficient capacity to hold the requested data.

Constructors

View Source

BufferTooSmallException()

Initializes a new instance of the BufferTooSmallException class.

Declaration
public BufferTooSmallException()
View Source

BufferTooSmallException(string)

Initializes a new instance of the BufferTooSmallException class with a specified error message.

Declaration
public BufferTooSmallException(string message)
Parameters
Type Name Description
string message

The message that describes the error.

View Source

BufferTooSmallException(string, Exception)

Initializes a new instance of the BufferTooSmallException class with a specified error message and inner exception.

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

The message that describes the error.

Exception innerException

The exception that caused this exception.

Implements

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