C#
VB
C++
The exception that is thrown when a MediaWriter error occurs.
public class MediaWriterException : IDisposable, Exception Public Class MediaWriterExceptionInherits System.ExceptionImplements System.IDisposable, System.Runtime.InteropServices._Exception, System.Runtime.Serialization.ISerializable
public ref class MediaWriterException : public System.Exception, System.IDisposable, System.Runtime.InteropServices._Exception, System.Runtime.Serialization.ISerializable The MediaWriterException class defines a Code property that you can examine to determine what caused the error.
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 drivedrive.LoadDisc();drive.BurnDisc(disc);// wait loop for demonstration purposeswhile (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";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.MediaWriter<Test>Public Sub NoDiscErrorExample()TryDim writer As MediaWriter = New MediaWriter()Dim drives As List(Of MediaWriterDrive) = writer.DrivesDim 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 drivedrive.LoadDisc()drive.BurnDisc(disc)' wait loop for demonstration purposesDo While drive.State <> MediaWriterState.StateIdleSystem.Windows.Forms.Application.DoEvents()System.Threading.Thread.Sleep(100)LoopCatch ex As MediaWriterExceptionIf MediaWriterExceptionCode.NoDisc = ex.Code ThenMessageBox.Show("No disc in drive!")End IfEnd TryEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
