Beispiel #1
0
 /// <summary>
 /// Signals that a sector has been read and invokes any registered event handles for the SectorRead event.
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnSectorRead(SectorReadEventArgs e)
 {
     if (SectorRead != null)
     {
         SectorRead(this, e);
     }
 }
 /// <summary>
 /// Signals that a sector has been read and invokes any registered event handles for the SectorRead event.
 /// </summary>
 /// <param name="e"></param>
 private void OnSectorRead(SectorReadEventArgs e)
 {
     if (SectorRead != null)
     {
         SectorRead(this, e);
     }
 }