Beispiel #1
0
 /// <summary>
 /// Raises the <see cref="EraseComplete"/> event.
 /// </summary>
 /// <param name="args">Status of the erase.</param>
 protected virtual void OnEraseComplete( CompletionStatusEventArgs args )
 {
     if ( EraseComplete != null )
     {
         EraseComplete( this, args );
     } // End if (EraseComplete != null)
 }
Beispiel #2
0
 /// <summary>
 /// Handles the EraseComplete event of the _discMaster control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="T:Imapi.Net.CompletionStatusEventArgs"/> instance containing the event data.</param>
 private void _discMaster_EraseComplete( object sender, CompletionStatusEventArgs e )
 {
     AppendLogText( "Method \"_discMaster_EraseComplete\" is not yet implemented" );
 }
Beispiel #3
0
 /// <summary>
 /// Raises the <see cref="BurnComplete"/> event.
 /// </summary>
 /// <param name="args">Status of the burn.</param>
 protected virtual void OnBurnComplete( CompletionStatusEventArgs args )
 {
     if ( BurnComplete != null )
     {
         BurnComplete( this, args );
     } // End if (BurnComplete != null)
 }