Relativity.Transfer.RemotePathResolverBase
namespace Relativity.Transfer
{
public abstract class RemotePathResolverBase : IRemotePathResolver
{
protected ITransferLog transferLog;
protected static IFileSystemService FileSystemService { get; }
protected RemotePathResolverBase(ITransferLog transferLog);
public virtual string ResolvePath(string path);
protected abstract string OnResolvePath(string path);
}
}