コード例 #1
0
 public FFMpegException(FFMpegExceptionType type, string?message = null, Exception?innerException = null, string ffmpegErrorOutput = "", string ffmpegOutput = "")
     : base(message, innerException)
 {
     FfmpegOutput      = ffmpegOutput;
     FfmpegErrorOutput = ffmpegErrorOutput;
     Type = type;
 }
コード例 #2
0
 public FFMpegException(FFMpegExceptionType type, string message, FFMpegException innerException)
     : base(message, innerException)
 {
     Type = type;
 }
コード例 #3
0
 public FFMpegException(FFMpegExceptionType type, string message) : this(type, message, null)
 {
 }
コード例 #4
0
 public FFMpegException(FFMpegExceptionType type, StringBuilder sb) : this(type, sb.ToString(), null)
 {
 }
コード例 #5
0
 public FFMpegException(FFMpegExceptionType type) : this(type, null, null)
 {
 }
コード例 #6
0
 public FFMpegStreamFormatException(FFMpegExceptionType type, string message, Exception?innerException = null)
     : base(type, message, innerException)
 {
 }
コード例 #7
0
 public FFMpegException(FFMpegExceptionType type, string message)
     : base(message)
 {
     FFMpegErrorOutput = string.Empty;
     Type = type;
 }
コード例 #8
0
 public FFMpegException(FFMpegExceptionType type, string message, string ffMpegErrorOutput = "")
     : base(message)
 {
     FFMpegErrorOutput = ffMpegErrorOutput;
     Type = type;
 }
コード例 #9
0
 public FFMpegException(FFMpegExceptionType type, string message) : base(message)
 {
     Type = type;
 }
コード例 #10
0
 public FFMpegException(FFMpegExceptionType type)
 {
     Type = type;
 }