<PackageReference Include="SSH.NET" Version="2011.12.7" />
API Differences between 2011.12.7 and 2011.9.28
90 Additions
1 Removals
Renci.SshNet
-
public abstract class BaseClient : IDisposable
-
public class NetConfClient : BaseClient
- public bool AutomaticMessageIdHandling { get; set; }
- public XmlDocument ClientCapabilities { get; }
- public TimeSpan OperationTimeout { get; set; }
- public XmlDocument ServerCapabilities { get; }
- public NetConfClient(ConnectionInfo connectionInfo)
- public NetConfClient(string host, int port, string username, string password)
- public NetConfClient(string host, string username, string password)
- public NetConfClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public NetConfClient(string host, string username, PrivateKeyFile[] keyFiles)
- public XmlDocument SendCloseRpc()
- public XmlDocument SendReceiveRpc(XmlDocument rpc)
- public XmlDocument SendReceiveRpc(string xml)
-
public class ScpClient : BaseClient
- public uint BufferSize { get; set; }
- public TimeSpan OperationTimeout { get; set; }
- public event EventHandler<ScpDownloadEventArgs> Downloading
- public event EventHandler<ScpUploadEventArgs> Uploading
- public ScpClient(ConnectionInfo connectionInfo)
- public ScpClient(string host, int port, string username, string password)
- public ScpClient(string host, string username, string password)
- public ScpClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public ScpClient(string host, string username, PrivateKeyFile[] keyFiles)
- public void Download(string filename, FileInfo fileInfo)
- public void Download(string directoryName, DirectoryInfo directoryInfo)
- public void Download(string filename, Stream destination)
- public void Upload(FileInfo fileInfo, string filename)
- public void Upload(DirectoryInfo directoryInfo, string filename)
- public void Upload(Stream source, string filename)
-
public class Session : IDisposable
-
public class SshCommand : IDisposable
Renci.SshNet.Common
Renci.SshNet.Compression
Renci.SshNet.Security
Renci.SshNet.Sftp