AuthenticationPasswordChangeEventArgs
Provides data for PasswordExpired event.
using System.Runtime.CompilerServices;
namespace Renci.SshNet.Common
{
public class AuthenticationPasswordChangeEventArgs : AuthenticationEventArgs
{
public byte[] NewPassword {
[CompilerGenerated]
get;
[CompilerGenerated]
set;
}
public AuthenticationPasswordChangeEventArgs(string username)
: base(username)
{
}
}
}