| 12345678910111213141516171819202122232425 | namespace Renci.SshNet.Common{    /// <summary>    /// Provides data for <see cref="Renci.SshNet.PasswordConnectionInfo.PasswordExpired"/> event.    /// </summary>    public class AuthenticationPasswordChangeEventArgs : AuthenticationEventArgs    {        /// <summary>        /// Gets or sets the new password.        /// </summary>        /// <value>        /// The new password.        /// </value>        public byte[] NewPassword { get; set; }        /// <summary>        /// Initializes a new instance of the <see cref="AuthenticationPasswordChangeEventArgs"/> class.        /// </summary>        /// <param name="username">The username.</param>        public AuthenticationPasswordChangeEventArgs(string username)            : base(username)        {        }    }}
 |