IApplicationVersionService
Represents abstract object that retrieve Relativity and import/export WebAPI version information.
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Relativity.DataExchange
{
public interface IApplicationVersionService
{
Task<Version> GetRelativityVersionAsync(CancellationToken token);
Task<Version> GetImportExportWebApiVersionAsync(CancellationToken token);
}
}