IUserManagerService
using System;
namespace Relativity.Transfer
{
public interface IUserManagerService : IDisposable
{
RelativityConnectionInfo ConnectionInfo { get; }
string DistributedToken { get; }
int MaxRetryAttempts { get; set; }
double TimeoutSeconds { get; set; }
void Login();
}
}