<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

Relativity.DataExchange.Process.NullProcessEventWriter

Represents a null design pattern for occasions where a valid IProcessEventWriter is referenced but whose functionality isn't actually used or required. This class cannot be inherited.
namespace Relativity.DataExchange.Process { public sealed class NullProcessEventWriter : IProcessEventWriter, IDisposable { public string File { get; } public bool HasEvents { get; } public NullProcessEventWriter(); public void Close(); public void Dispose(); public void Save(string targetFile); public void Write(ProcessEventDto dto); } }