Renci.SshNet.ClientAuthentication.AuthenticationState.AuthenticationState C# (CSharp) Méthode

AuthenticationState() public méthode

public AuthenticationState ( IList supportedAuthenticationMethods ) : System
supportedAuthenticationMethods IList
Résultat System
            public AuthenticationState(IList<IAuthenticationMethod> supportedAuthenticationMethods)
            {
                _supportedAuthenticationMethods = supportedAuthenticationMethods;
                ExecutedAuthenticationMethods = new List<IAuthenticationMethod>();
                FailedAuthenticationMethods = new List<IAuthenticationMethod>();
            }
ClientAuthentication.AuthenticationState