Renci.SshNet.Common.AuthenticationBannerEventArgs.AuthenticationBannerEventArgs C# (CSharp) Method

AuthenticationBannerEventArgs() public method

Initializes a new instance of the AuthenticationBannerEventArgs class.
public AuthenticationBannerEventArgs ( string username, string message, string language )
username string The username.
message string Banner message.
language string Banner language.
        public AuthenticationBannerEventArgs(string username, string message, string language)
            : base(username)
        {
            BannerMessage = message;
            Language = language;
        }
    }
AuthenticationBannerEventArgs