<PackageReference Include="SSH.NET" Version="2016.1.0-beta3" />

AuthenticationEventArgs

public abstract class AuthenticationEventArgs : EventArgs
Base class for authentication events.
using System; namespace Renci.SshNet.Common { public abstract class AuthenticationEventArgs : EventArgs { public string Username { get; set; } protected AuthenticationEventArgs(string username) { Username = username; } } }