Relativity.DataExchange.Service.RelativityDistributed.FileDownloadResponse
class FileDownloadResponse
This type represents Relativity.Distributed response for the file download request.
namespace Relativity.DataExchange.Service.RelativityDistributed
{
internal class FileDownloadResponse
{
public bool IsSuccess { get; }
public RelativityDistributedErrorType ErrorType { get; }
public Exception Exception { get; }
public FileDownloadResponse();
public FileDownloadResponse(RelativityDistributedErrorType errorType);
public FileDownloadResponse(RelativityDistributedErrorType errorType, Exception exception);
}
}