AuthenticationEventArgs
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;
}
}
}