<PackageReference Include="Relativity.Transfer.Client" Version="7.2.7" />

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); } } }