Ejemplo n.º 1
0
 private void exporter_ExportStep(object sender, export.ExportStepEventArgs e)
 {
     if (_lastStep == e.Description)
     {
         return;
     }
     else
     {
         _lastStep = e.Description;
         _log.LogInformation($"  {e.Description}\n");
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Raises the <see cref="ExportStep" /> event.
 /// </summary>
 /// <param name="e">The <see cref="TheBoxSoftware.Documentation.Exporting.ExportStepEventArgs"/> instance containing the event data.</param>
 protected void OnExportStep(ExportStepEventArgs e)
 {
     _exportStep?.Invoke(this, e);
 }