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

IProcessEventWriter

public interface IProcessEventWriter : IDisposable
Represents an abstract object that writes output events to a file.
using System; namespace Relativity.DataExchange.Process { public interface IProcessEventWriter : IDisposable { string File { get; } bool HasEvents { get; } void Close(); void Save(string targetFile); void Write(ProcessEventDto dto); } }