Relativity.DataExchange.Transfer.LongTextStreamResult
class LongTextStreamResult
Represents a class object with long text stream result details.
namespace Relativity.DataExchange.Transfer
{
internal class LongTextStreamResult
{
public TimeSpan Duration { get; }
public string File { get; }
public string FileName { get; }
public Exception Issue { get; }
public long Length { get; }
public LongTextStreamRequest Request { get; }
public int RetryCount { get; }
public bool Successful { get; }
public static LongTextStreamResult CreateNonFatalIssueResult(LongTextStreamRequest request, int retryCount, Exception issue);
public static LongTextStreamResult CreateSuccessfulResult(LongTextStreamRequest request, string file, long length, int retryCount, TimeSpan duration);
}
}