示例#1
0
 public void OnRecordSkipped(YariImporterEventArgs e)
 {
     if (RecordSkipped != null)
     {
         RecordSkipped(this, e);
     }
 }
示例#2
0
 private void OnFinish(YariImporterEventArgs e)
 {
     if (Finish != null)
     {
         Finish(this, e);
     }
 }
示例#3
0
 private void OnStart(YariImporterEventArgs e)
 {
     if (Start != null)
     {
         Start(this, e);
     }
 }