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

Assertions

static class Assertions
using System; namespace Relativity.Transfer { internal static class Assertions { internal static void RequireNonNull<TValue>(TValue value, string argumentName) where TValue : class { if (value == null) throw new ArgumentNullException(argumentName); } } }