| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System.Collections.Generic;
- using Renci.SshNet.Messages.Authentication;
- namespace Renci.SshNet
- {
- /// <summary>
- /// Represents remote connection information.
- /// </summary>
- internal interface IConnectionInfoInternal : IConnectionInfo
- {
- /// <summary>
- /// Signals that an authentication banner message was received from the server.
- /// </summary>
- /// <param name="sender">The session in which the banner message was received.</param>
- /// <param name="e">The banner message.</param>
- void UserAuthenticationBannerReceived(object sender, MessageEventArgs<BannerMessage> e);
- /// <summary>
- /// Gets the supported authentication methods for this connection.
- /// </summary>
- /// <value>
- /// The supported authentication methods for this connection.
- /// </value>
- IList<IAuthenticationMethod> AuthenticationMethods { get; }
- /// <summary>
- /// Creates a <see cref="NoneAuthenticationMethod"/> for the credentials represented
- /// by the current <see cref="IConnectionInfo"/>.
- /// </summary>
- /// <returns>
- /// A <see cref="NoneAuthenticationMethod"/> for the credentials represented by the
- /// current <see cref="IConnectionInfo"/>.
- /// </returns>
- IAuthenticationMethod CreateNoneAuthenticationMethod();
- }
- }
|