ProcessCompleteEventArgs
Represents the process complete event argument data. This class cannot be inherited.
using System;
namespace Relativity.DataExchange.Process
{
[Serializable]
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)
{
CloseForm = closeForm;
ExportFilePath = exportFilePath;
ExportLog = exportLog;
}
}
}