Renci.SshNet.ClientAuthentication.AuthenticationState.AuthenticationState C# (CSharp) 메소드

AuthenticationState() 공개 메소드

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