kCura.WinEDDS.StatusEventArgs
namespace kCura.WinEDDS
{
public class StatusEventArgs
{
public long CurrentRecordIndex { get; }
public long TotalRecords { get; }
public string Message { get; }
public EventType2 EventType { get; }
public bool CountsTowardsTotal { get; }
public object AdditionalInfo { get; }
public Statistics Statistics { get; }
public StatusEventArgs(EventType2 et, long recordNumber, long totalRecords, string message, bool countsTowardsTotal, object additionalInfo, Statistics statistics);
public StatusEventArgs(EventType2 et, long recordNumber, long totalRecords, string message, object additionalInfo, Statistics statistics);
}
}