LEADTOOLS Multimedia (Leadtools.MediaWriter assembly) Send comments on this topic. | Main Raster Introduction | Multimedia Introduction | Help Version 17.0.3.24
Code Property
See Also 
Leadtools.MediaWriter Namespace > MediaWriterException Class : Code Property



The Code Property is available in LEADTOOLS LEADTOOLS Document and Medical Imaging and in LEADTOOLS DVD Module toolkits.

Gets or sets the code that caused the exception.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Code As MediaWriterExceptionCode
Visual Basic (Usage)Copy Code
Dim instance As MediaWriterException
Dim value As MediaWriterExceptionCode
 
value = instance.Code
C# 
public MediaWriterExceptionCode Code {get;}
C++/CLI 
public:
property MediaWriterExceptionCode Code {
   MediaWriterExceptionCode get();
}

Property Value

The exception code.

Example

Visual BasicCopy Code
<Test> _
  Public Sub NoDiscErrorExample()
      Try
         Dim writer As MediaWriter = New MediaWriter()
         Dim drives As List(Of MediaWriterDrive) = writer.Drives
         Dim drive As MediaWriterDrive = drives(1)
         Dim disc As MediaWriterDisc = 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
         Do While drive.State <> MediaWriterState.StateIdle
            System.Windows.Forms.Application.DoEvents()
            System.Threading.Thread.Sleep(100)
         Loop
      Catch ex As MediaWriterException
         If MediaWriterExceptionCode.NoDisc = ex.Code Then
            MessageBox.Show("No disc in drive!")
         End If
      End Try
  End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
C#Copy Code
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:\Users\Public\Documents\LEADTOOLS Images";
}

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also

Leadtools.MediaWriter requires a Document or Medical or Multimedia toolkit license and unlock key. For more information, refer to: Imaging Pro/Document/Medical/Multimedia features