PoshSSH/PoshSSH/NewSSHSession.cs
using System.Management.Automation;
namespace SSH { /// <summary> /// /// </summary> [Cmdlet(VerbsCommon.New, "SSHSession", DefaultParameterSetName = "NoKey")] public class NewSshSession : NewSessionBase { internal override string Protocol { get { return "SSH"; } } } //end of the class for the New-SSHSession //################################################### } |