Relativity.DataExchange.Process.ProcessCompleteEventArgs
Represents the process complete event argument data. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
public sealed class ProcessCompleteEventArgs : EventArgs
{
public bool CloseForm { get; }
public string ExportFilePath { get; }
public bool ExportLog { get; }
public ProcessCompleteEventArgs(bool closeForm, string exportFilePath, bool exportLog);
}
}