IInstanceSettingService
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
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);
}
}