<PackageReference Include="Relativity.Server.Transfer.SDK" Version="7.7.0" />

NodeContext

public sealed class NodeContext : NodeContextBase
using System; namespace Relativity.DataTransfer.Nodes { public sealed class NodeContext : NodeContextBase { public NodeContext(string fileshareName, int artifactId, string filesharePath) : base(fileshareName, artifactId, filesharePath) { if (string.IsNullOrWhiteSpace(fileshareName)) throw new ArgumentException("fileshareName"); if (string.IsNullOrWhiteSpace(filesharePath)) throw new ArgumentException("filesharePath"); } } }