MediaWriterException Class

Summary
The exception that is thrown when a MediaWriter error occurs.
Syntax
C#
C++/CLI
public class MediaWriterException : Exception, IDisposable 
public ref class MediaWriterException : public System.Exception, System.IDisposable, System.Runtime.InteropServices._Exception, System.Runtime.Serialization.ISerializable   
Remarks

The MediaWriterException class defines a Code property that you can examine to determine what caused the error.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MediaWriter; 
 
 
public void NoDiscErrorExample() 
{ 
   try 
   { 
      MediaWriter writer = new MediaWriter(); 
      List<MediaWriterDrive> drives = writer.Drives; 
      MediaWriterDrive drive = drives[1]; 
      MediaWriterDisc disc = drive.CreateDisc(); 
 
      disc.VolumeName = "TEST DISC"; 
      disc.SourcePathName = Path.Combine(LEAD_VARS.ImagesDir, "InputFiles"); 
 
      drive.EjectDisc(); 
      System.Threading.Thread.Sleep(5000); // wait for 5 seconds 
      // Make sure there is no disc in the drive 
      drive.LoadDisc(); 
      drive.BurnDisc(disc); 
 
      // wait loop for demonstration purposes 
      while (drive.State != MediaWriterState.StateIdle) 
      { 
         System.Windows.Forms.Application.DoEvents(); 
         System.Threading.Thread.Sleep(100); 
      } 
   } 
   catch (MediaWriterException ex) 
   { 
      if (MediaWriterExceptionCode.NoDisc == ex.Code) 
         MessageBox.Show("No disc in drive!"); 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaWriter Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.