Relativity.DataExchange.Process.NullProcessErrorWriter
Represents a null design pattern for occasions where a valid IProcessErrorWriter is referenced but whose functionality isn't actually used or required. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
public sealed class NullProcessErrorWriter : IProcessErrorWriter, IDisposable
{
public bool HasErrors { get; }
public ProcessErrorReport BuildErrorReport(CancellationToken token);
public void Close();
public void Dispose();
public void Write(string key, string description);
public NullProcessErrorWriter();
}
}