RemotePathNoneTransformation
Performs no transformation.
using Renci.SshNet.Common;
namespace Renci.SshNet
{
internal sealed class RemotePathNoneTransformation : IRemotePathTransformation
{
public string Transform(string path)
{
ThrowHelper.ThrowIfNull(path, "path");
return path;
}
}
}