コード例 #1
0
ファイル: DiscMaster.cs プロジェクト: Redth/ImapiNet
 /// <summary>
 /// Raises the <see cref="PreparingBurn"/> event.
 /// </summary>
 /// <param name="args">Details of the estimated time for the preparaion.</param>
 protected virtual void OnPreparingBurn( EstimatedTimeOperationEventArgs args )
 {
     if ( PreparingBurn != null )
     {
         PreparingBurn( this, args );
     } // End if (PreparingBurn != null)
 }
コード例 #2
0
ファイル: DiscMaster.cs プロジェクト: Redth/ImapiNet
 /// <summary>
 /// Raises the <see cref="ClosingDisc"/> event.
 /// </summary>
 /// <param name="args">Details of the estimated time to close the disc.</param>
 protected virtual void OnClosingDisc( EstimatedTimeOperationEventArgs args )
 {
     if ( ClosingDisc != null )
     {
         ClosingDisc( this, args );
     } // End if (ClosingDisc != null)
 }