using System; namespace Renci.SshNet.Common { /// /// Base class for authentication events. /// public abstract class AuthenticationEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// /// The username. protected AuthenticationEventArgs(string username) { Username = username; } /// /// Gets the username. /// public string Username { get; } } }