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

TapiMultiClientEventArgs

public sealed class TapiMultiClientEventArgs : EventArgs
Represents the the Transfer API multiple transfer client event arguments data. This class cannot be inherited.
using System; using System.Collections.Generic; namespace Relativity.DataExchange.Transfer { public sealed class TapiMultiClientEventArgs : EventArgs { public IList<TapiClient> TransferClients { get; } public TapiMultiClientEventArgs(TapiClient client) : this(new TapiClient[1] { client }) { } public TapiMultiClientEventArgs(IEnumerable<TapiClient> clients) { clients.ThrowIfNull("clients"); TransferClients = new List<TapiClient>(clients); } } }