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

Relativity.Transfer.IInstanceSettingService

public interface IInstanceSettingService
namespace Relativity.Transfer { public interface IInstanceSettingService { RelativityConnectionInfo ConnectionInfo { get; } int MaxRetryAttempts { get; set; } double TimeoutSeconds { get; set; } Task<IEnumerable<InstanceSetting>> GetAllAsync(CancellationToken token); Task<bool> GetCloudInstanceAsync(CancellationToken token); Task<Guid?> GetInstanceIdAsync(CancellationToken token); Task<InstanceSetting> GetSingleAsync(string section, string name, CancellationToken token); } }