public SSHConnection(liblinux.UnixSystem remoteSystem) { if (remoteSystem == null) throw new ArgumentNullException(nameof(remoteSystem)); _remoteSystem = remoteSystem; }
internal void Clean() { if (_gdbserver != null) { _gdbserver.Stop(); _gdbserver = null; } if (_remoteSystem != null) { _remoteSystem.Dispose(); _remoteSystem = null; } }
public override void Close() { if (_gdbserver != null) { _gdbserver.Stop(); _gdbserver = null; } if (_remoteSystem != null) { _remoteSystem.Dispose(); _remoteSystem = null; } }
public Connection(liblinux.UnixSystem remoteSystem) { _remoteSystem = remoteSystem; }