<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

IServiceConnectionInfo

public interface IServiceConnectionInfo
Represents an abstract object that contains service connection information.
using Relativity.Services.ServiceProxy; using System; using System.Net; namespace Relativity.DataExchange.Service { public interface IServiceConnectionInfo { Credentials Credentials { get; } Uri WebServiceBaseUrl { get; } NetworkCredential NetworkCredential { get; } void UpdateCredentials(NetworkCredential credential); bool RefreshCredentials(); } }