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

ISupportCheckResult

public interface ISupportCheckResult
using System.Collections.Generic; namespace Relativity.Transfer { public interface ISupportCheckResult { bool IsSupported { get; set; } string ErrorMessage { get; } IReadOnlyList<string> LogFileLines { get; } IReadOnlyList<string> StandardError { get; } IReadOnlyList<string> StandardOutput { get; } } }