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

IServiceProxyFactory

public interface IServiceProxyFactory : IDisposable
Represents an abstract class object to create web service proxy instances.
using System; using System.Net; using System.Threading.Tasks; namespace Relativity.DataExchange.Service { public interface IServiceProxyFactory : IDisposable { TProxy CreateProxyInstance<TProxy>() where TProxy : class, IDisposable; void UpdateCredentials(NetworkCredential credential); Task<string> ExecutePostAsync(string endpointAddress, string body); } }