Exemplo n.º 1
0
 /// <summary>
 ///		Lanza el evento de lectura de un bloque
 /// </summary>
 private void RaiseEventReadBlock(long row)
 {
     if (NotifyAfter > 0 && row % NotifyAfter == 0)
     {
         ReadBlock?.Invoke(this, new EventArguments.AffectedEvntArgs(row));
     }
 }