Relativity.DataExchange.Io.IoWarningEventArgs
Class for IO warning event arguments. This class cannot be inherited.
namespace Relativity.DataExchange.Io
{
public sealed class IoWarningEventArgs : EventArgs
{
public long CurrentLineNumber { get; }
public Exception Exception { get; }
public string Message { get; }
public int WaitTime { get; }
public IoWarningType WarningType { get; }
public IoWarningEventArgs(string message, long lineNumber);
public IoWarningEventArgs(int waitTime, Exception exception, long lineNumber);
}
}