<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

DataSourcePrepEventArgs

using System; namespace kCura.WinEDDS.Api { public class DataSourcePrepEventArgs { public enum EventType { Open, Close, ReadEvent } private EventType _type; private long _bytesRead; private long _totalBytes; private long _stepSize; private DateTime _startTime; private DateTime _endTime; public EventType Type => _type; public long BytesRead => _bytesRead; public long TotalBytes => _totalBytes; public long StepSize => _stepSize; public DateTime StartTime => _startTime; public DateTime EndTime => _endTime; public DataSourcePrepEventArgs(EventType eventType, long bytes, long total, long step, DateTime start, DateTime end) { _type = eventType; _bytesRead = bytes; _totalBytes = total; _stepSize = step; _startTime = start; _endTime = end; } } }