Renci.SshNet.Common.AuthenticationPrompt.AuthenticationPrompt C# (CSharp) Method

AuthenticationPrompt() public method

Initializes a new instance of the AuthenticationPrompt class.
public AuthenticationPrompt ( int id, bool isEchoed, string request )
id int The sequence id.
isEchoed bool if set to true the user input should be echoed.
request string The request.
        public AuthenticationPrompt(int id, bool isEchoed, string request)
        {
            Id = id;
            IsEchoed = isEchoed;
            Request = request;
        }
    }
AuthenticationPrompt