ErrorReportEventArgs
Represents the error report event argument data. This class cannot be inherited.
using System;
using System.Collections;
namespace Relativity.DataExchange.Process
{
[Serializable]
public sealed class ErrorReportEventArgs : EventArgs
{
public IDictionary Error { get; }
public ErrorReportEventArgs(IDictionary error)
{
Error = error;
}
}
}