Renci.SshNet.ClientAuthentication.AuthenticationState.AuthenticationState C# (CSharp) Method

AuthenticationState() public method

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