IProcessErrorWriter
Represents an abstract object that writes errors to a file.
using System;
using System.Threading;
namespace Relativity.DataExchange.Process
{
public interface IProcessErrorWriter : IDisposable
{
bool HasErrors { get; }
ProcessErrorReport BuildErrorReport(CancellationToken token);
void Close();
void Write(string key, string description);
}
}