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

ExportErrorEventArgs

public sealed class ExportErrorEventArgs : EventArgs
Represents export error event argument data. This class cannot be inherited.
using System; namespace Relativity.DataExchange.Process { public sealed class ExportErrorEventArgs : EventArgs { public string Path { get; } public ExportErrorEventArgs(string path) { Path = path; } } }