IServiceProxyFactory
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);
}
}