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

IErrorFileWriter

public interface IErrorFileWriter : IDisposable
using kCura.WinEDDS.Exporters; using System; using System.Threading.Tasks; namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Writers { public interface IErrorFileWriter : IDisposable { void Write(ErrorFileWriter.ExportFileType type, ObjectExportInfo documentInfo, string fileLocation, string errorText); Task WriteAsync(ErrorFileWriter.ExportFileType type, ObjectExportInfo documentInfo, string fileLocation, string errorText); } }