Provides data for Renci.SshNet.ConnectionInfo.AuthenticationBanner event.
Inheritance: AuthenticationEventArgs
コード例 #1
0
 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");
 }
コード例 #2
0
 private void ConnectionInfoAuthenticationBanner(object sender, AuthenticationBannerEventArgs e)
 {
     Log(e.Username);
     Log(e.Language);
     Log(e.BannerMessage);
 }
コード例 #3
0
 void ConnectionInfo_AuthenticationBanner(object sender, AuthenticationBannerEventArgs e)
 {
 }