Provides data for Renci.SshNet.ConnectionInfo.AuthenticationBanner event.
Inheritance: AuthenticationEventArgs
 public void AuthenticationBannerEventArgsConstructorTest()
 {
     string username = string.Empty; // TODO: Initialize to an appropriate value
     string message = string.Empty; // TODO: Initialize to an appropriate value
     string language = string.Empty; // TODO: Initialize to an appropriate value
     AuthenticationBannerEventArgs target = new AuthenticationBannerEventArgs(username, message, language);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 private void ConnectionInfoAuthenticationBanner(object sender, AuthenticationBannerEventArgs e)
 {
     Log(e.Username);
     Log(e.Language);
     Log(e.BannerMessage);
 }
 void ConnectionInfo_AuthenticationBanner(object sender, AuthenticationBannerEventArgs e)
 {
 }