namespace Renci.SshNet.Common { /// /// Provides data for event. /// public class AuthenticationPasswordChangeEventArgs : AuthenticationEventArgs { /// /// Initializes a new instance of the class. /// /// The username. public AuthenticationPasswordChangeEventArgs(string username) : base(username) { } /// /// Gets or sets the new password. /// /// /// The new password. /// public byte[] NewPassword { get; set; } } }